Windows XP has a(n) __________ that provides access to MS-DOS line commands.

a. command line interface
b. icon
c. menu
d. tool bar


a. command line interface

Computer Science & Information Technology

You might also like to view...

Which shortcut key combination immediately locks Windows?

A. Ctrl+Alt+Del B. Windows+R C. Windows+M D. Windows+L

Computer Science & Information Technology

Given the following member function prototype and function call, why will the compiler return a message saying that setAge is not a member of person?

void setAge (int, int); // function prototype person me; me.setAge (50); // function call

Computer Science & Information Technology

What is the output of the following program?

``` public class Test { public static void main(String[] args) { int[][] values = {{3, 4, 5, 1}, {33, 6, 1, 2}}; int v = values[0][0]; for (int row = 0; row < values.length; row++) for (int column = 0; column < values[row].length; column++) if (v < values[row][column]) v = values[row][column]; System.out.print(v); } } ``` a. 1 b. 3 c. 5 d. 6 e. 33

Computer Science & Information Technology

What are developer tools? Why might you use them?

What will be an ideal response?

Computer Science & Information Technology