Python Review Module 14 - Recursion
Quiz
•
Science, Other
•
University
•
Practice Problem
•
Hard
Karen Diggs
Used 35+ times
FREE Resource
Enhance your content in a minute
10 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
If the base condition is not defined in the recursive function, _____.
the program runs only once
the program runs as many times as the number passed as its argument
the program terminates giving an error
the program gets into an infinite loop
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is output?
def divide_by_two(count):
if count == 1:
print('Terminated..!')
else:
print(count)
divide_by_two(count/2)
divide_by_two(9)
9
4.5
2.25
1.125
Terminated..!
9
4.5
2.25
Terminated..!
Infinite loop
9
4.5
2.25
1.125
0.5625
Terminated..!
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Assume that there is a recursive binary search function find(). If a sorted list has a data structure with indices 0 to 50 and the item being searched for happens to be at location 6, write each call of find() that would occur while searching for that item. The first is find(0,50).
find(0, 25) find(0, 12) find(0, 6)
find(0, 25) find(0, 12)
find(0, 25)
find(0, 25) find(0, 12) find(0, 6) find(0, 3)
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Which is the best way to debug recursive functions?
Adding print statement of what that line of code does.
Adding output statements by keeping all the statements left aligned
Adding output statements with an indent to print statements at every iteration.
Adding output statements by keeping all the statements equally indented
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
While adding output statements to debug recursive functions, _____ the print statements to show the current depth of recursion.
left align
indent
right align
center align
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
An indent variable _____ number of spaces on each iteration.
adds unequal
removes unequal
removes equal
adds equal
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
What is the role of sys.getrecursionlimit()?
It measures the maximum depth of the function.
It changes the depth of the function.
It isolates the defined function
It finds the error of the function.
Create a free account and access millions of resources
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Classlink

Continue with Clever
or continue with

Microsoft
%20(1).png)
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?
Similar Resources on Wayground
10 questions
Conhecimentos prévios em Lógica
Quiz
•
University
10 questions
Innovative teaching Strategies
Quiz
•
University
13 questions
rubiks cube quiz
Quiz
•
KG - Professional Dev...
10 questions
Basic Nutrition
Quiz
•
University
10 questions
Trắc nghiệm vui: Ô nhiễm không khí
Quiz
•
KG - Professional Dev...
10 questions
RAPAT TELECONFERENCE
Quiz
•
12th Grade - University
12 questions
ECG
Quiz
•
University - Professi...
10 questions
Clare and Barry's TV Soap Quiz
Quiz
•
KG - Professional Dev...
Popular Resources on Wayground
20 questions
Halloween Trivia
Quiz
•
6th - 8th Grade
25 questions
Multiplication Facts
Quiz
•
5th Grade
15 questions
Order of Operations
Quiz
•
5th Grade
20 questions
Halloween
Quiz
•
5th Grade
16 questions
Halloween
Quiz
•
3rd Grade
12 questions
It's The Great Pumpkin Charlie Brown
Quiz
•
1st - 5th Grade
20 questions
Possessive Nouns
Quiz
•
5th Grade
10 questions
Halloween Traditions and Origins
Interactive video
•
5th - 10th Grade
Discover more resources for Science
10 questions
Halloween Movies Trivia
Quiz
•
5th Grade - University
12 questions
Halloween
Quiz
•
3rd Grade - University
5 questions
Using Context Clues
Interactive video
•
4th Grade - University
20 questions
Definite and Indefinite Articles in Spanish (Avancemos)
Quiz
•
8th Grade - University
7 questions
Force and Motion
Interactive video
•
4th Grade - University
14 questions
Eat Healthy,Be Healty
Quiz
•
4th Grade - University
7 questions
History of Halloween: Pagan or Christian?
Interactive video
•
11th Grade - University
7 questions
Renewable and Nonrenewable Resources
Interactive video
•
4th Grade - University
