The vi command to cancel the displaying of the line numbers is

a: no numbers
b: set number off
c: set nonumber
d: nu off
e: set no number


c: set nonumber

Computer Science & Information Technology

You might also like to view...

The function int fact(int k) { return k*fact(k-1); if (k==0) return 1; }

A) computes the factorial on an integer k passed to it as parameter. B) returns the value 1 if it is passed a value of 0 for the parameter k. C) does not correctly handle its base case. D) works for all non-negative values of k, but not for negative numbers. E) None of the above

Computer Science & Information Technology

A(n) ____________________ graphic displays a picture image as a matrix of dots on a grid.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology

Sound samples are measured in hertz (Hz).

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

Computer Science & Information Technology

The ____________________ object is used when only one of a group of related options can be selected

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology