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

Highest voted questions in Programming

0 votes
1 answer
3511
0 votes
1 answer
3512
0 votes
0 answers
3515
By default external variables and functions have the property that all references to them by the same name, even from functions compiled separately, are references to sam...
0 votes
1 answer
3516
Greece has a population of 10.000.000 people. A quarter of the population are women. Half of the women have blue eyes. How many people in Greece have blue eyes?
0 votes
1 answer
3517
#include<stdio.h int main() { char *p1="xyz"; char *p2="xyz"; if(p1==p2) printf("equal"); else printf("unequal"); }Output is equal how??? please explain
0 votes
0 answers
3518
i want to learn bit concersion , number system ,OPERATION ON NEGATIVE NUMBERS INSIDE COMPUTER(through complements)PLEASE SUGGEST ME FROW WHERE CAN I GET THIS?
0 votes
1 answer
3519
Consider storage class of a variable declared as static. Where the memory will be allocated?a)Code segmentb)Stack segmentc) Heap segmentd) Data segment
0 votes
1 answer
3520
for(i=0;i<n;i++) { //printf("enter process name: %d:",i+1); //gets(p[i]); printf("enter burst time of %d:",i+1); scanf("%d\n",&bt[i]); }why input not reading from 2 time ...
0 votes
1 answer
3521
15 randomly generated numbers can be sorted preferably by:heap sort insertion sort bubble sort
0 votes
2 answers
3522
0 votes
1 answer
3523
0 votes
1 answer
3525
#include<stdio.h int main() { int x=1,y=2,z; y=y+1; z=x+y; x=x+1; return z; }output of this program ?
0 votes
1 answer
3526
Which among the following is (are) able to modify previously allocated spaceI. calloc() II. free() III. realloc() A. Both II and IIIB...
0 votes
1 answer
3527
0 votes
1 answer
3528
Enumeration is a process ofDeclaring a set of numbersSorting a list of stringsAssigning a legal values possible for a variableSequencing a list of operators
0 votes
1 answer
3530