and Answers|New Update 2025 ED|100%
Correct
Correct 114
Incorrect
Questions and answers
Consists of instructions executing one at a time.
Give this one a go later!
Implementation
, Program Algorithm
Don't know?
2 of 114
Definition
A program that repeatedly executes statements while the expression is
true; when false, execution proceeds past.
Give this one a go later!
Loop Input
Array Comment
Don't know?
3 of 114
Term
A function MyFct has an input x and an output z.
What does MyFct return?
Give this one a go later!
, x and z Nothing
z only x only
Don't know?
4 of 114
Term
Joe is building an online game. He wants to provide a riddle and have
the player guess the answer. The game needs to prompt the user to
enter the answer, check to see if it the input provided does not match
the correct answer, and continue prompting the user until the answer
entered matches the correct answer.
Which control structure supports Joe's needs?
Give this one a go later!
Do-while loop If-else branch
While loop For loop
Don't know?
5 of 114
, Term
Order the steps needed to output the minimum of x and y from first (1)
to last (4).
A Declare variable min
B Put min to output
C min = x
D If y < min, set min = y
Give this one a go later!
ACDB DBAC
ABCD ADBC
Don't know?