People who use the Disk Operating System (DOS) often call the command line the ____________________.

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


prompt

Computer Science & Information Technology

You might also like to view...

Show the printout of the following code:

``` #include using namespace std; void xFunction(int i) { do { if (i % 2 != 0) cout << i << " "; i--; } while (i >= 1); cout << endl; } int main() { int i = 1; while (i <= 5) { xFunction(i); i++; } cout << "i is " << i; return 0; } ```

Computer Science & Information Technology

The Database ________ tool creates a detailed report for each selected object

Fill in the blank(s) with correct word

Computer Science & Information Technology

The ________ property determines the size of the picture in the form

Fill in the blank(s) with correct word

Computer Science & Information Technology

The first four lines of a document can be selected by placing the insertion point to the left of the first line and holding the ________ key while clicking to the right of the fourth line

A) Alt B) Ctrl C) Shift D) Insert

Computer Science & Information Technology