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{2024-1}&\textbf{2024-2}&\textbf{2023}& \textbf{2022}&\textbf{2021-1}&\textbf{2021-2}&\textbf{Minimum}&\textbf{Average}&\textbf{Maximum}
\\\hline\textbf{1 Mark Count} & 2&2&1&1 &0&2&0&1.33&2
\\\hline\textbf{2 Marks Count} &1&1&0& 2&2&2&0&1.33&2
\\\hline\textbf{Total Marks} &4&4&1& 5&4&6&\bf{1}&\bf{4}&\bf{6}\\\hline
\end{array}}}$$

Hot questions in Programming

0 votes
0 answers
1182
0 votes
0 answers
1183
Can anyone tell me the difference in first condition of Option B and Option C.
0 votes
0 answers
1185
output of the following program?#include<stdio.h>int main(){ char arr[10]; arr = "world"; printf("%s",arr); return 0;}Why compilation error in this program , ...
1 votes
1 answer
1186
In a modified merge sort, the input array is split at a position one-third of the length(N) of the array. What is the worst case time complexity of this merge sort?AN(log...
0 votes
0 answers
1187
0 votes
0 answers
1189
which of following is useful in implementing heap sort1. stack2.list3.queue4.set
0 votes
1 answer
1190
0 votes
1 answer
1191
The Following code has output Gate2019 #include <stdio.h char* fun(){ char* temp = "Gate2019"; return temp; } int main(void) { // your code goes here puts(fun()); return...
0 votes
0 answers
1192
Given an array with n symbols,How many stack permutations possible?
0 votes
1 answer
1193
If we are taking character as input then how we can check the character against a a range of numbers. Please explain
0 votes
1 answer
1194
Void Test (int arr[], int s, int e) { int temp; if(s >= e) return; temp = arr[s+1]; arr[s+1] = arr[e]; arr[e] = temp; Test(arr, s+1, e - 1) }
0 votes
1 answer
1195
a << 1 is equivalent tomultiplying a by 2,dividing a by 2,adding 2 to anone
0 votes
0 answers
1196
0 votes
0 answers
1197
10 votes
4 answers
1198
The output of the following program ismain() { static int x[] = {1,2,3,4,5,6,7,8} int i; for (i=2; i<6; ++i) x[x[i]]=x[i]; for (i=0; i<8; ++i) printf("%d", x[i]); }1 2 3 ...
0 votes
0 answers
1199
1 votes
1 answer
1200
how the answer is 23699?For column major order I get answer as 80039.Even if i go by row major order the answer I get is 23599