⚠️ Test Running in Guest Mode
Important: Your final mark will not be saved.
1 - Programming Categorise
Click on an item, then click on a category to place it. Or, drag and drop the item into the correct category. Organise all items before clicking 'Check'.
for x = 1 to 2
print(x)
next
x
function calculation(value)
return calculation(value^value)
endfunction
procedure functionA()
functionB()
functionC()
functionD()
endprocedure
switch entry
case 1:
print("yes")
default:
print("no")
endswitch
function triple(number)
return triple(number – 1)
endfunction
if a < 5 then
print(a)
endif
while a < 10
x = x + b
endwhile
procedure callSomething()
ifXY()
elseZ()
endprocedure
answer=input("2+2")
until answer==4