C program code int zap(int n) { if(n<=1)then zap=1; else zap=zap(n-3)+zap(n-1); } then the call zap(6) gives the values of zap [a] 8 [b] 9 [c] 6 [d] 12 [e] 15
6 24276Virtual memory size depends on [a] address lines [b] data bus [c] disc space [d] a & c [e] none
15 36167What is false about the following A compound statement is a.A set of simple statments b.Demarcated on either side by curly brackets c.Can be used in place of simple statement d.A C function is not a compound statement.
5 22211What is true about the following C Functions a.Need not return any value b.Should always return an integer c.Should always return a float d.Should always return more than one value.
11 27616Main must be written as a.the first function in the program b.Second function in the program c.Last function in the program d.any where in the program
19 35391Which of the following about automatic variables within a function is correct ? a.its type must be declared before using the variable b.they are local c.they are not initialised to zero d.they are global.
6 21242Write one statement equalent to the following two statements x=sqr(a); return(x); Choose from one of the alternatives a.return(sqr(a)); b.printf("sqr(a)"); c.return(a*a*a); d.printf("%d",sqr(a));
6 12835Which of the following about the C comments is incorrect ? a.commentscan go over multiple lines b.comments can start any where in the line c.a line can contain comments with out any language statements d.comments can occur within comments
6 16264Which of the following is not an infinite loop ? a.while(1){ .... } b.for(;;){ ... } c.x=0; do{ /*x unaltered within theloop*/ ... }while(x==0); d.# define TRUE 0 ... while(TRUE){ .... }
7 26521what does the following function print? func(int i) { if(i%2)return 0; eale return 1; } main() { int =3; i=func(i); i=func(i); printf("%d",i);}
9 21999how does the C compiler interpret the following two statements p=p+x; q=q+y; a.p=p+x; q=q+y b.p=p+xq=q+y c.p=p+xq; q=q+y d.p=p+x/q=q+y
4 21162read the folllowing code
# define MAX 100
# define MIN 100
....
....
if(x>MAX)
x=1;
else if(x
Post New TCS Interview Questions
Why is kyc important?
Explain how do ‘map’ and ‘reduce’ works?
What are sets?
Do you know what is difference between stored procedure and user defined function?
What is an abstract class in php?
How do you clear contents of excel and not lose formula?
Explain the difference between upstream and downstream in a refinery?
Explain what are the default methods provided by decorators?
3x3x2.5 m room temperature increases by 20 deg cel in 24 hours by a lamp of 100 w. then tell the temperature of the filament
What is group mode in excel?
Is NITI Aayog a constitutional body?
Where is mangenese steel used?
Why is transformation lazy operation in Apache Spark RDD? How is it useful?
What do you understand by the terminology robotic automation?
Is there any difference between primary key and unique with the not null condition?