C# Condition MCQs

Question 11: Which of the following keywords can be used to exit from a while loop and transfer control outside the loop?

Question 12: How would you rewrite the following condition?

int a = 15, b = 9, c;
if (a > b) 
    c = b;
else
	c = a;