A repeat until loop keeps executing its body until the condition at the end of the loop evaluates to True. Since the condition of a repeat until loop is checked at the end, these are also a type of post-condition loop. Therefore, the instructions within the loop will be executed at least once, even if the condition evaluates to True at the start.