A predefined formula is called a
A) data bar. B) filter. C) criteria. D) function.
D
Computer Science & Information Technology
You might also like to view...
The Decrease Vertical Spacing button and Increase Vertical Spacing button are located in the ________ group
A) Placement B) Position C) Alignment D) Adjust
Computer Science & Information Technology
Which of the following is correct for opening a file and attaching it to a file named File.txt? Assume proper file inclusion and proper using directives.
a)``` open(outStream, “File.txt”, ios::app) ``` b) ``` ifstream inStream; inStream.open(“File.txt”); ``` c) ``` ifstream inStream(“File.txt”); ``` d) ``` ofstream inStream; onStream.open(“File.txt”, ios::app); ``` e) ``` ifstream inStream(“File.txt”, ios::app); ```
Computer Science & Information Technology