The vi command to repeat the last changes is

a: repeat
b: rc
c: . (dot)
d: .. (dot dot)
e: cw


c: . (dot)

Computer Science & Information Technology

You might also like to view...

Which of the following sets of statements creates a multidimensional array with 3 rows, where the first row contains 1 value, the second row contains 4 items and the final row contains 2 items?

a. int[][] items; items = new int[3][?]; items[0] = new int[1]; items[1] = new int[4]; items[2] = new int[2]; b. int[][] items; items = new int[3][]; items[0] = new int[1]; items[1] = new int[4]; items[2] = new int[2]; c. int[][] items; items = new int[?][?]; items[0] = new int[1]; items[1] = new int[4]; items[2] = new int[2]; d. int[][] items; items[0] = new int[1]; items[1] = new int[4]; items[2] = new int[2];

Computer Science & Information Technology

When words within a paragraph wrap to the next line when text is inserted or typed, the feature is called wordwrap

Indicate whether the statement is true or false

Computer Science & Information Technology

Review tools can be used to mark each change in a document so that others can see your ________, or changes

Fill in the blank(s) with correct word

Computer Science & Information Technology

You can click the ____ command on the File menu's New submenu to open the Attach Dynamic Web Template dialog box.

A. Create from Template B. Create New Site C. Attach Dynamic Web Template D. Create from Dynamic Web Template

Computer Science & Information Technology