Which of the following would be a legal function call for the given function definition for drawWords()?
CMU Unit 2 Practice Test

Quiz
•
Computers
•
10th - 12th Grade
•
Medium
Joshua Ottoson
Used 31+ times
FREE Resource
17 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
drawWords(20,'blue)
drawWords(100, 100)
drawWords('blue', 'red')
drawWords('blue',20)
Answer explanation
The first parameter is color and the second parameter is a fontSize. So the order must be color then number. Only drawWords('blue',20) follows this order.
2.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
Which of the following are parameter(s) of the function drawWords() from question 1?
color
fontSize
color and fontSize
None of the above
Answer explanation
Parameters are the name of the variables that receive a value and can be used in the functions code. They are located in between the parenthesis in a function definition. Here, there are two parameters separated by a comma: color, fontSize
3.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
Which of the following are argument(s) of the Label function call inside the drawWords function definition?
r.centerX, r.centerY, and r
color, True, and r
r.value and color
None of the above
Answer explanation
Arguments are the specific values in a function call. Here, it says the function call is to the Label function (line 4). The following are arguments of the Label function call: r.value, r.centerX, r.centerY, fill=color, bold=True, and size=fontSize. Since none of the answer choices had all correct arguments, the answer was none.
4.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
What will be displayed on the screen when we call func()
I pity the
foo
foo I pity the
I pity the foo
Answer explanation
When we call func(), the first line of code in the definition is line 5. This is a function call to foo, so the program jump to line 1 and runs the foo() function. The foo function prints 'I pity the '. Then the program jumps back to line 5 and continues from there. It prints 'foo' on line 6 and is done.
5.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
How many shapes are drawn in the code shown?
4
7
8
12
Answer explanation
Each function call to drawShapes() will draw 4 shapes: a star, a regular polygon, a rectangle, and an oval. Since we call drawShapes() function 3 times on line 8, 9, and 10, a total of 12 shapes will be drawn: 3 stars, 3 regular polygons, 3 rectangles, and 3 ovals.
6.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
Which of the following is not a valid property of rectangles?
right
bottom
translation
fill
Answer explanation
All shapes have the following properties: left, right, top, bottom, centerX, and centerY, width, height, fill, border, borderWidth, opacity, dashes, rotateAngle, visible
7.
MULTIPLE CHOICE QUESTION
2 mins • 1 pt
Both circles in the following image have a red fill. What could be the opacity of the circle on the left?
10
15
30
55
Answer explanation
The circle on the left is more visible, which means that its opacity value is higher. The higher the opacity value, the more visible a shape will be. An opacity of 100 means that the shape is fully visible(normal) and an opacity of 0 means that the shape is not visible.
Create a free account and access millions of resources
Similar Resources on Quizizz
20 questions
function in python

Quiz
•
12th Grade
20 questions
Python Intermediate Quiz (Including pygame)

Quiz
•
3rd - 12th Grade
14 questions
p5.js Week1 PREtest

Quiz
•
7th - 12th Grade
17 questions
Python files and exceptions

Quiz
•
11th Grade
12 questions
Python Definitions

Quiz
•
10th - 12th Grade
12 questions
Basic Linux Commands Part 1

Quiz
•
9th - 12th Grade
20 questions
Python variables, expressions, and data types

Quiz
•
9th - 12th Grade
14 questions
Section 4A: Decompose the code using functions

Quiz
•
12th Grade
Popular Resources on Quizizz
15 questions
Character Analysis

Quiz
•
4th Grade
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
10 questions
American Flag

Quiz
•
1st - 2nd Grade
20 questions
Reading Comprehension

Quiz
•
5th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
18 questions
Full S.T.E.A.M. Ahead Summer Academy Pre-Test 24-25

Quiz
•
5th Grade
14 questions
Misplaced and Dangling Modifiers

Quiz
•
6th - 8th Grade
Discover more resources for Computers
17 questions
Chapter 12 - Doing the Right Thing

Quiz
•
9th - 12th Grade
30 questions
Linear Inequalities

Quiz
•
9th - 12th Grade
20 questions
Types of Credit

Quiz
•
9th - 12th Grade
20 questions
Taxes

Quiz
•
9th - 12th Grade
17 questions
Parts of Speech

Quiz
•
7th - 12th Grade
20 questions
Chapter 3 - Making a Good Impression

Quiz
•
9th - 12th Grade
20 questions
Inequalities Graphing

Quiz
•
9th - 12th Grade
10 questions
Identifying equations

Quiz
•
KG - University