Select all that apply. Which of the following cause(s) a statement or set of statements to repeat as long as a condition is true?

a. While loops
b. Do-While loops
c. Do-Until loops
d. For loops

a. While loops, b. Do-While loops, d. For loops

Computer Science & Information Technology

You might also like to view...

________ is the process of copying external data directly into the database

Fill in the blank(s) with correct word

Computer Science & Information Technology

Given the following pseudocode, what value of GRADE will be output if 60 is input?

``` Start Read GRADENUM CASENTRY GRADENUM CASE 60 ? GRADENUM ? 80 GRADE = “A” CASE 59 ? GRADENUM ? 60 GRADE = “B” CASE 50 ? GRADENUM < 60 GRADE = “C” CASE other GRADE = “No Grade” ENDCASE Write GRADE Stop ``` a) A b) B c) C d) No Grade

Computer Science & Information Technology