Answer:
Hi!
The correct answer is B.
Step-by-step explanation:
The code snippet doesn't follow the correct form of writing a while loop, so it will crash when compiles.
One correct form to write the code is:
token = false;
while (token){ // Evaluate token, if true prints else terminates the loop. In this case, token is false so, no output and finish the program.
print("Hello");
};