CBSE 2026 results are out, Mukul scored a perfect 100/100 in Computer ScienceSee all toppers →

KwickClips Java · 45 sec · free

What is the base case of GCD?

Short answer. When b becomes 0, the answer is a.

Why is recursive Fibonacci slow?

Each call makes two more calls.

Base and recursive

ProgramBaseRecursive
fact(n)n<=1: 1n*fact(n-1)
fib(n)n<=1: nf(n-1)+f(n-2)
gcd(a,b)b==0: agcd(b,a%b)
pow(b,e)e==0: 1b*pow(b,e-1)

Remember

Find the base case first
Then shrink the input

Four recursion programs exams love. Know them? Here are all four. Factorial stops at one. Fibonacci, f here, adds two calls. GCD stops when b is zero. Power stops at exponent zero. Remember. Find the base case. Then shrink the input.

This clip is from the full lesson: Recursion in Java — 8 minutes, with the tables, the quick answers and the whole lesson in text.

Useful for: ISC Class 11 Computer Science (868), ISC Class 12 Computer Science (868), ISC Class 12 Computer Science (868), Programming All levels Java

More KwickClips from this lesson

Voice-over is AI-generated; the script is written and checked by Kajal Ma'am. Confirm anything you plan around against your official board document. We never ask for a password or an OTP.

Want a plan that actually fits your board dates?

Ask Kajal Ma'am directly, 20+ years teaching computer science. Free demo class first, no payment.

Talk to Kajal Ma'am on WhatsApp

Or see the Class 12 Computer Science course →

Studying outside India?

We coach CBSE, IGCSE & international students across the globe, one-to-one, in your local time zone.

Visit International →