| preferred AP College board partner for AP classes
AP Computer Science A/Unit 5: Writing Classes
Start Practice TestPractice Test
About Exam
hard
Recursive Method Time Complexity
< Prev
Next >

Given the recursive method ‘recursiveExponent’, what is its time complexity in Big-O notation?

public class ExponentialRecursion {
    public void recursiveExponent(int n) {
        if(n <= 1) return;
        recursiveExponent(n/2);
        recursiveExponent(n/2);
    }
}
A

O(n)

B

O(n^2)

C

O(log n)

D

O(n log n)

Hint
Did You Know?
Explain Why
Explain All Answers
Check Answer
Show Correct Answer
Report Question

Question Leaderboard

Not enough data yet to show leaderboard.

No comments yet. Be the first to comment!

AI Tutor

How can I help?

APFIVE © 2020.
Email: [email protected]|Privacy Policy