What is a secondary window that takes control of a program known as?
A. modal window
B. popup box
C. message interrupter
D. focus grabber
Answer: A
You might also like to view...
Which of the following are the correct preprocessor commands necessary to prevent multiple inclusions of header files? If there is an answer here that works to prevent multiple inclusion, carefully describe how it works in the explanation.
a. #include “header.h” b. #define HEADER_H #ifndef HEADER_H //declarations for header.h go here #endif c. #ifndef HEADER_H #define HEADER_H // declarations for header.h go here #endif d. #ifndef HEADER_H //declarations for header.h go here #endif
?A _____ shows the visual layout of a webpage to indicate where elements should appear.
A. ?site map B. ?site index C. ?wireframe D. ?data architecture
In traditional software engineering, modules must serve in which of the following roles?A) Control componentB) Housekeeping componentC) Infrastructure componentD) Problem domain component
What will be an ideal response?
Suppose that class Book has been defined. Which of the following creates an array of Book objects?
a) Book[] books = new Book[numberElements]; b) Book[] books = new Book()[numberElements]; c) new Book() books[]; books = new Book[numberElements]; d) All of the above.