Key Concept UPDATED ACTUAL and Correct Answers
Question: When is the Final Project due?
Answer:
Friday, May 8th at 11:59pm.
Question: When will the Final Exam take place?
Answer:
Monday, May 11th from 4:00-5:50pm.
Question: What is the weight of the Final Exam on the final grade?
Answer:
25% of your final grade.
Question: What must you not use during the Final Exam?
Answer:
Any electronic devices.
Question: What type of exam will the Final Exam be?
Answer:
A traditional pencil/pen and paper exam.
Question: What is required for the Final Project submission?
Answer:
A short written component and a
five-minute video.
Question: What must be included in the Final Project written component?
Answer:
A user guide, time
spent, learning reflection, a list of components, and a proposed grade.
Question: What is a variable?
Answer:
A name that represents a value stored in the computer's memory.
Question: Which of the following is not a keyword in Python
, Answer:
'and', 'class', 'change'?: -
'change' is not a keyword.
Question: Which of the following are syntactically incorrect variable names in Python?-
Answer:
'while', '$count', and 'total score' are incorrect.
Question: What does the code that prompts for age do if the age is greater than 13
but less than 16?
Answer:
Prints 'You may drive a car with a learner's permit.'
Question: What does Point(x1, y1) represent in a rectangle?
Answer:
The upper left corner of the rectangle.
Question: What is abstraction in programming?
Answer:
Simplifying and separating the details of how something works.
Question: What are some advantages of writing our own functions?
Answer:
Easier problem-solving,
better organization, easier testing/debugging, and reusability.
Question: What will the code that requests an integer from the user do?
Answer:
It determines the
largest number input by the user after five iterations.
Question: True or False
Answer:
Using the Python graphics module, a programmer can draw
text as well as shapes.: True.
Question: What is the expected output of a program that calculates leftover pizza
slices?
Answer: