Consider the following code:
| 1. a:= 0 |
| 2. b:= a * b |
| 3. L1: c:= b / d |
| 4. if c < x got L2 |
| 5. e:= b / c |
| 6. f:= e + 1 |
| 7. L2: g:= f |
| 8. h:= t - g |
| 9. if e > 0 qoto L3 |
| 10. goto L1 |
| 11. L3: return |
Which of the following are Leader Statement?
1
1
2
10
3
7
4
11
Consider the following code:
| 1. a:= 0 |
| 2. b:= a * b |
| 3. L1: c:= b / d |
| 4. if c < x got L2 |
| 5. e:= b / c |
| 6. f:= e + 1 |
| 7. L2: g:= f |
| 8. h:= t - g |
| 9. if e > 0 qoto L3 |
| 10. goto L1 |
| 11. L3: return |