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
0 answers
43
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
44
1 votes
2 answers
46
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
49
0 votes
1 answer
50
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
51
Please solve I am unable to understand the solution given by made easy
0 votes
0 answers
52
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
54
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
55
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 ...
0 votes
1 answer
56
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
57
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
58
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
59