When you import data from a Word document, it is usually best to store it in a Word ____.
A. column
B. table
C. diagram
D. chart
Answer: B
You might also like to view...
Assume class Book has been declared. Which set of statements creates an array of Books?
a. Book[] books; books = new Book[numberElements]; b. Book[] books]; books = new Book()[numberElements]; c. new Book() books[]; books = new Book[numberElements]; d. All of the above.
You can view a Flash movie in Dreamweaver by pressing the ____ button in the Property inspector.
A. View B. Preview C. Start D. Play
____ allow you to blend, blur, or warp graphics in every way imaginable.
a. Filters b. Tracks c. Indices d. Knockouts
Answer the following statements true (T) or false (F)
1) Local variables are initialized to their default values. 2) Attempting to use an uninitialized local variable is a runtime error. 3) It’s always better to get the errors out of your programs at execution time, if possible, rather than at compilation time. 4) The benefits of data integrity are automatic when instance variables are made private.