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

1 votes
0 answers
3621
Function what(x, n:integer): integer:Varvalue : integerbeginvalue := 1if n 0 thenbeginif n mod 2 =1 thenvalue := value * x;value := value * what(x*x, n div 2);end;what :...
–1 votes
0 answers
3622
if i = -5 then value of i++ is: -6/-4????
0 votes
0 answers
3623
what will be the output if z is passed as a) call by value b) call by reference .Please Explain also.z: integerrecur(x){if(x<=40)then{ x=x+z;recur(x);z=x+10;}}main(){z:=1...
0 votes
0 answers
3624
how to Write a program to search a key string in a array of strings,if a key string is found then return its position and then replace that key string by any string using...
0 votes
0 answers
3626
0 votes
0 answers
3627
0 votes
0 answers
3629
What does the following program print?#include < stdio.h >void f (int *p, int * g) {p = q;*p = 2;}int i = 0, j = 1;int main ( ){f(&i, & j);printf ("%d %d \ n", i, j);retu...
0 votes
0 answers
3630
how this question gives -3? according to rule both pointers must pointing to same array then only difference ie ptr1-ptr2 is used but here how answer always is -3???Turbo...
0 votes
0 answers
3631
#include <stdio.h>void main(){int a = -5;int k = (a++, ++a);printf("%d\n", k);}how to solve this int k = (a++, ++a); expression?
1 votes
0 answers
3632
int main(){ int i = 10; int *p = &i; foo(&p); printf("%d ", *p); printf("%d ", *p);}void foo(int const p){ int j = 11; *p = &j; printf("%d ", p);}Output is...
0 votes
0 answers
3633
what is meant by check assertion in sql?
0 votes
0 answers
3634
what is meant by rooted n node binary tree?
0 votes
0 answers
3635
0 votes
0 answers
3637
0 votes
0 answers
3639