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

0 votes
1 answer
2522
Consider the following C program. What's the Output and does it depends on the compiler used to run this code?#include<stdio.h int main() { int i = 1; printf("%d %d %d\n"...
0 votes
3 answers
2523
Ans is C can anybody justify why compilation error
1 votes
1 answer
2524
How the output of the given code is-How are the binary bits flipping?
0 votes
2 answers
2526
2 votes
3 answers
2527
char *c[] = {"GeksQuiz", "MCQ", "TEST", "QUIZ"}; char cp[] = {c+3, c+2, c+1, c}; char *cpp = cp; int main() { printf("%s ", ++cpp); printf("%s ", * *++cpp+3); printf("...
0 votes
1 answer
2528
char *a,*b,c[10],d[10];a=b;b=c;c=d;d=a;choose the correct statements having errorsa)no errorb)a=b; and b=c;c=d; and d=a;d)a=b; and d=a;
0 votes
1 answer
2530
main(){ static int x[] ={1,2,3,4,5,6,7,8};int i;for(i=2;i<6;++i)x[x[i]]=x[i];for(i=0;i<8;++i)printf("%d",x[i]);}
0 votes
1 answer
2532
static char{}="NO SUBSTITUTE FOR HARD WORK";Printf("%10.5s", wer);Outputsa) NO SUB) NO SUBSTITC) UTE F
0 votes
1 answer
2533
If y is of integer type then the below expression 3*(y-8) / 9 and (y-8) / 9*3 a) must yield different valueB)Must yield same valuec) may or may not yield same valueD) non...
1 votes
1 answer
2534
The "go to statement" causes control to go to(a) An operator(b) A label(c) A variable(d) A function
0 votes
2 answers
2535
The library function exit ( ) causes as exit from (a) the loop in which it occurs(b) the block is which it occurs(c) the functions in which it occurs(d) the progam in whi...
0 votes
1 answer
2536
A program having features such as data abstraction, encapsulation and data hiding, polymorphism inheritance is called(a) Structured program(b) Object oriented program(c) ...
0 votes
1 answer
2537
0 votes
1 answer
2538
0 votes
0 answers
2539