Assume this code fragment is embedded in an otherwise correct and complete program. What should be the output from this code segment?

```
{
for( int i = 0; i < 10; i++)
{
. . .
}
cout << i << endl;
}
```

a) 10
b) 9
c) 0
d) The variable i is undefined in this scope, so this should not compile


d) The variable i is undefined in this scope, so this should not compile

The question is what the output should be, so the correct answer is d). The actual answer depends on what the compiler writer did. On several of my compilers I get 10. Behavior pre ISO C++ is that the variable i is defined in the outer scope shown here.

Computer Science & Information Technology

You might also like to view...

If string s contains "antidisestablishmentarianism", then s.substr(7, 13) would be:

a. "establish" b. "ishmenta&" c. "establi" d."establishment"

Computer Science & Information Technology

In order to create a ____ capability, the governance process also has to ensure that information security management and the various players in long-range corporate planning are formally linked.

A. strategic management B. strategic governance C. strategic control D. strategic reporting

Computer Science & Information Technology

A(n) ____________________ is a collection of related information stored in a structured format.

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

Computer Science & Information Technology

You can use the panel in the accompanying figure to set properties for input text fields.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology