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

Hot questions in Programming

2 votes
1 answer
1201
Will the topological order for acyclic graph through indegree Elimination method and DFS method be same.Please answer the above question ?
0 votes
0 answers
1202
1 votes
0 answers
1203
0 votes
0 answers
1204
what i did {$2^{h+1}-1=100$} so i found h=6 so max swaps needed would be 6please check it or tell me if i iam wrong
0 votes
3 answers
1205
ptrdata is a pointer to a data type . The expression *ptrdata++ is evaluated as ( in C++) a) *(ptrdata++) b) (*ptrdata)++c) *(ptrdata)++ d) depends on compiler
0 votes
0 answers
1206
AT WHERE I AM WRONG ??? BECAUSE EVERY TIME IN FUNCTION ENTRY POINT IF CONDITION BECOME TRUE SO EVERY TIME RETURN -1...SINCE 0>ANY SIZE OF ARRAY!!!HELP TO CLEAR OUT PLE...
3 votes
2 answers
1207
#include <stdio.h>void reverse(int i);int main(){reverse(1);}void reverse(int i){if (i 5)return ;printf("%d ", i);return reverse((i++, i));}I am not able to understand h...
3 votes
2 answers
1208
The following code fragment: int x, y= 2, z, a; x= (y* =2) + (z= a =y); printf(&ldquo;%d&rdquo;, x); (a) prints 8(b) prints 6(c) prints 6 or 8 depending on the compile...
0 votes
1 answer
1210
WHAT IS THE OUTPUT OF THE FOLLOWING CODE? printf("%d",printf("ABC"));IS IT ABC3
0 votes
0 answers
1211
What is the output of given C code? If address of x is 2000 and integer requires four byte of memory.int main(){unsigned int x[4][3] = {{1,2,3},{4,5,6},{7,8,9},{10,11,12}...
0 votes
0 answers
1212
in char data type ,plzzz tell me initilization can be seprated from declaration..
0 votes
1 answer
1213
1 votes
1 answer
1214
How many times made easy is printed?#include <stdio.h>int main() { c(4);return 0;}int c(int m){ if (m>0){ for(int i=1;i<3;i++){ c(m-i); ...
0 votes
0 answers
1215
0 votes
1 answer
1216
When are linked lists considered linear data structures?A) If it is based on storageB)If it is based on access strategiesC) Both a and bD) Neither a and b
0 votes
0 answers
1217
I know the answer. But is there any general FORMULA for it?If yes, please provide the complete derivation of it. In the solution, they used $\rightarrow 2^{h-1}+1.$ I tri...
2 votes
1 answer
1218
A. Total no. of trees that were there in the forest.B. Total no. of nodes in the forest.C. Total no. of nodes which have only right child.D. Return max element among all...
0 votes
0 answers
1219
how many real links are required to store a sparse matrix of 10 rows 10 columns and 15 non zero entries.1. 152.203. 504. 100