The statement is True, the do-while loop always performs at least one iteration, even if its boolean expression is false to begin with.
A variation of the while loop is the do/while loop. Before determining whether the condition is true, this loop will run the code block once. If the condition is true, it will then repeat the loop. The do/while loop is used in the example below. Because the code block is executed before the condition is tested, the loop will always be run at least once, even if the condition is false.
To know more about do/while loop, visit;
/brainly.com/question/15690925
#SPJ4