A query that creates a new table or changes data in an existing table
a. Aggregate query
b. Select query
c. Action query
C
Computer Science & Information Technology
You might also like to view...
( *max )( num1, num2, num3 );:
a. Is the header for function max. b. Is a call to the function pointed to by max. c. Is the prototype for function max. d. Is a declaration of a pointer to a function called max.
Computer Science & Information Technology
Given the function prototype:float test(int, int, int);which of the following statements is legal?
A. cout << test(7, test(14, 23)); B. cout << test(test(7, 14), 23); C. cout << test(14, 23); D. cout << test(7, 14, 23);
Computer Science & Information Technology