MC 4DOM function________removes insignificant whitespace from an XML DOM tree.
a) strip.
b) cleanup.
c) StripXml.
d) None of the above.
c) StripXml.
You might also like to view...
Given the following function declaration and local variable declarations, which of the following is not a correct function call?
int myInt; float myFloat; char ch; void someFunction(int& first, float second, char third); a. someFunction(1, 2.0, ch); b. someFunction(myInt, myFloat, ch); c. someFunction(myInt, 2.0, 'c'); d. someFunction(myInt, myFloat, '1');
Answer the following statements true (T) or false (F)
1) A loop control variable is a variable whose value controls the data type of the repetition condition. 2) A counting loop is a data input loop that exits on entry of a predetermined value. 3) A sentinel loop is a repetition structure that executes a predetermined number of times and is controlled by a counter. 4)Assuming the following declarations, ``` int data; ifstream infile ("program.txt", ios::in); ``` as long as the extraction operation ``` infile >> data; ``` finds values in program.txt that are the expected data type for data, the value of ``` infile.fail() ``` will be false. 5) The body of a do-while loop is always executed at least one time.
When deriving a class, you should
a. list only base class functions that will be redefined b. list all the member functions of the base class c. make every function a virtual function d. overload all the base class member functions
Pick the best answer
(a) Recursive methods may include a recursive call (b) Recursive methods may not use iteration (c) Recursive methods must include a recursive call (d) none of the above