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

Hot questions in Programming

0 votes
0 answers
1383
0 votes
0 answers
1384
int main(){int k = 10;printf("%d%d%d%d%d%d",k++,++k,k++,++k,k++,k);return 0 ;}STEPWISE SOLUTION IS REQUIRED
0 votes
0 answers
1385
How many real links are required to store an sparse matrix of 10 row 10 coloumns and 15 non zero entries...??
1 votes
0 answers
1386
Output will be-int main(){ int a =0,b=1,c=3:*((a)?&b&:&a)=a ? b : c;printf("%d %d%d ", a,b,c);}
0 votes
1 answer
1387
1 votes
0 answers
1388
0 votes
2 answers
1389
Choose the correct remarks. A) C++ allows any operator to be overloaded. B) Some of the existing operators cannot be overloaded.C) Operator precedence cannot b...
3 votes
1 answer
1390
The average search time of hashing, with linear probing will be less if the load factorA. is far less than oneB. equals oneC. is far greater than oneD. none of the above
0 votes
0 answers
1391
int main() { int a[10]; printf("%d",*a+1-*a+3); return 0; }Answer is given as 4 but i think it should be 8, if int is of 4 byte. Correct me if i am wrong
1 votes
3 answers
1392
main(){int i, x=5, y=10;for(i=1;i<=2;i++){y+=f(x) + g(x);printf("%d", y);}}f(int x){int y;y=g(x);return (x+y);}g(int x){static int y=5;y=y+7;return (x+y);} Kindly explain...
0 votes
1 answer
1394
#include <stdio.h>int main(){ char *c[]={"abhi","abhishek","abhisheksing"}; printf("%s",c [7]); return 0;}What is the output?
0 votes
0 answers
1395
Something wrong with the code or is it working fine ?
0 votes
0 answers
1396
include <stdio.h>int main(){ char *c[]={"abhi","abhishek","abhisheksing"}; printf("%s",(*(*(c+2)+7))); return 0;} What is the output?
0 votes
0 answers
1397
1 votes
0 answers
1399
int fun(int n){int x=1,k;if(n==1) return x;for(k=1;k<n;++k)x=x+fun(k)*fun(n-k)return x;}return value of fun(5)??? how to solve this using tree method approach???
0 votes
0 answers
1400