Alternate assignment: Unit 7 test

Alternate assignment: Unit 7 test

8th Grade

20 Qs

quiz-placeholder

Similar activities

Reverse Python quiz

Reverse Python quiz

8th - 9th Grade

20 Qs

Arduino IDE

Arduino IDE

3rd Grade - Professional Development

17 Qs

RWMS Coding Basics Semester Exam Review

RWMS Coding Basics Semester Exam Review

7th - 8th Grade

20 Qs

Python basics yr7

Python basics yr7

6th - 9th Grade

20 Qs

1.2.3 - Introduction to programming

1.2.3 - Introduction to programming

3rd - 9th Grade

15 Qs

Season 1 #Spaic Python Weekly Quiz

Season 1 #Spaic Python Weekly Quiz

KG - Professional Development

20 Qs

Unpuzzled ASCII

Unpuzzled ASCII

7th - 12th Grade

15 Qs

8.4 Micro Python Recap

8.4 Micro Python Recap

7th - 8th Grade

16 Qs

Alternate assignment: Unit 7 test

Alternate assignment: Unit 7 test

Assessment

Quiz

Computers

8th Grade

Medium

Created by

CRYSTAL DEMOURA

Used 2+ times

FREE Resource

20 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Which of the following is NOT a reason we use subprograms (functions)?

For code that will be reused

To test for true and false relationships

To simplify code

To help us organize longer programs

2.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Which of the following parameters is optional?

sample (a, b, c, d = 121)

a

d

c

b

3.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Consider the following subprogram: def mult(a, b = 1, c = 1): print(a * b * c) What is output by: print(mult(3, -10))

0

31

-30

30

4.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

We call the central part of the program the __________ program.

main

def

sub

return

5.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Which of the following is NOT a subprogram?

random

print

input

randint

6.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Consider the following code:

def tryIt (an):

val = an * 2

c = 0

if (val < 0):

c = 1

return c

Which variable is the parameter?

val

c

an

0

Answer explanation

an - The parameter is the variable passed into the function in the parentheses when it is originally defined.

7.

MULTIPLE CHOICE QUESTION

3 mins • 1 pt

Subprograms go __________ the main program.

outside

after

inside

above

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?