Multiple Choice
In the algorithm below, adding 10 years to the age variable and storing the result in the newAge variable is an assignment statement, so on a flowchart, it is placed in a(n) ____.
Start
// Declare variables
Declare Numeric age, newAge
// Get user's age
Display "Please enter your age: "
Input age
// Compute age in 10 years
NewAge = age + 10
// Display new age
Display "In 10 years, you will be " + newAge
Stop
A) rectangle
B) parallelogram
C) terminal symbol
D) annotation box
Correct Answer:

Verified
Correct Answer:
Verified
Q1: On a flowchart, _ are used for
Q3: An advantage of structured programming is that
Q4: A _ structure evaluates a logical condition
Q5: On a flowchart, _ are used for
Q6: Comments are included in programs to aid
Q7: Which of the following correctly converts the
Q8: On a flowchart, _ mark the beginning
Q9: On a flowchart, symbols are connected by
Q10: Methods that assign values to class variables
Q11: On a flowchart, _ are used for