Webpage

Programming in C. Recursion.

$$\scriptsize{\overset{{\large{\textbf{Mark Distribution in Previous GATE}}}}{\begin{array}{|c|c|c|c|c|c|c|c|}\hline
\textbf{Year} & \textbf{2022}&\textbf{2021-1}&\textbf{2021-2}&\textbf{2020}&\textbf{2019}&\textbf{2018}&\textbf{2017-1}&\textbf{2017-2}&\textbf{2016-1}&\textbf{2016-2}&\textbf{Minimum}&\textbf{Average}&\textbf{Maximum}
\\\hline\textbf{1 Mark Count} & 1 &0&2&1&2&2&1&2&2&1&0&1.4&2
\\\hline\textbf{2 Marks Count} & 2&2&2&1&3&3&4&4&2&2&1&2.5&4
\\\hline\textbf{Total Marks} & 5&4&6&3&8&8&9&10&6&5&\bf{4}&\bf{6.4}&\bf{10}\\\hline
\end{array}}}$$

Recent questions in Programming

0 votes
1 answer
3331
Suppose we have a circular array implementation of a queue, with 9 items in the queue stored at data[7] through data[15]. The CAPACITY is 19. Where does the push member f...
0 votes
1 answer
3332
Which of the following data structured is most efficient in terms of both space and time to reverse a string of characters?Linked listStackArrayTree
0 votes
1 answer
3333
void main( ) { int a=3,b=1; if( b>a, a>b) printf(“%d”, b); else printf(“%d”, a++); }"Two things are infinite: the universe and human stupidity; an...
0 votes
1 answer
3334
void main( ) { int a=0,b=2; if(a++, b , b) printf(“%d %d”, a, b); else printf(“%d %d”, b, a); }"In the middle of difficulty lies opportunity."
13 votes
8 answers
3335
If n has 3, then the statement a[++n]=n++;assigns 3 to a[5]assigns 4 to a[5]assigns 4 to a[4]what is assigned is compiler dependent
0 votes
3 answers
3336
0 votes
1 answer
3337
can anyone convert into c code i am not familiar with fortran
2 votes
2 answers
3338
In C, what is the effect of a negative number in a field width specifier?the values are displayed right justifiedthe values are displayed centeredthe values are displayed...
0 votes
1 answer
3340
Which of the following is not collision Resolution TechniqueHash addressingChainingIndexingNone of these
1 votes
1 answer
3341
int main() { char boolean[][6]={"TRUE","FALSE"}; printf("%s",boolean[(unsigned int)-1 == ~0]); }
5 votes
4 answers
3342
Which of the following programming language(s) provides garbage collection automaticallyLispC++FortanC
8 votes
3 answers
3343
Consider the following pseudo-codex:=1; i:=1; while (x <= 1000) begin x:=2^x; i:=i+1; end;What is the value of i at the end of the pseudo-code?4567
3 votes
2 answers
3344
When a function is recursively called, all automatic variables :are initialized during each execution of the functionare retained from the last executionare maintained in...
0 votes
1 answer
3345
Which one of the following is a physical data structure ?ArrayLinked listsStacksTables
1 votes
1 answer
3346
What would be the output of the following program, if run from the command line as “myprog 1 2 3” ?main (int argc, char * argv[ ]) { int i ; i = argv + argv + argv[...
0 votes
4 answers
3347
0 votes
1 answer
3348
void main( ){ int i='4'; switch(4){ case 4: printf(&ldquo;4&rdquo;); break; case -4: printf(&ldquo;-4&rdquo;); break; case default : printf(&ldquo;D&rdquo;); } }1) 4 ...
0 votes
2 answers
3349
Object code is the output of ______.Operating SystemCompiler or Assembleronly Assembleronly Compiler
2 votes
2 answers
3350
#include<stdio.h int main(){ int a; if(a=printf("hello")) printf("gatecse%d",a); }