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

Highest voted questions in Programming

0 votes
0 answers
3541
class Value { public static void main(String [] s ) { int i = 255;byte b=(byte)i ;char c = (char)b;System.out.println("int value of char : " + (int) c);} }
0 votes
1 answer
3543
What is the difference between the following shift operators : A) >> operatorB) > operatorC) << operator
0 votes
0 answers
3545
Which of the following methods need to be overridden if equals method is overriden? (A) hashCode method(B) toString method(C) compareTo method(D) equal methodcorrect answ...
0 votes
1 answer
3546
what is the difference between a bit wise operator and a short circuit operator?
0 votes
1 answer
3549
What element will be in root of B+ Tree after inserting (1,4,7,10,17,21,31,25,19,20). Assume branching factor is 4
0 votes
2 answers
3550
0 votes
1 answer
3555
0 votes
1 answer
3557
main ( ){ int a = 2, b, c; a* = b = c = 4; a = b = c;printf (“%d”, a);a = = (b = c);printf (“%d”, a);} What will be the output?(a) 1, 4 ...
0 votes
0 answers
3559
0 votes
1 answer
3560
If we delete a record to which another record contains a pointer, then that pointer is called aPinned pointerDangling pointerPointless pointerNone of the above