A(n) _________ object is used to submit a query to a database.

Fill in the blank(s) with the appropriate word(s).

Statement.

Computer Science & Information Technology

You might also like to view...

How many lines of output will be displayed by the following program fragment?

``` for (int i = 0; i< 5; ++i) for (int j = 0; j < i; ++j) cout << i << j << endl; ``` a. 5 b. 9 c. 10 d. 20

Computer Science & Information Technology

Identifiers in Java have ________ and ________ scopes?

a. method, class. b. class, block. c. block, statement. d. statement, file.

Computer Science & Information Technology