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
0 answers
1763
What is clustering effect in hashing How quadratic and pseudorandom method of hashing worksWhat is the difference between chaining and linklist method of hashing
0 votes
0 answers
1765
The minimum size that an array may require to store a binary tree with ‘n’ nodes is _______.A log$2^{log_{2}(n+1)} -1$B 2^{n}-1C n + 1
0 votes
0 answers
1766
Which of the following statement are true?1. Computing the most frequently occurring elements in an array a(1....n) can be done in o(nlogn) time.
1 votes
1 answer
1767
suppose given size of short int =2, char is 1 and of int is 4B int main(){short int i=20;charc=97;printf("%d,%d,%d",sizeof(i),sizeof(c),sizeof(c+i));return o;}output of ...
0 votes
0 answers
1769
complexity of algorithm to interchange the nth and mth element (node) of singly link list is:a.m+nb.m if m>=n otherwise nc.m if m<=n otherwise nd.m+min(m,n)ans given c?...
0 votes
1 answer
1770
0 votes
0 answers
1771
void fun(char )innt main(){char *argv[]={"ab",cd","ef","gh"};fun(argv);return 0;}voidfun(char p){char *t;t=(p+=sizeof(int))[-1];pritf("%s\n",t);}output isa)cdb)ghc)efd)...
0 votes
0 answers
1772
What is lvalue and rvalue error in c
0 votes
1 answer
1773
Why is the output of this program as 20#include<stdio.h>void fun(int *p){int q = 10; p = &q;}int main(){int r = 20;int *p=&r;fun(p);printf("%d", *p);return 0;}
0 votes
0 answers
1775
can null graph can be biparted graph ?
2 votes
1 answer
1776
Can anyone confirm this I think output must be 2 97 but given ans is 2 2. ?
2 votes
2 answers
1777
#include <stdio.h int main(void) { double a=30; int r: r=a%5; printf("\n r=%d",r) return 0; }Why this code is throwing compilation error ?
0 votes
1 answer
1778
What is the output of the following C program? #include <stdio.h void main (void) { int shifty; shifty = 0570; shifty = shifty » 4; shifty = shifty « 6; printf("The val...
1 votes
0 answers
1780
#include<stdio.h>int main(){ int i =6; for(int i=0;i<5;i++){ printf("%d",i);}} This code when run using C compiler gave exception redefinition of i .But with Cplus plu...