Until you save a document, it is stored only here
A) RAM B) Clipboard C) Live Preview
A
You might also like to view...
Assume that t is an object of class Test, which has member functions a(), b(), c() and d(). If the functions a(), b() and c() all return references to an object of class Test (using the dereferenced this pointer) and function d() returns void, which of the following statements will not produce a syntax error:
a. t.a().b().d(); b. a().b().t; c. t.d().c(); d. t.a().t.d();
Answer the following statements true (T) or false (F)
1. Pseudocode and flowcharts are two different tools or methods used in planning a solution to a problem. 2. Suppose your supervisor at work wants you to write a program to accomplish a specified task. However, they have not let you know which computer language to use. It is still possible to design the program in pseudocode. 3. During the design phase, all errors will be caught by Visual Basic's smart editor. 4. Although a flowchart (as its name suggests) depicts data flow very well, it is not easily modified once written.
Figure PPT 4-1 Which chart element is the red arrow pointing to in the accompanying figure?
A. Chart title B. Horizontal axis title C. Vertical axis title D. Legend
Testing the solution:
a. Provides a validation of the solution. b. Is not necessary. c. Does not find logic errors. d. Should only be done after the program on the computer is completed.