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

5 votes
2 answers
121
0 votes
0 answers
125
0 votes
1 answer
126
Why nothing is printed for %c.
2 votes
3 answers
127
0 votes
0 answers
128
1 votes
1 answer
129
int fun(int arr[]); int fun(int arr ); Both the statements are same??? HELP
0 votes
1 answer
130
What should be the answer?
0 votes
1 answer
131
can anyone explain how the for loop works here..?
2 votes
0 answers
132
0 votes
1 answer
136
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
0 answers
137
What will be the return value of the below function, if it is called a sample(4)? int sample(int x){ if( x == 0 || x ==2) return 1; return (sample( x) * (x ));}
1 votes
2 answers
138
find the output of following programmain(){ extern int a; a=5; printf("%d",a);}
1 votes
2 answers
139
what if a full binary tree contains both left and right sides as the max heap, then what will be the complexity of making it a proper max heap?