Topic 4 - Recursive

Topic 4 - Recursive

University

10 Qs

quiz-placeholder

Similar activities

CS201: Chapter 6

CS201: Chapter 6

University

13 Qs

AP CSA Recursion

AP CSA Recursion

10th Grade - University

10 Qs

AP Computer Science A Recursive

AP Computer Science A Recursive

10th Grade - University

10 Qs

DAA_C_MCQ - 1

DAA_C_MCQ - 1

University

12 Qs

Quiz3_DivideConquer_GreedyApproach

Quiz3_DivideConquer_GreedyApproach

University

10 Qs

Quiz3_DataStruct

Quiz3_DataStruct

University

10 Qs

Recursion Initiation

Recursion Initiation

11th Grade - Professional Development

10 Qs

Q3 - Comp Vision

Q3 - Comp Vision

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?