Which of the following is NOT a possible source of error in a compiled application?

a. a programmer error might add a bug to the source code
b. All three (A, C, and D) are all possible sources of error.
c. the compiler might introduce an error by misinterpreting a source statement
d. an electronic error of some kind might change a few object code bits


b. All three (A, C, and D) are all possible sources of error.

Computer Science & Information Technology

You might also like to view...

What is the output of the following function call?

//function body int factorial(int n) { int product=0; while(n > 0) { product = product * n; n—; } return product; } //function call cout << factorial(4); a. 4 b. 0 c. 24 d. 48

Computer Science & Information Technology

What term best describes an operating system were all program modules share the same address space?

A. protected-mode B. virtual C. extended-mode D. real-mode

Computer Science & Information Technology

You can press the ____ key to open the active page in a browser window.

A. F2 B. F6 C. F8 D. F12

Computer Science & Information Technology

In Windows 2000 and later, which command shows you the file owner if you have multiple users on the system or network?

a. dir b. ls c. Copy d. owner

Computer Science & Information Technology