What is the group footer used for?
A) Totaling the data at the end of each group
B) Totaling the data at the end of each page
C) Totaling the data at the end of each section
D) Totaling the data at the end of the form
A
Computer Science & Information Technology
You might also like to view...
What can you use to create an expression to calculate lapsed time?
What will be an ideal response?
Computer Science & Information Technology
If the name of a file to open is in the string variable name fileName, which of the following will correctly open the file for output?
a. out_file.open(fileName); b. out_file.open("fileName"); c. fileName.open(outfile); d. out_file.open(fileName.c_str());
Computer Science & Information Technology