Time Left - 15:00 mins
GATE 2025 Programming & Data Structures Evaluation Quiz 1
Attempt now to get your rank among 76 students!
Question 1
Consider the following code:
int main()
{
char *P[5] ={“DELHI”, “MUMBAI”, “SURAT”, “JAIPUR”, “NOIDA”};
char **ptr[5] = {P+1,P+2, P+3,P,P+4};
char ***S = ptr;
S++;
printf(“%s”, *(S[-2])+3);
printf (“%s”, S[-1][-1]+1);
}
The output of the above code is:
Question 2Multiple Correct Options
Which of the following is/are correct?
Question 3
Which of the following is not a Linear Data Structure?
Question 4
If the elements “A”, “B”, “C” and “D” are placed in a queue and are deleted one at a time, in what order will they be removed?
Question 5
Match the following :
![](https://gradeup-question-images.grdp.co/liveData/PROJ18812/1531205681074995.png)
![](https://gradeup-question-images.grdp.co/liveData/PROJ18812/1531205681074995.png)
- 76 attempts
- 0 upvotes
- 0 comments
Nov 16GATE & PSU CS