Unit 3 - Practice Quiz

INT108 50 Questions
0 Correct 0 Wrong 50 Left
0/50

1 Which keyword is used to define a function in Python?

A. function
B. define
C. def
D. func

2 What is the correct syntax to define a function named 'my_func'?

A. def my_func():
B. function my_func():
C. create my_func():
D. def my_func[]:

3 What happens when a function is called without a return statement?

A. It throws an error
B. It returns False
C. It returns None
D. It returns 0

4 What is the output of: int(3.99)?

A. 4
B. Error
C. 3
D. 3.99

5 The process of automatically converting one data type to another is known as?

A. Type Definition
B. Type Casting
C. Type Check
D. Type Coercion

6 Which standard library module contains mathematical functions like sin, cos, and sqrt?

A. sys
B. mathematics
C. math
D. calc

7 What is the result of type(3 + 2.0)?

A. <class 'number'>
B. <class 'int'>
C. <class 'float'>
D. <class 'str'>

8 In a function definition def func(a, b):, what are a and b called?

A. Arguments
B. Parameters
C. Literals
D. Operators

9 When calling func(10, 20), what are 10 and 20 called?

A. Arguments
B. Variables
C. Parameters
D. Keywords

10 What does the math.ceil(4.2) function return?

A. 4
B. 4.0
C. 5
D. 4.2

11 What does the math.floor(4.9) function return?

A. 5
B. 5.0
C. 4.9
D. 4

12 What is a base case in recursion?

A. The most complex version of the problem
B. The import statement
C. The condition that stops the recursion
D. The first line of the function

13 What error occurs if a recursive function has no base case?

A. TypeError
B. ValueError
C. SyntaxError
D. RecursionError

14 Which of the following allows a function to accept an arbitrary number of positional arguments?

A. args[]
B. *args
C. **kwargs
D. *params

15 Which of the following allows a function to accept an arbitrary number of keyword arguments?

A. *args
B. kwargs{}
C. &kwargs
D. **kwargs

16 What is the output of str(10) + str(10)?

A. 1010
B. 20
C. 10 + 10
D. Error

17 What is the scope of a variable defined inside a function?

A. Global
B. Local
C. Static
D. Universal

18 How do you define a global variable inside a function?

A. It is not possible
B. Using the extern keyword
C. Declaring it in uppercase
D. Using the global keyword

19 Which function is used to calculate x to the power of y in the math module?

A. math.power(x, y)
B. math.exp(x, y)
C. math.sqr(x, y)
D. math.pow(x, y)

20 What is the output of abs(-7.5)?

A. 7.5
B. 8
C. -7.5
D. 7

21 Consider def f(x=10): return x. What is the result of f(5)?

A. Error
B. 15
C. 5
D. 10

22 Consider def f(x=10): return x. What is the result of f()?

A. 10
B. 5
C. None
D. Error

23 What does math.sqrt(16) return?

A. 4.0
B. 4
C. 16
D. 256

24 Which term describes passing arguments by name, like func(name='John')?

A. Positional arguments
B. Default arguments
C. Variable arguments
D. Keyword arguments

25 What is the purpose of the return keyword?

A. To print a value to the console
B. To exit the function and pass back a value
C. To define a parameter
D. To repeat the function

26 What is explicit type conversion?

A. Converting string to list
B. Defining a function
C. Automatic conversion by the interpreter
D. Conversion done manually by the programmer using functions like int()

27 Recursive functions must move towards the base case to avoid:

A. Compiler errors
B. Memory leaks
C. Infinite recursion
D. Syntax errors

28 Which mathematical constant is available as math.pi?

A. 1.618...
B. 1.414...
C. 2.71828...
D. 3.14159...

29 What is the output of bool(0)?

A. True
B. 0
C. None
D. False

30 What is the output of bool(5)?

A. 5
B. None
C. True
D. False

31 Which statement correctly calls a function named calculate with argument 5?

A. def calculate(5)
B. calculate[5]
C. call calculate(5)
D. calculate(5)

32 Can a Python function return multiple values?

A. Yes, as a string only
B. No, only one value
C. Yes, as a tuple
D. No, it causes an error

33 What is a 'docstring' in a function?

A. A string passed as an argument
B. A string variable defined inside the function
C. Documentation string appearing as the first statement in a function
D. An error message string

34 What is the factorial of 0 (math.factorial(0))?

A. undefined
B. 1
C. 0
D. Error

35 What is Indirect Recursion?

A. A function loop
B. Recursion without a return statement
C. Function A calls Function B, and Function B calls Function A
D. Function A calls Function A

36 What will float(5) return?

A. Integer 5
B. 5
C. Error
D. 5.0

37 Which of the following creates an anonymous function?

A. func
B. def
C. lambda
D. anon

38 In the expression x = y = z = 0, what is the value of x?

A. Error
B. Undefined
C. None
D. 0

39 What is the correct way to import only the sqrt function from the math module?

A. import math.sqrt
B. from math import sqrt
C. using math.sqrt
D. include math.sqrt

40 If a function definition uses *args, what is the data type of args inside the function?

A. Set
B. Tuple
C. List
D. Dictionary

41 If a function definition uses **kwargs, what is the data type of kwargs inside the function?

A. Set
B. Dictionary
C. Tuple
D. List

42 Which built-in function returns the length of a list or string?

A. length()
B. count()
C. len()
D. size()

43 What is the result of int('101', 2)?

A. 5
B. 101
C. 2
D. Error

44 What is the major disadvantage of using recursion over iteration?

A. Recursion is harder to write
B. Recursion cannot solve math problems
C. Recursion is always slower
D. Recursion uses more memory (stack space)

45 What is the output of: def func(a, b=5, c=10): return a + b + c followed by func(1, 2)?

A. Error
B. 3
C. 13
D. 8

46 Can positional arguments follow keyword arguments in a function call?

A. Yes
B. Only in recursive functions
C. No
D. Only if they are integers

47 Which function converts a character to its ASCII/Unicode integer value?

A. asc()
B. chr()
C. int()
D. ord()

48 Which function converts an integer ASCII/Unicode value to a character?

A. ord()
B. str()
C. char()
D. chr()

49 What is the default recursion limit in Python usually set to?

A. Unlimited
B. 1000
C. 10000
D. 100

50 What is the value of math.fmod(10, 3)?

A. 1
B. 1.0
C. 3
D. 0