Answer the following statements true (T) or false (F)

1. The command I places the text you enter at the beginning of the current line.
2. The vi editor default mode is the command mode.
3. Pressing the Esc key places the vi in the command mode.
4. Pressing the Esc key twice terminates the vi editor.
5. Pressing the 0 (zero) key in command mode places the cursor in the middle of the page.

1. True
2. True
3. True
4. False
5. False

Computer Science & Information Technology

You might also like to view...

To select an entire paragraph, ________ inside the paragraph

Fill in the blank(s) with correct word

Computer Science & Information Technology

A ____________ would be used to check to see if x = 0 and n = 0 at the same time, and can also check to see if n is negative, before calling the recursive function.

``` 1 float p( float x, int n ) 2 { 3 if ( n == 0 ) 4 return 1; 5 else 6 return x p( x, n – 1 ); 7 } ``` A. driver B. class template C. class function D. overloaded operator function

Computer Science & Information Technology