
Python Objects and Recursion
Authored by turgut kalfaoglu
Computers
10th Grade
Used 2+ times

AI Actions
Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...
Content View
Student View
14 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What is recursion in Python?
Answer explanation
Recursion is a programming technique where a function calls itself to solve a problem.
2.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Which of the following is a base case in recursion?
Answer explanation
The base case is a condition that stops the recursive calls and prevents infinite recursion.
3.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What is the output of the following recursive function?
def factorial(n):
if n == 1: return 1
else: return n * factorial(n-1)
print(factorial(5))
Answer explanation
The factorial of 5 is 120, calculated as 5 * 4 * 3 * 2 * 1.
4.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What is the main purpose of a class in Python?
Answer explanation
A class is a blueprint for creating objects, which are instances of the class.
5.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
Which keyword is used to create a class in Python?
Answer explanation
The `class` keyword is used to define a class in Python.
6.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What is an instance of a class?
Answer explanation
An instance is an object created from a class, using the class as a blueprint.
7.
MULTIPLE CHOICE QUESTION
45 sec • 1 pt
What is the purpose of the `__init__` method in a class?
Answer explanation
The `__init__` method is used to initialize the attributes of an object when it is created.
Access all questions and much more by creating a free account
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
Already have an account?