Which of the following statements about subdocuments is TRUE?

A) You cannot edit a subdocument as an independent document once it is inserted into a master document.
B) Each subdocument must be printed separately.
C) If you delete a subdocument from within a master document, it will be deleted permanently.
D) Each subdocument is stored in its own file.


D

Computer Science & Information Technology

You might also like to view...

What is the limit of the number of variable parameters that can be passed to a method that has a variable-length parameter list?

a) 5 b) 10 c) 16 d) less than 100 e) none of the above

Computer Science & Information Technology

The following program invokes p() three times. What is the printout from the last call of p()?

``` #include using namespace std; int j = 40; void p() { int i = 5; static int j = 5; i++; j++; cout << "i is " << i << " j is " << j << endl; } int main() { p(); p(); p(); } ``` a. i is 6 j is 8 b. i is 6 j is 6 c. i is 6 j is 9 d. i is 6 j is 7

Computer Science & Information Technology

What are the benefits of debugging and error handling?

What will be an ideal response?

Computer Science & Information Technology

Polymorphism permits the same method name to invoke one operation in objects of a parent class and a different operation in objects of a derived class.

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

Computer Science & Information Technology