When all of the statements in a high-level source program are translated as a complete unit before any individual statement is executed, the programming language is called a(n) ____ language.

A. machine
B. procedural
C. compiled
D. interpreted


Answer: C

Computer Science & Information Technology

You might also like to view...

The output of this program will be:

``` public class Test { public static void main(String[] args) { int[] a; a = new int[10]; for (int i = 0; i < a.length; i++) { a[i] = i + 2; } for (int i = 0; i < a.length; i++) { result += a[i]; } System.out.printf("Result is: %d%n", result); } } ``` a. Result is: 62. b. Result is: 64. c. Result is: 65. d. Result is: 67.

Computer Science & Information Technology

What is the default concurrency level of a ResultSet object?

a. public b. updatable c. private d. read-only

Computer Science & Information Technology

The designation fa0/0 indicates

a. FastEthernet interface 0/0. b. external port 0/0. c. exit port 0/0. d. FastEthernet input port 0/0. e. FastEthernet output port 0/0.

Computer Science & Information Technology

You can think of a(n) ________ image as a paint-by-number image

Fill in the blank(s) with correct word

Computer Science & Information Technology