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

2 votes
4 answers
42
#include <stdio.h int main() { int a = 5, b; a = ++a + a++ + ++a; printf("%d",a); return 0; }What will be the output of the code?
0 votes
0 answers
48
Write a program in BlueJQ4. Draw Class Diagram and Object Diagram from the below given Details. public class University{ private Student stdob; private Faculty ...
0 votes
1 answer
49
1 votes
2 answers
51
Pointer p to an array of integers (of size 2 Bytes) is initialized to 200. What is the value of p+3?206203212204
0 votes
1 answer
54
0 votes
1 answer
55
7. Asymptotically speaking, which is the best method to search (linear or binary), if the first half of the array is sorted and the rest is not? Why?
0 votes
0 answers
56
Please solve I am unable to understand the solution given by made easy
0 votes
0 answers
57
What value would the following function return for the input x = 95 ? function fun (x:integer): integer; BeginIf x 100 then fun = x - 10Else fun = fun(fun(x + 11))End;(A...
2 votes
1 answer
59
When it comes to Gate Data Science and AI, what language will the DSA questions be asked in - Python or C language?
1 votes
1 answer
60
How is the address written for 3-dimensional arrays?In some answers, I saw (row, column, frame) and in others, it was (frame, row, column) Which one to follow??Also, how ...