Choose one skill needed to become Computer Network Administrator?
The ability to Drive.
The ability to Plan.
The ability to Code Software.

Answers

Answer 1

Answer:

I think 1 is ans of this question

Answer 2
I think the answer is the ability to plan.

Related Questions

To change the backround color of a page, which tab would you use?

A. Design
B. References
C. Home
D. Insert​

Answers

i have concluded the answer is a

Answer:

I'm not 100% sure but this is my best estimate. Insert aka D because you add in a background.

Explanation:

I apologize if I am wrong!

Which operating system function has a steeper learning curve and can potentially break the system without careful use of its operations?

1. Graphical user interface (GUI)
2. Service management
3. Application management
4. Command line interface (CLI)

Answers

Answer:

4. Command line interface (CLI)

Explanation:

An operating system is a system software pre-installed on a computing device to manage or control software application, computer hardware and user processes.

This ultimately implies that, an operating system acts as an interface or intermediary between the computer end user and the hardware portion of the computer system (computer hardware) in the processing and execution of instructions.

Some examples of an operating system on computers are QNX, Linux, OpenVMS, MacOS, Microsoft windows, IBM, Solaris, VM etc.

A Command line interface (CLI) refers to a text-based user interface that allow users to operate a software application or program, as well as manage and execute operating system functions by typing standard line of commands into the text-based user interface with a real-time response.

Basically, the CLI is solely text-based and as such requires a thorough knowledge and understanding of global commands, as well as administrative privileges in some cases.

Hence, the operating system function which has a steeper learning curve (more difficult to learn) and can potentially break the system without careful use of its operations is the Command line interface (CLI).

What is the primary function of NCEES? A. administering engineering examinations B. creating and amending ethical standards for engineers C. accrediting educational programs in the United States D. certifying engineering technologists and engineering technicians
RIGHT ANSWER ONLY

Answers

Answer:

NCEES is a national nonprofit organization dedicated to advancing professional licensure for engineers and surveyors. Learn more.

Explanation:

Answer:

A.  

administering engineering examinations

Explanation:

When you are done reviewing in Print Preview, you have the option to save your document as a new file type. Which file type can be created using Print?

.edu
.exe
.pdf
.ppt

Answers

i believe the answer is .pdf

Answer:

the answer is pdf

Explanation:

It is because the reweing of the print

Edward is a composer and needs to listen to the most accurate music files to create his compositions. What audio file type should he use to record his music?

Answers

Answer:

MP3

Explanation:

From the question we are informed about Edward who is a composer and needs to listen to the most accurate music files to create his compositions. In this case, the audio file type he should use to record his music is MP3 format. MP3 format Is an audio format which is a coding use in digital audio with high quality that can be used to store songs on the computer without taking much space, but with good quality. MP3 offer to listen to his/her music clearly.

Will mark brain list
Question #2
Multiple Choice
Use the factorial operation to evaluate 4!.
0 4
0 24
0 1
0 10

Answers

Answer:

the answer to this question is twenty four

Answer:

4! = 24

In other words, 4 factorial is 24.

Because there are 24 ways to arrange 4 objects.

Explanation:

A factorial of a positive integer can be given by

n! = n × (n-1)! = n × (n-1) × (n-2) × ... × 1.

Which is the product of all positive integers less than or equal to n.

Or for any integer, the consecutive product of integers approaching 1.

4! = 4 × (4-1) × (4-2) × (4-3) = 4 × 3 × 2 × 1 = 12 × 2 × 1 = 24 × 1 = 24

How do you skip the drawing steps in turtle graphics and just get the result? Thank you.

Answers

Answer:

Turtle graphics is a popular way for introducing programming to kids. It was part of the original Logo programming language developed by Wally Feurzig and Seymour Papert in 1966.

Imagine a robotic turtle starting at (0, 0) in the x-y plane. Give it the command turtle.forward(15), and it moves (on-screen!) 15 pixels in the direction it is facing, drawing a line as it moves. Give it the command turtle.left(25), and it rotates in-place 25 degrees clockwise.

By combining together these and similar commands, intricate shapes and pictures can easily be drawn.

The turtle module is an extended reimplementation of the same-named module from the Python standard distribution up to version Python 2.5.

It tries to keep the merits of the old turtle module and to be (nearly) 100% compatible with it. This means in the first place to enable the learning programmer to use all the commands, classes and methods interactively when using the module from within IDLE run with the -n switch.

The turtle module provides turtle graphics primitives, in both object-oriented and procedure-oriented ways. Because it uses tkinter for the underlying graphics, it needs a version of Python installed with Tk support.

The object-oriented interface uses essentially two+two classes:

The TurtleScreen class defines graphics windows as a playground for the drawing turtles. Its constructor needs a tkinter.Canvas or a ScrolledCanvas as argument. It should be used when turtle is used as part of some application.

The function Screen() returns a singleton object of a TurtleScreen subclass. This function should be used when turtle is used as a standalone tool for doing graphics. As a singleton object, inheriting from its class is not possible.

All methods of TurtleScreen/Screen also exist as functions, i.e. as part of the procedure-oriented interface.

RawTurtle (alias: RawPen) defines Turtle objects which draw on a TurtleScreen. Its constructor needs a Canvas, ScrolledCanvas or TurtleScreen as argument, so the RawTurtle objects know where to draw.

Derived from RawTurtle is the subclass Turtle (alias: Pen), which draws on “the” Screen instance which is automatically created, if not already present.

All methods of RawTurtle/Turtle also exist as functions, i.e. part of the procedure-oriented interface.

The procedural interface provides functions which are derived from the methods of the classes Screen and Turtle. They have the same names as the corresponding methods. A screen object is automatically created whenever a function derived from a Screen method is called. An (unnamed) turtle object is automatically created whenever any of the functions derived from a Turtle method is called.

To use multiple turtles on a screen one has to use the object-oriented interface.

Note In the following documentation the argument list for functions is given. Methods, of course, have the additional first argument self which is omitted here.

Explanation:

can i have brainliest

What tools you would recommend for monitoring ports and network traffic, according to your own research. You must go beyond simply listing tools and defend your choices.

Answers

i would say solarwinds network performance moniter.

Is the flow of power reversible in a leadscrew?

Answers

Explanation:

The flow of power is not reversible. The lead screw's force is increased. It's direction of travel is reversible. ... Increases force, not torque, because the output is in a linear direction.

How long do batteries on your mobile computer last before they can no longer hold a charge?

Answers

I am not sure ask google

In the program below, numA is a _____.

def multiply(numA, numB):
product = numA * numB
return product

answer = multiply(8,2)
print (answer)


qualitfier

return value

accumulator

parameter

Answers

Answer:

D. Parameter.

Explanation:

In the program below, numA is a parameter because it is used to define the mathematical expression or serves as an input value to the function.

In Computer programming, a parameter simply represents a value that is being passed into a function i.e an input to a function.

def multiply (numA, numB);

{

product = numA * numB

return product;

answer = multiply(8,2)

}

print (16)

In this scenario, the values numA (8) and numB (2) are the parameters passed into the multiply function.

Hence, this is a simple calculator that accept parameters as a numerical value and multiplies them together before printing an output (answer).

Answer:

Its d, parameter

Explanation:

Took the test and got a 100% :)

Question #4
Dropdown
Mathematics and computer science share many concepts.
One of them,
occurs when something is defined in terms of itself.

Answers

Answer:

the answer is recursion

Answer:

One of them, recursion, occurs when something is defined in terms of itself.

Explanation:

if a friend asked you to help her decide what internal sabling system to install in her new house, what kinds of questions wouls you ask her to do? why would you ask those questions?​

Answers

Answer:

Assuming you mean *cabling system*

you could ask:

- The architectural structure of the building, which houses for the cabling installation.

- The function of the cabling installation.

- The configuration of an already installed system (upgrades and retrofits).

others

- The cable and connection products.

- The types of equipment the cabling installation will support -- present and future.

- Customer requirement.

MEOWWWWWRARRARARARARRA

Answers

Answer:

Yes.

Explanation:

MEOWWWWWRARRARARARARRA

Blair is the director of information systems at a marketing firm. She creates a set of guidelines that dictate everything an employee must do on his or her computer before leaving for the evening. This situation relates to which of the following components of information system security?

A. Software
B. Data
C. People
D. Procedures

Answers

Answer:

data

Explanation:

Because i said so

Edhesive test 3 does anyone know the answer

Answers

Answer:

I think it is B. To make a follow-up True/False decision

Explanation:

The keyword, elif can be used like this.

>>> x = "Hello World"

>>> if x == "Hello World": # Returns False since x is equal to Hello world

>>> print("x is True")

>>> elif x is False: # Returns False since x is not False

>>> print("x is False")

>>> else: # Returns False since x is equal to "Hello World"

>>> print("x is True and has uknown value")

Jasmine is a commercial artist her is is the one most often used by graphic designers publishers and others in her field the os she most likely uses is
Windows
MS-DOS
Max
Linux

Answers

OS is for mac so she used the mac computer

plez answer this
how to divide this binary number
step by step
the best answer will get brainliest ​

Answers

The dividend is divided by the divisor, and the answer is the quotient.
Compare the divisor to the first digit in the dividend. ...
Write the first digit of the quotient above the last dividend digit you were using in the comparison. ...
Multiply and subtract to find the remainder. ...
Repeat.

Make a presentation on ms word

Answers

Answer:

presentation on what????

I need extra details to make a presentation

Create two sample HTML pages that include a DOCTYPE statement and a title. Include at least one example of each of the following:

a standard paragraph of text
a left-justified headline (like a title)
a centered headline (like a title)
a sub headline (like a subtitle)
a section of colored text (not all text, just a segment or headline)
an image (from a URL)
an image (from a local source)
an image with a size adjustment (maintaining the aspect ratio)
hyperlinks
a hyperlinked image
a split line (empty element)
one page that has a background color

Extra Credit:
Include a sample of Italic text.
Include an email address link that does not spell out the address on the web page (HINT: mailto).
Create a hyperlink to a local page on your computer.

Answers

Answer:

<!DOCTYPE html>

 <html>

   <head>

     <title>Hello</title>

   </head>

     <body style="background-color:pink;">

<h1 style="text-align:center">The Centered Headline</h1>

<h1 style="text-align:left">Left</h1>

         <h2>Sub headline</h2>

 <p>This is the paragraph.</p>

<h1 style="color:purple;">colored word</h1>

<img src="flower.jpeg" alt="Flower" width="460" height="345">

htmlimg2.jpeg

     </body>

 </html>

Explanation:

HELP PLEASE !!!!!!!!!!!!

Answers

My feeling is: ‘‘To improve their ability to complete a pass.’’ But I’m not sure if it’s correct, I can only apologize if it’s wrong.

what is displayed as a result of executing the following code segment?


x < - - 2
y < - - X * 4
z < - - X * Y
x < - - X + Y
z < - - z + ( x - y) * 3
DISPLAY ( x + y + z)

select one answer
A - 72
B - 40
C - 8
D - 54​

Answers

The first one I’m not sure it’s quite complicated

Why do the spelling and grammar checkers in Word miss some errors?
Answer must include 3-5 sentences

Answers

Answer:

Word dose not always catch misspellings why? Its because its a computer program. the program has to run through algorithms (millions a second) and that makes a large margin for error. it  could also be the fact that the misspelling is very uncommon so it dose not recognize it.  

Explanation:

Unscramble thr words
1.Nsieg Wiev
2.Seeathdat ievw​

Answers

Answer: genis view       headset view

Explanation:

Answer

1. Singe View

Explanation:

Rita works on a computer most of the day entering data. She also uses a special camera and prints. In three to five sentences, describe equipment maintenance procedures she should perform.

Answers

Answer:

Equipment maintenance is an important thing for smooth running of the equipment without any fault.

Explanation:

In the context, Rita works on the computer all day long and she also uses the camera and the printer. In order for smooth performance of the equipment that she worked on, she should do well maintenance of them on a regular basis and check its performance.

Rita can maintain these equipment by :

1. She should ensure that her computer system has an updated antivirus to check the any viruses in the system.

2. She should also perform regular  update on the software that she works on.

3. She should clean the system and keep in free from dust and vent.

4. She should run computer maintenance on regular basis and delete all the temporary and unwanted files from the computer system.

5. While using the printer, she should never use damaged paper or pulp.

6. Keep the printer clean and tidy.

7. She should take proper care while feeding paper in the printer.

what are the steps in creating a simple mail merge​

Answers

Answer:

........ ...........

I think that you can be more stressed out by being the impostor and you can vibe doing task as a crew mate (type your opinion)

Answers

Answer:

i feel the same as you tbh

Explanation:

Answer:

Honestly yeah, I get stressed out being impostor if it's just me. If I'm with someone else though, it's pretty chill. But like....I also get stressed out doing my tasks when there's no one around or if only one person is around. also thanks for the points

When an object is acted on by unbalanced forces, the object will always

Answers

Answer:

If an object has a net force acting on it, it will accelerate. The object will speed up, slow down or change direction. An unbalanced force (net force) acting on an object changes its speed and/or direction of motion. An unbalanced force is an unopposed force that causes a change in motion.

Explanation:

A program that doesn’t work properly needs to be debugged. true or false

Answers

Answer:

the answer is most likely True,

Explanation:

Which behavior was most likely inherited rather than learned?

Answers

It was most likely behavior. thxxx

Answer: a camel seeking shelter from the sun.

Explanation: The other option a student writing his name on a piece of paper is learned a dog begging for food at a dinner table is learned a chimpanzee using a stick as a digging tool is learned

Other Questions
Please helpWhat is 1. answer abcWhat is 2. abcd What is E and FAlso what is xHelp A 10.0 kg mass is attached to the end of a 2.00 m long brass rod, which has a diameter of 1.00 mm and negligible mass. The mass at the end is pulled, stretching the rod slightly, and then released. If the elastic modulus of brass is 9.10 1010 N/m2, then the period of the resulting oscillations isA. 0.175 sec.B. 0.105 sec.C. 0.133 sec.D. 0.145 sec.E. 0.167 sec. What processes drive motion of the plates? PLS RIGHT A SMALL ANSWER If it takes 2/5 cup of red paint to mix with 5/8 cup blue paint to make purple paint. How much red paint is needed to mix with 1 cup of blue paint. The graph shows the speed of sally the sloth. How long would it take Sally to travel 9 feet 16. What is the Theory of Mercantilism? * Why do your muscles and other parts of your body need oxygen? During active transport, molecules move from areas of ______________ to _______________. This requires the use of _________. Read these sentences from the text.These new effects rippled through the food web. As zooplankton rebounded, so did native mussels and clams. Scientists anticipate some fish species will rebound too as their food supply increases.What does the author mean by the phrase rippled through the food web? A. did not impact other parts of the food web B. had effects on other parts of the food web C. caused harm to other species in the food web D. completely changed the relationships in the food web Find m1 - Its Geometry ASAP ITS TIMED (will mark brainliest)Review the map.Based on the map, why were the Maya most likely drawn to Tulum? It was a central plateau that provided fertile soil for most crops.It was a coastal lowland area that offered transportation routes.It was a mountainous area that was suitable for terrace farming. It was a cold and dry location suitable for slash-and-burn agriculture. Which of the following would not be expected to contain tissues?A. Harvester antB. African elephantC. Unicellular bacteriaD. Oak treebtw i picked C. Unicellular bacteriawhat Line m is perpendicular to x - 3y =-1 and passes through (9, 4). What is the slope of line m? A. 1/3 B. -3 C. 4D. 3 Plz answer fast Im on a timer !!! what is medicine 100 points i need help???????????????????? part 1 of 2Bill kicks a rock off the top of his apartmentbuilding. It strikes a window across the street18 m away.The acceleration of gravity is 9.8 m/s?.If the window is 19 m below the positionwhere Bill contacted the rock, how long wasit in the air?Answer in units of s.part 2 of 2How fast was it moving when it left Bill'sfoot?Answer in units of m/s. If an organism has 5 chromosomes in its sex cells, how many would it have in its body cells? O. 2.5O. 5O. 10O. 15 Write down 5 countries we (the United States) have good foreign relations with. Instructions: Solve the following literal equation.Solve P-2w/2= l for P.