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}}}$$

Questions without answers in Programming

1 votes
0 answers
2
My question is that can we use command line arguments without use of main function's parameters argc and *argv?
0 votes
0 answers
3
I have a question that can we use command line arguments without main function arguments?int main(int argc, char argv){}
0 votes
0 answers
6
0 votes
0 answers
9
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
0 answers
12
Please solve I am unable to understand the solution given by made easy
0 votes
0 answers
13
0 votes
0 answers
14
Caption@sachinmittal1 sir here answer should be B na because Arr point s to the 0th index of 2nd 1D-array so it means pointing to address of arr [0] so address size woul...
0 votes
0 answers
19
can anyone help me how to approach these type of questions..? And also please attach link of similar questions if possible .thanks in advance
0 votes
0 answers
21
0 votes
0 answers
22
0 votes
0 answers
24
What will be the return value of the below function, if it is called a sample(4)? int sample(int x){ if( x == 0 || x ==2) return 1; return (sample( x) * (x ));}
1 votes
0 answers
29
Given a skew tree what will be the time complexity to balance the tree? What will be the algorithm for this?
0 votes
0 answers
30
I want to know which evaluation is wrong here:a-b-c = ab-c- or a-b-c = abc- –a * b *c = ab*c* a*b*c = abc 3 . a+b-c = ab+c- a+b-c = ...
To see more, click for the full list of questions or popular tags.