State the output from the program in Figure 1 when the user enters the number 6 followed by the number 3.
Figure 1
1 num1 = input()
2 num2 = input()
3 result = 0
4 count = 1
5 while count < num1
6 if count MOD num2 == 0 then
7 result = count
8 endif
9 count = count + 1
10 endwhile
11 print(result)
298 exam-style questions on AQA GCSE Computer Science Programming concepts. Each one has a worked solution and a mark scheme showing where the marks go.