| Contents [0/13] | 
| Starter code [1/13] | 
| What's the result? [2/13] | 
| What's the result? [3/13] | 
| What's the result? [4/13] | 
| What's the result? [5/13] | 
| What's the result? [6/13] | 
| What's the result? [7/13] | 
| What's the result? [8/13] | 
| What's the result? [9/13] | 
| What's the result? [10/13] | 
| What's the result? [11/13] | 
| What's the result? [12/13] | 
| What's the result? [13/13] | 
(Click here for one slide per page)
| Starter code [1/13] | 
file:XCountingLoops.java [source] [doc-public] [doc-private] 
01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
| What's the result? [2/13] | 
| 
01 | for (long i = N; i > 0; i = i-1) { result = result+1; } | 
Choices:
| What's the result? [3/13] | 
| 
01 | for (long i = N; i > 0; i = i-1) { result = result+1; } for (long j = N; j > 0; j = j-1) { result = result+1; } | 
Choices:
| What's the result? [4/13] | 
| 
01 | for (long i = N; i > 0; i = i-1) { for (long j = N; j > 0; j = j-1) { result = result+1; } } | 
Choices:
| What's the result? [5/13] | 
| 
01 | for (long i = N; i > 0; i = i-1) { for (long j = i; j > 0; j = j-1) { result = result+1; } } | 
Choices:
| What's the result? [6/13] | 
| 
01 | for (long i = N; i > 0; i = i-1) { for (long j = N; j > i; j = j-1) { result = result+1; } } | 
Choices:
| What's the result? [7/13] | 
| 
01 | for (long i = N; i > 0; i = i/2) { for (long j = N; j > 0; j = j-1) { result = result+1; } } | 
Choices:
| What's the result? [8/13] | 
| 
01 | for (long i = N; i > 0; i = i/2) { for (long j = i; j > 0; j = j-1) { result = result+1; } } | 
Choices:
| What's the result? [9/13] | 
| 
01 | for (long i = N; i > 0; i = i/2) { for (long j = N; j > i; j = j-1) { result = result+1; } } | 
Choices:
| What's the result? [10/13] | 
| 
01 | for (long i = N; i > 0; i = i/2) { for (long j = N; j > 0; j = j/2) { result = result+1; } } | 
Choices:
| What's the result? [11/13] | 
| 
01 | for (long i = 4; i > 0; i = i-1) { for (long j = 0; j < 4; j = j+1) { result = result+1; } } | 
Choices:
| What's the result? [12/13] | 
| 
01 | for (long i = N; i > 0; i = i-1) { for (long j = 0; j < 4; j = j+1) { result = result+1; } } | 
Choices:
| What's the result? [13/13] | 
| 
01 | for (long i = N; i > 0; i = i-1) { for (long j = 0; j < N; j = j+1) { for (long k = 0; k < N; k = k+1) { result = result+1; } } } | 
Choices:
Revised: 2008/03/17 13:01