Question

If grade has the value of 60 what will the following code print?
if (grade >= 60) {
puts("Passed");
}
(a) nothing
(b) 60
(c) Passed
(d) puts("Passed");

Answer

This answer is hidden. It contains 3 characters.