Python Loop MCQs

Question 6: break statement causes

Question 7: continue statement causes

Question 8: What will be the output of the following code?

x = 0

while x < 3:
	x += 1 
	print(x,end='')
else:
    print('else block)