Exam SnowPro Core All QuestionsBrowse all questions from this exam
Question 620

Which loop type iterates until a condition is true?

    Correct Answer: C

    A REPEAT loop iterates until a condition is true. In a REPEAT loop, the condition is tested immediately after executing the body of the loop. As a result, the body of the loop always executes at least once.

Discussion
KnightVictorOption: C

A REPEAT loop iterates until a condition is true. In a REPEAT loop, the condition is tested immediately after executing the body of the loop. As a result, the body of the loop always executes at least once. A WHILE loop iterates while a condition is true. In a WHILE loop, the condition is tested immediately before executing the body of the loop. If the condition is false before the first iteration, then the body of the loop does not execute even once.

guauOption: C

cccccc

examtopics_strataOption: C

Verified

HighBMIOption: C

Should be C

chuks_charleyOption: C

https://docs.snowflake.com/en/developer-guide/snowflake-scripting/loops

Kvk117Option: C

Verified