A group of menus at the top of a program window is called the:

A) menu bar B) dialog box C) taskbar D) Start menu


A

Computer Science & Information Technology

You might also like to view...

7. Suppose an array reptiles is ["snake", "turtle", "lizard"]. To add "crocodile" to the end of the array, use the statement ___.

A. reptiles.push("crocodile"); B. reptiles.push(); C. reptiles.pop("crocodile"); D. reptiles.pop(); E. reptiles.unshift("crocodile"); F. reptiles.unshift(); G. reptiles.shift("crocodile"); H. reptiles.shift();

Computer Science & Information Technology

A ____ is a predefined set of colors, fonts, chart styles, cell styles, and fill effects.

A. scheme B. gallery C. theme D. style

Computer Science & Information Technology

Select the answer that should be used to replace the missing code in the following statements. ? myList = list()fileObj = open("myfile.dat", "rb")while True: try: item = pickle.load(fileObj) myList.append(item) fileObj.close() breakprint(myList) ? ?

A. if EOF: B. elif Error: C. except EOFError: D. else while TRUE:

Computer Science & Information Technology

What would not be a typical item to have in a header or footer?

A. The spreadsheet designer's name B. The filename or file path C. The file size D. The page number

Computer Science & Information Technology