How do you restart a Linux computer?

A. Type restart and press Enter.
B. Type reboot and press Enter.
C. Type exit and press Enter.
D. Type recycle and press Enter.


Answer: B

Computer Science & Information Technology

You might also like to view...

Here is a recursive function that is supposed to return the factorial. Identify the line(s) with the logical error(s). Hint: This compiles and runs, and it computes something. What is it?

``` int fact( int n ) //a { int f = 1; //b if ( 0 == n || 1 == n ) //c return f; //d else { f = fact(n - 1); //f f = (n-1) * f; //g return f; //h } } ```

Computer Science & Information Technology

When you insert a mail merge field into the main document, how does Word designate the field name?

A) Straight brackets ([]) B) Double angle brackets (<< >>) C) Single angle brackets (< >) D) Curly brackets ({})

Computer Science & Information Technology

You can run Word's ________ to find reveal any hidden or personal data in a document

A) Document Viewer B) Document Inspector C) Spam Filter D) Defender

Computer Science & Information Technology

What would the most successful means of attacking an environment relying upon guest OSes that would result in the destruction or loss of use of the guest OSes be?

A. Compromise the host OS. B. Perform a full port scan against both TCP and UDP across all guest OSes. C. Implement a man-in-the-middle attack. D. Infect the guest OSes with spyware.

Computer Science & Information Technology