e do loop differs from the while loop in that a. the while loop will always execute the body of the loop at least once b. the do
loop will always execute the body of the loop at least once c. the do loop will continue to loop while the condition in its while statement is false and the while loop will continue to loop while the condition in its while statement is true d. the while loop will continue to loop while the condition in its while statement is false and the do loop will continue to loop while the condition in its while statement is true e. None of these; there is no difference between the two types of loops
b. the do loop will always execute the body of the loop at least once
Explanation:
The do loop will always execute the body of the loop at least once becuase it is an exit loop, that means the condition is always checked at the end, where as while loop execute hte body of the loop zero times as it is an entry loop and the condition will be checked prior to the execution of body of the loop.
do loop structure is as shown below
do{
}while()
So it executes the block atleast once and then checks the condition
Hence, the do loop will always execute the body of the loop at least once.
The item that you would most likely to keep in a database is a Payroll record. Payroll records are numbers and inputs/outputs of employees of a certain company. Numbers are easier to manipulate and easier to manage than statements, letters and addresses that are basically letters.