Examples
Pseudocode:
test_grade isofftype Num
...
is_passing isoftype Boolean
is_passing <- TRUE
if (test_grade < 60) then
is_passing <- FALSE
endif
print (is_passing)
Java: what happens here?
boolean bPassing = true;
int iTestGrade;
...
if (iTestGrade < 70)
bPassing = false;
System.out.println
(bPassing);