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{2024-1}&\textbf{2024-2}&\textbf{2023}& \textbf{2022}&\textbf{2021-1}&\textbf{2021-2}&\textbf{Minimum}&\textbf{Average}&\textbf{Maximum}
\\\hline\textbf{1 Mark Count} & 2&2&1&1 &0&2&0&1.33&2
\\\hline\textbf{2 Marks Count} &1&1&0& 2&2&2&0&1.33&2
\\\hline\textbf{Total Marks} &4&4&1& 5&4&6&\bf{1}&\bf{4}&\bf{6}\\\hline
\end{array}}}$$

Most answered questions in Programming

0 votes
1 answer
1081
S1 : An insertion in an AVL with n nodes requires O(n) rotations.answer is false in answer key,but is guess for 1 insetion its O(1).so for n it will be O(n).tell me if i ...
1 votes
1 answer
1082
#include <stdio.h int main() {int i,j,x;scanf("%d ",x);i=1;j=1;while(i<10){j=j*i;i=i+1;if(i==x) break;}return 0;}
0 votes
1 answer
1083
is it ok to mark both and at least option in the case of MSQ, on my view in this question first option will always be true so marking the second is correct?
3 votes
1 answer
1084
0 votes
1 answer
1085
how many topological sort possible for above graph?directions like this question https://gateoverflow.in/39669/gate-cse-2016-set-1-question-11
0 votes
1 answer
1088
0 votes
1 answer
1089
0 votes
1 answer
1092
Why nothing is printed for %c.
1 votes
1 answer
1093
int fun(int arr[]); int fun(int arr ); Both the statements are same??? HELP
0 votes
1 answer
1094
What should be the answer?
0 votes
1 answer
1095
can anyone explain how the for loop works here..?
0 votes
1 answer
1097
What will happen if we dereference a dangling pointer?will it lead to a segmentation fault(core dumped) or an invalid pointer error?
0 votes
1 answer
1098
1 votes
1 answer
1099
An object whose contents cannot be changed once the object is created is called:(a) Immutable object(b) Mutable object(c) Smart object(d) Rich object
0 votes
1 answer
1100
i have typed the following code but when i executed it the solution was not according to my expectation.unsigned short int y= -9; int iy=y; printf(“%d”,iy); solutio...