Grace is creating a game about a cook in a kitchen. Grace wants the cook to flip a burger in the air. If it lands in the pan, the cook should earn points. If it falls on the floor, the cook should lose points. Which of these statements should Grace use? (1 point)

Which of the following describes an editor when writing a program? (1 point)

An editor is a software tool used by programmers to write and modify code. It provides features such as syntax highlighting, code completion, and debugging capabilities to enhance the coding experience. Thus, an editor is used for writing and modifying a program's code.

Which of these is an example of a Boolean value?

An example of a Boolean value is:

a) True

Boolean values are binary, meaning they can be either true or false. In this case, "True" represents a Boolean value of true.

Which of these is an example of a Boolean value? (1 point) Responses apple, banana, and pear apple, banana, and pear apple or banana apple or banana apple apple banana banana

An example of a Boolean value is:

c) apple or banana

In this case, "apple or banana" represents a Boolean expression where the value can be true if either "apple" or "banana" is true, and false if both are false.

With the statement, “If the dragon is hit by an arrow, the player gains 20 points; else, the player loses one life,” what happens if the arrow misses the dragon? (1 point) Responses The player loses one life. The player loses one life. The player gains 20 points. The player gains 20 points. The player loses 20 points. The player loses 20 points. There is no effect in the game.

If the arrow misses the dragon, according to the statement, the player loses one life. So the correct response is:

a) The player loses one life.

Which sentence best describes how block-based code works? (1 point) Responses Lines of code make physical blocks move. Lines of code make physical blocks move. Each block creates printer output. Each block creates printer output. Lines of code are used to print blocks. Lines of code are used to print blocks. Each block connects to one (or more) instructions written in code. Each block connects to one (or more) instructions written in code.

The correct response is:

d) Each block connects to one (or more) instructions written in code.

In block-based coding, visual blocks are used to represent different instructions or actions, and these blocks can be connected together to create a program. Each block represents a specific action or command in the code, and by connecting these blocks, the instructions written in code are formed.