Q. Consider the following pseudocode of C program:
Code:
x:=1; i:=1; while (x ≤ 500) begin x:=2x ; i:=i+1; end
β
Correct Answer: (B)
5
x:=1; i:=1; while (x ≤ 500) begin x:=2x ; i:=i+1; end
You must be Logged in to update hint/solution