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

2 votes
0 answers
1561
3 votes
0 answers
1562
#include<stdio.h extern int i; int main() { printf( "%d" , i); } int i;What will be the order of execution of this code (line by line)?
2 votes
2 answers
1563
extern int i; int i = 10; i = 5; int main() { printf("%d", i); return 0; }The output for the above code is _______
6 votes
3 answers
1564
39 ) Suppose a multidimensional array is declared as m(2:8,-4:1,6:10). If the base address is 200 and there are 4 words per memory location, then the address of A[5,-1,8]...
2 votes
0 answers
1566
1 votes
0 answers
1568
2 votes
0 answers
1569
1 votes
1 answer
1570
1 votes
0 answers
1571
Local static variables are stored in stack segment or data segment?
1 votes
0 answers
1572
What is the term Binding Used in as as execution phase of a code segment...?
2 votes
0 answers
1573
2 votes
0 answers
1576
# include <stdio.h>int main(){ char *s1 = "1234", *p; p = s1 + 2; //*p = '0'; printf("%d", *p); } The above code prints 51, any idea why?
2 votes
0 answers
1577
5 votes
1 answer
1578
A balanced binary search tree of n nodes,the number of steps needed to find and remove the 9th largest element in the worst case?(Please mention the algorithm followed)
1 votes
1 answer
1579
2 votes
2 answers
1580
the number of inversions in (n,n-1,.........3,2,1)is n(n-1)/2how??????????????????/