The ____ function displays the highest value in a range.
A. MIN
B. SUM
C. MAX
D. AVERAGE
Answer: C
Computer Science & Information Technology
You might also like to view...
You need __________ size declarators when declaring a two-dimensional array.
Fill in the blank(s) with the appropriate word(s).
Computer Science & Information Technology
In which language is Linux written? What does the language have to do with the success of Linux?
What will be an ideal response?
Computer Science & Information Technology
Give the output from this code fragment:
``` int *p1, *p2; p1 = new int; p2 = new int; *p1 = 10; *p2 = 20; cout << *p1 << “ “ << *p2 << endl; *p1 = *p2; cout << *p1 << “ “ << *p2 << endl; *p1 = 30; cout << *p1 << “ “ << *p2 << endl; ```
Computer Science & Information Technology
Why is it useful to store fixed-length directory entries? What limitation does this impose on file names?
What will be an ideal response?
Computer Science & Information Technology