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

3 votes
3 answers
3581
0 votes
0 answers
3582
0 votes
0 answers
3583
1 votes
1 answer
3584
0 votes
2 answers
3585
After executing the program, I am getting 10 as the answer.Please explain and give the postfix for the expression [ z=x++-y*b/a ].
5 votes
1 answer
3587
Consider the following function:void f(int a) { if(a <= 0) return ; else{ printf("%d ",a); f(a-2); printf("%d ",a); f(a-3); } }The sum of all values printed by f(6) is __...
0 votes
2 answers
3588
What does this mean?int *(*func())[] According to me , it means that its an array of pointers to functions which returns pointers of type int. Am I correct?
0 votes
1 answer
3593
What will be the output of the following program assuming that parameter passing iscall by valueprocedure P{a, b, c}; begin a:=b:=3; b:b+1; c: a+a end; begin main P(a+b, ...
0 votes
1 answer
3594
total possible binary search trees with 3 nodes is:14 15 6 none
1 votes
2 answers
3595
3 votes
2 answers
3596
Find the $C$ statement which has a syntax error.If (z)For (a, b, c)While (a, b)None of these.
1 votes
1 answer
3597
1 votes
1 answer
3598
5 votes
2 answers
3599
Main(){int a [3] ={{{2,4},{7,8},{3,4}},{{2,2},{2,3},{3,4}}};Printf("%u",a);Printf("%u",*a);Printf("%u", a);Printf("%u", *a);Printf("%u",a+1);Printf("%u",*a+1);Printf("%...
2 votes
2 answers
3600
Which of the following data structures would programmer be least likely to use to implement an abstract data type that must include an efficient implementation of the ope...