A while loop is called a pretested loop becasue the test or condition is checked before any of the satements inside the loop body are executed. this means that if the condition is false the first time it is checked, then the statement inthe loop body will never be done format: start-code; while (comparison) { //block of code }