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{2024-1}&\textbf{2024-2}&\textbf{2023}& \textbf{2022}&\textbf{2021-1}&\textbf{2021-2}&\textbf{Minimum}&\textbf{Average}&\textbf{Maximum}
\\\hline\textbf{1 Mark Count} & 2&2&1&1 &0&2&0&1.33&2
\\\hline\textbf{2 Marks Count} &1&1&0& 2&2&2&0&1.33&2
\\\hline\textbf{Total Marks} &4&4&1& 5&4&6&\bf{1}&\bf{4}&\bf{6}\\\hline
\end{array}}}$$

Hot questions in Programming

1 votes
1 answer
1541
What is the following function doing? unsigned fun(unsigned a, unsigned b) { int i; unsigned j = 0; for(i = 0; i < 32; i++) { j <<= 1; j += !!(a & 0x80000000); a <<= 1; i...
0 votes
1 answer
1542
printf("The ASCII value of %c = %d\n",i,i); what is the meaning of this line why i,i written in the code.
3 votes
1 answer
1543
main() { float a=.5, b=.7; if(b<.7) if(a<.5) printf("TELO"); else printf("LTTE"); else printf("JKLF"); }
0 votes
0 answers
1544
What is the time complexity of f(f(x,y),y)?
0 votes
2 answers
1545
What will be the last element of the max-heap formed by given element : 4 , 1 ,3, 2, 16, 9, 10, 14, 8, 7a) 4b) 6c) 51) 1According to me, last element is 2. But is in not...
0 votes
2 answers
1546
0 votes
1 answer
1547
#include<stdio.h void main() { int i; printf("%d", scanf("%d",&i)); //provide input as 100; }
0 votes
1 answer
1548
According to me Option D.Because it should be an error because *("INDIA" + 2 ) = 'D' and we are doing 'D' = 'I' which is not valid so Error ???But answer is C
0 votes
1 answer
1549
0 votes
2 answers
1550
0 votes
1 answer
1551
Are both a() and (*a)() one and the same?
0 votes
0 answers
1552
My doubt is very basic, I want to understand what is the use of signed and unsigned used with integer.?2.what does size of signed int (-128 to 127) signify?3how to big en...
0 votes
0 answers
1554
int add(int a){ return a;}int sub(int b){ return b;}void main (){Int (*fun[])(int)={add,sub};printf("%d %d %d",&add,&fun[0],&sub);} address of add is 657 and address of ...
0 votes
1 answer
1555
0 votes
1 answer
1557
0 votes
1 answer
1558
using matrix it can be solved but requires lot of time any other method to compute these type of problems???
0 votes
1 answer
1560
If we take a 1-D array b[10] b is the pointer to 1st element of array because b has the address of 1st element of array...but sizeof(b) will give the size of whole array ...