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}}}$$

Hot questions in Programming

0 votes
1 answer
122
7. Asymptotically speaking, which is the best method to search (linear or binary), if the first half of the array is sorted and the rest is not? Why?
0 votes
0 answers
124
Please solve I am unable to understand the solution given by made easy
0 votes
0 answers
125
What value would the following function return for the input x = 95 ? function fun (x:integer): integer; BeginIf x 100 then fun = x - 10Else fun = fun(fun(x + 11))End;(A...
3 votes
5 answers
126
Why is the output of the below program 36? int main(){ int a = 1; int b = ++a * ++a * ++a; printf("%d", b ); ​​​​ return 0; }
5 votes
2 answers
127
What will be the output of the following code? _______ #include <stdio.h int main(){ char val=250; int ans; ans= val+ !val + ~val + ++val; printf("%d", ans); return 0; }
2 votes
1 answer
131
When it comes to Gate Data Science and AI, what language will the DSA questions be asked in - Python or C language?
2 votes
2 answers
133
include <stdio.h int main() { int a[][3] = {1, 2, 3, 4, 5, 6}; int (*ptr)[3] = a; printf("%d %d ", (*ptr) , (*ptr) ); ++ptr; printf("%d %d\n", (*ptr) , (*ptr) ); return 0...
1 votes
1 answer
134
How is the address written for 3-dimensional arrays?In some answers, I saw (row, column, frame) and in others, it was (frame, row, column) Which one to follow??Also, how ...
2 votes
1 answer
135
0 votes
2 answers
136
#include <stdio.h int main(){ int a[] = {5,3,7,2,4}; int *p = &a[3]; p -= *p; printf("%d ",*p); return 0; } output is 3.Why 2 * sizeof(int) is doene.?
0 votes
2 answers
139
The Total Combinations Possible of Min heap with 8 Distinct elements are ?
2 votes
1 answer
140