Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

What is the mistake in the second alert statement in the code? function func 1 ( n ) { if ( n = = 0

What is the mistake in the second alert statement in the code?
function func1(n)
{
if (n==0)
return 0;
else
return (n+func1(n-1);
}
function func2(n, result)
{
if (n==0)
return result;
else
return (n+func2(n-1, n+result));
}
alert ("output of func2(4,0) is "+ func2(4,0));
alert ("output of func1 is "+ func1(4,0)) ;
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Introduction To Database And Knowledge Base Systems

Authors: S Krishna

1st Edition

9810206208, 978-9810206208

More Books

Students also viewed these Databases questions

Question

What questions should Anna ask of Jessica?

Answered: 1 week ago

Question

why we face Listening Challenges?

Answered: 1 week ago

Question

what is Listening in Context?

Answered: 1 week ago