Analyze the following code.

```
#include
using namespace std;

class B
{
public:
B() { };
int k;
};

int main()
{
B b;
cout << b.k << endl;

return 0;
}
```

a. The program displays 0.
b. The program displays 1.
c. The program displays unpredictable number.
d. The program has a compile error because b.k cannot be accessed.
e. The program has a runtime error because b.k does not have a value.


c. The program displays unpredictable number.

Computer Science & Information Technology

You might also like to view...

To divide BigDecimal b1 by b2 and assign the result to b1, you write _________.

a. b1.divide(b2); b. b2.divide(b1); c. b1 = b1.divide(b2); d. b1 = b2.divide(b1); e. b2 = b2.divide(b1);

Computer Science & Information Technology

The Snap feature automatically resizes windows when you drag them to the edge of the screen

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of the following is NOT an advantage of a web query?

A) Connections can be shared with other users. B) Web queries can be used by other Microsoft Office applications. C) Information is kept up-to-date because it connects with the website for the most current information. D) Web queries update the URL automatically when the URL changes.

Computer Science & Information Technology

Speak into the _____ to record the narration for the current slide.

A. mouse B. monitor C. camera D. microphone

Computer Science & Information Technology