A ________ is a context sensitive list of commands and options relevant to the active object

A) shortcut menu B) dialog box C) path D) pane


A

Computer Science & Information Technology

You might also like to view...

Before a high-level language program can be executed, it must first be translated into the target computer's machine language. The program that does this translation is called the

a. compiler b. operating system c. linker d. loader

Computer Science & Information Technology

Write out the order of elements that are contained in a queue after the following operations are performed.

What will be an ideal response? ``` myQueue.enqueue(new Integer(8)); myQueue.enqueue(new Integer(6)); Integer num1 = myQueue.dequeue(); myQueue.enqueue(new Integer(3)); myQueue.enqueue(new Integer(4)); myQueue.enqueue(new Integer(15)); myQueue.enqueue(new Integer(12)); myQueue.enqueue(new Integer(9)); myQueue.dequeue(); myQueue.dequeue(); myQueue.dequeue(); myQueue.enqueue(new Integer(19)); ```

Computer Science & Information Technology

After you put your report on a Web page, you should periodically open the report and ____ it again as a Web page to keep the Web version up-to-date.

A. import B. export C. run D. save

Computer Science & Information Technology

The size of an array cannot be omitted from a declaration statement even if the initializing values are included.

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

Computer Science & Information Technology