To obtain a general command description under Linux’s vi (vim) you type

a: linux help
b: vi help
c: help
d: man
e: [Ctrl-h]

c: help

Computer Science & Information Technology

You might also like to view...

The statement or block of statements following the while clause is known as the ____________ of the loop.

a. assembly b. body c. definition d. sequence structure

Computer Science & Information Technology

Which of the following will count down from 10 to 1 correctly, with no added or omitted numbers?

a) For i = 10 to 0 Step -1 b) For i = 10 To 1 Step 1 c) For i As Integer = 10 To 1 Step -1 d) For i As Integer = 1 To 10 Step -1

Computer Science & Information Technology