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
2581
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
2583
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
2585
static char{}="NO SUBSTITUTE FOR HARD WORK";Printf("%10.5s", wer);Outputsa) NO SUB) NO SUBSTITC) UTE F
0 votes
1 answer
2586
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
2587
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
2588
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
2589
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
2590
0 votes
1 answer
2591
0 votes
0 answers
2592
2 votes
2 answers
2596
let x be an array of integer . which of the following can not be present in the left hand side of an assignment statementa)x b) x+i c) * (x+i) d) &x[i]
2 votes
3 answers
2597
main() {static char a[3][4] = { "abcd", "efgh", "ijkl"};putchar( a); } a) compilation error b) run time errorc)garbage d) none of these
0 votes
2 answers
2598
3 votes
1 answer
2599
Let x be an array . which of the following operations are illegal and whya) ++x b) x+1 c) x++ d) x - -
0 votes
2 answers
2600
#include <stdio.h int total(int v) { static int count=0; while(v){ count+=v&1; v>>=1; } return count; } void main() { // your code goes here static int x=0; int i=5; for(...