No matter how thoroughly you test an application, chances are it still will contain some errors, called ____.

A. mosquitoes
B. bugs
C. hoppers
D. problems


Answer: B

Computer Science & Information Technology

You might also like to view...

What is the output of the following code?

``` #include using namespace std; void f(double &p) { p += 2; } int main() { double x = 1; double y = 1; f(x); f(y); cout << "x is " << x; cout << " y is " << y << endl; return 0; } ``` a. x is 2 y is 1 b. x is 3 y is 3 c. x is 2 y is 2 d. x is 1 y is 1 e. x is 1 y is 2

Computer Science & Information Technology

You can use a database ________ to ask a question of the data

A) report B) form C) query D) table

Computer Science & Information Technology

In object-oriented programming, ____ is a method that allows for errors to be detected without having to write error-checking code at every point of input.

A. exception handling B. batch processing C. interactive processing D. string manipulation

Computer Science & Information Technology

Penalties for hacking are ________.

A. limited only if a hacker stole $1000 B. zero C. limited only if a hacker stole over $1,000,000 D. irrelevant of the amount stolen

Computer Science & Information Technology