What would the output from the following be:
```
boolean continue = true ;
int count = 0 ;
int max = 2 0 ;
while ( continue )
{
System . out . println ( count ) ;
count++;
max++;
i f ( count > 10 && max > 40)
continue = fal se ;
}
```
Actually this gives an error message because you can't use the reserved word
continue as a variable name. If you don't use continue you get:
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Computer Science & Information Technology
You might also like to view...
The duplication of data in a database is called data ________
Fill in the blank(s) with correct word
Computer Science & Information Technology
On a chart, ________ can be used to point out items that need more explanation
A) callouts B) values C) a legend D) perspective
Computer Science & Information Technology