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
1 answer
61
Suppose A is a 12 by 9 incidence matrix from a connected (but unknown) graph with 9 nodes and 12 edges. The diagonal entries of $A^{T}.A$give the number of edges into eac...
0 votes
1 answer
62
What is the correct option for the blanks so that the program runs in the correct manner?I was getting the answer B
0 votes
1 answer
63
its output is 6??how?? // Online C++ compiler to run C++ program online#include <iostream>using namespace std;int main() { // Write int a=-3; a=-a-a+!a; cout<...
2 votes
1 answer
64
0 votes
1 answer
66
Consider a lower triangular matrix stored in row major order as p[-25 - - + 749][-25 - - - + 749] with base address = 6800, size of each element = 6 byte. Find the value ...
0 votes
2 answers
68
The Total Combinations Possible of Min heap with 8 Distinct elements are ?
2 votes
3 answers
70
1 votes
1 answer
71
if X and Y denote the no of 0,1 then the value of 2X + y is
2 votes
1 answer
72
0 votes
0 answers
73
3 votes
5 answers
74
Why is the output of the below program 36? int main(){ int a = 1; int b = ++a * ++a * ++a; printf("%d", b ); ​​​​ return 0; }
5 votes
2 answers
75
What will be the output of the following code? _______ #include <stdio.h int main(){ char val=250; int ans; ans= val+ !val + ~val + ++val; printf("%d", ans); return 0; }
3 votes
1 answer
78
0 votes
1 answer
79
How are two numbers(int) generally stored in computers ?
0 votes
2 answers
80
#include <stdio.h int main() { int x = -5, y = 8; x = x + y - (y = x); printf("%d", x * y); return 0; }what will be the o/p for this? and what is the logic?