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

Most answered questions in Programming

0 votes
0 answers
3543
The solution given to this question is :How can z=5? According to me it should be 100
0 votes
0 answers
3544
0 votes
0 answers
3545
The answer is given as (A) but according to me it should be (B). Can anyone explain please?
0 votes
0 answers
3546
0 votes
0 answers
3547
How many binary trees are possible with given preorder:- ABCDAnd given postorder:- cdba
0 votes
0 answers
3548
what is complexity1)to convert infix to prefix 2) to convert infix to postfix 3)convert infix to prefix using stackplz someone tell?
0 votes
0 answers
3549
0 votes
0 answers
3551
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
3552
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
3553
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.
0 votes
0 answers
3554
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
0 answers
3555
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
3556
What is lvalue and rvalue error in c
0 votes
0 answers
3557
can null graph can be biparted graph ?
1 votes
0 answers
3558
#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...
4 votes
0 answers
3559
main ( ){static char [3] [4] = {“abcd”, “mnop”, “fghi”};putchar ( a);}