Topic 4 - Recursive

Topic 4 - Recursive

University

10 Qs

quiz-placeholder

Similar activities

Enumeration and Recursion

Enumeration and Recursion

11th Grade - University

12 Qs

Latihan Rekursif

Latihan Rekursif

University

12 Qs

PROGRAMMING IN PYTHON - UNIT II - TEST 2 - MCQS

PROGRAMMING IN PYTHON - UNIT II - TEST 2 - MCQS

University

15 Qs

Advanced Database Systems - Prelim Quiz

Advanced Database Systems - Prelim Quiz

University

15 Qs

C# chapter 1

C# chapter 1

University

10 Qs

Algorithm Complexity Final Exam

Algorithm Complexity Final Exam

University

15 Qs

Common errors in C programming

Common errors in C programming

University

15 Qs

AdvancedProgramming_intro

AdvancedProgramming_intro

University

10 Qs

Topic 4 - Recursive

Topic 4 - Recursive

Assessment

Quiz

Computers

University

Medium

Created by

najihah ibrahim

Used 1+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following best defines recursion?

A function that calls itself

A loop within a function

A function that runs indefinitely

A function that only executes once

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the base case in a recursive function?

The case where the function does not call itself

The largest problem the function can handle

The part of the function that runs first

The part of the function that initializes variables

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is a necessary condition for a recursive function to terminate?

Infinite loops

An iteration statement

A global variable

A base case

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of factorial(3)?

1

3

6

9

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What will happen if the base case is missing in a recursive function?

The function will return immediately

The function will result in an infinite loop

The function will cause a compile-time error

The function will execute only once

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following problems is most suitable for a recursive solution?

Sorting a list

Searching for an element in an unsorted list

Calculating the factorial of a number

Adding elements in an array

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

What is the output of sum(4)?

4

6

10

15

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?