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

Most viewed questions in Programming

1 votes
2 answers
1321
What is the time complexity to delete the root node in right skew tree?I knew the three cases of BST deletion:- 0 child,one child,two child.But how can we handle this par...
0 votes
1 answer
1322
#include<stdio.h main() { static char *s[]={"black","white","pink","violet"}; char ptr[]={s+3,s+2,s+1,s}, *p; p=ptr; ++p; printf("%s", p+1); }if i dont use static here ,...
3 votes
4 answers
1323
0 votes
1 answer
1324
What would be the asymptotic time complexity to add a node at the end of singly linked list, if the pointer is initially pointing to the head of the list?a) O(1)b) O(n)c)...
1 votes
2 answers
1327
1 votes
1 answer
1328
Can someone explain the difference between abstraction and encapsulation with programming example?
3 votes
2 answers
1331
0 votes
1 answer
1335
Can someone explain Secondary Clustering to me? The distance between two successive probes is quadratic. I get it, but how are clusters being formed?
1 votes
2 answers
1337
An array of size n. Find the time complexity to insert a new value before an element e in the array?a)O(n)b)O(log n)c)O(1)
2 votes
1 answer
1339
0 votes
1 answer
1340