GATE 2025 Data Science & Artificial Intelligence (DA) Question Papers: Previous Year Papers PDF Download
GATE 2025 Data Science & Artificial Intelligence (DA) question papers will have the questions from the topics such as Linear Algebra, Probability and Statistics, Machine Learning, etc. While doing the preparations, the students can solve the sample questions, study from the best books, etc.
GATE 2025 Data Science & Artificial Intelligence (DA) Question Papers: The GATE 2025 Data Science and Artificial Intelligence paper is a new engineering specialization paper added last year by the authority. As it's a newly introduced paper you must be wondering what will be question type in the GATE 2025 Data Science question paper. Don’t worry as we have compiled some GATE 2025 sample questions of Data Science & Artificial Intelligence after taking into consideration the paper trend. You can get access to the GATE 2025 Data Science question paper on this page. The exam takers of GATE 2025 DA can choose Computer Science (CS), Electronics and Communication (EC), Electrical Engineering (EE), Mathematics (MA), Mechanical Engineering (ME), Statistics (ST), and Engineering Sciences (XE) as their second choice in the GATE two-paper combination. Students must practice from the previous year's GATE Data Science & Artificial Intelligence Question to know about the question type, chapter-wise weightage, and important topics.
You should note that the exam date for GATE 2025 DA has not yet been announced by the authority. However, the GATE 2025 exam will be conducted on February 1, 2, 15, and 16, 2025. To know more about GATE Data Science & Artificial Intelligence (DA) Question Papers and other details, take a look at the article below.
GATE 2025 Data Science & Artificial Intelligence (DA) Question Paper
The GATE 2025 Data Science & Artificial Intelligence paper will include questions from topics such as Linear Algebra, Programming, Data Structures and Algorithms, Machine Learning, etc. The GATE 2025 data science question paper will hold a total of 2 sections, namely General Aptitude & Subject Questions worth 15 and 85 marks respectively. Being a relatively new subject for the GATE examination, we understand that you might be looking for its previous year question papers in order to prepare well for it. Don’t worry as here, we have mentioned the GATE Data Science and Artificial Intelligence question paper of 2024 for you to easily access it:-
Also Check: M Tech Data Science
GATE Data Science & Artificial Intelligence Sample Questions
As discussed above, the GATE DA exam is relatively new and there is not much study material available for it. Thereafter, to make your preparation a bit easier, we have put together some sample questions for the said subject after thorough brainstorming and research. Go through the sample questions mentioned below and start practicing:-
Engineering Mathematics
1. Let X be a real 44 matrix. Consider the following statements :
A1: X has 4 linearly independent eigenvectors.
A2: X has 4 distinct eigenvalues.
A3: X is non-singular (invertible).
Which one among the following conditions is Correct?
- A1 implies A2
- A2 implies A1
- A1 implies A3
- A3 implies A1
The correct answer is option B.
2. For matrices of the same dimension A, B, and scalar s, which one of these conditions does not always retain?
- (AB)T = A
- (sA)T = s(A)T
- (A + B)T = AT + BT
- AN = NA
The correct answer is option D.
3.
- 3, 3+5j, 6-j
- 3, -1+3j, -1-3j
- -6+5j, 3+j, 3-j
- 3+j, 3-j, 5+j
The correct answer is option B.
4. The function f(a) = 8 log f a-a2 + 3 attains its minimum over the interval [1, f] at a = __________. (Here loge x is the natural logarithm of a.)
- 2
- 1
- f
- (1+f)/2
The correct answer is option B.
5. The families of curves represented by the solution of the equation dy/dx = - (x/y)n for n = –1 and n = 1 respectively, are
- Circles and Hyperbolas
- Parabolas and Circles
- Hyperbolas and Circles
- Hyperbolas and Parabolas
The correct answer is option C.
6.
- a = b/4
- a = b/2
- a = 2b
- a = 4b
The correct answer is option D.
7. 500 candidates are taking one or more courses out of Mathematics, Physics, and Chemistry. Enrollment records show course registration as given - Chemistry and Physics (83), Chemistry (329), Physics (186), Mathematics (295), Physics and Mathematics (63), and Chemistry and Mathematics (217). How many candidates are taking all 3 subjects?
- 53
- 37
- 43
- 47
The correct answer is option A.
8. Neeraj and Dheeraj went in an interview for two vacuities in the same branch. The probability of Neeraj's selection is 1/6 and that of Dheeraj is 1/8. What is the probability that only one of the options will be selected?
- 47/48
- 1/4
- 13/48
- 35/48
The correct answer is option B.
9. If calls come at a telephone exchange such that the time of appearance of any call is independent of the time of appearance of earlier future calls, the probability allocation function of the entire number of calls in a specified time gap will be -
- Poisson
- Gaussian
- Exponential
- Gamma
The correct answer is option A.
10.
- ½
- 4/9
- 2/3
- 5/9
The correct answer is option A.
Data Science & Artificial Intelligence
11. Evaluate the problem of reversing a singly linked list. To take an illustration, as given in the linked list below:
The reversed linked list should look like the diagram given below-
Which one of the following remarks is TRUE about the time complexity of algorithms that solve the above problem in O(1) space?
- The best algorithm for the problem takes (n2) time in the worst case.
- The best algorithm for the problem takes (n log n) time in the worst case.
- The best algorithm for the problem takes (n) time in the worst case.
- It is not feasible to reverse a singly linked list in O(1) space.
The correct answer is option C.
12. What is the worst-case time complexity of inserting ‘m’ elements into an empty linked list, if the linked list needs to be maintained in sorted order?
- (m log m)
- (m)
- (m2)
- O(1)
The correct answer is options A and C.
13. Let A be a singly linked list, Let B be the pointer to an intermediate node c in the list. What is the worst-case time complexity of the best-known algorithm to delete node c from the list?
- (n)
- (lon2n)
- (log n)
- O(1)
The correct answer is option D.
14. The preorder traversal of a binary search tree is 15, 10, 12, 11, 20, 18, 16, 19. Which one of the following is the postorder traversal of the tree?
- 20, 19, 18, 16, 15, 12, 11, 10
- 19, 16, 18, 20, 11, 12, 10, 15
- 10, 11, 12, 15, 16, 18, 19, 20
- 11, 12, 10, 16, 19, 18, 20, 15
The correct answer is option D.
15. What is the worst-case time complexity of inserting m2 elements into an AVL tree with m elements initially?
- (m2)
- (m4)
- (m3)
- (m2logm)
The correct answer is option D.
16. A queue is executed using a non-circular singly linked list. It has a head and a tail pointer, as shown in the figure. Suppose ‘m’ denotes the total number of nodes in the queue. Let enqueue be executed by inserting a new node at the head, and dequeue be implemented by omission of a node from the tail.
Which one of the options is the time complexity of the most time-efficient implementation of enqueue and dequeue respectively, for this data format?
- (1), (1)
- (1), (m)
- (m), (1)
- (m), (m)
The correct answer is option B.
17. Given the following input (4322, 1334, 1471, 9679, 1989, 6171, 6173, 4199) and the hash function a mod 10, which of the following statements is true?
- 9679, 1989, 4199 hash to the exact value
- 1471 and 6171 have the exact value
- All elements hash to the exact value
- Each element hashes to a distinct value
- 1 only
- 2 and 1 only
- 2 only
- 3 or 4
The correct answer is option B.
18. Assume a hash table with 9 slots. The hash function is h(A) = A mod 9. The collisions are settled by chaining. The following 9 keys are instigated in the order: 5, 28, 19, 15, 20, 33, 12, 17, 10. The chain-wise maximum, minimum, and average chain lengths in the hash table, respectively, are -
- 3, 0, and 1
- 3, 3, and 3
- 4, 0, and 1
- 3, 0, and 2
The correct answer is option A.
19. Assume that the algorithms evaluated here sort the input sequences in ascending order.
- Quicksort runs in (m2) time
- Bubblesort runs in (m2) time
- Mergesort runs in (m) time
- Insertion sort runs in (m) time
If the input is already in ascending order, which of the conditions is TRUE?
- 1 and 2 only
- 1 and 3 only
- 2 and 4 only
- 1 and I4 only
The correct answer is option D.
20. The worst-case running times of Insertion sort, Merge sort, and Quick sort, respectively, are:
- (n2), (n logn), and (n2)
- (n logn), (n logn) and (n2)
- (n2), (n2) and (n logn)
- (n2), (n logn), and (n logn)
The correct answer is option A.
21. Which of the following relational query languages have the same expressive power?
I) Tuple relational calculus restricted to safe expressions
II) Relational algebra
III) Domain relational calculus restricted to safe expressions
- II and III only
- I and II only
- I and III only
- , II, and III only
The correct answer is option D.
22. Which one of the following is used to describe the supporting many-one relationships of a weak entity set in an entity-relationship diagram?
- Rectangles with double/bold border
- Ovals that contain underlined identifiers
- Diamonds with double/bold border
- Ovals with double/bold border
The correct answer is option C.
23. With respect to the expressive power of the formal relational query languages, which of the subsequent comments is right?
- Relational algebra same power as safe relational calculus.
- Relational algebra same power as relational calculus.
- Relational algebra is more powerful than relational calculus.
- None of the above
The correct answer is option A.
24. Suppose a join (relation algebra) between relations a(A) and b(B) employing the nested loop method. There are 3 buffers each of size the same as the disk block size, out of which one buffer is committed for intermediate results. Assuming size {a(A)} < size {b(B)}, the join will have fewer disk block accesses if -
- Relation a(A) is in the outer loop
- relation b(B) is in the outer loop
- join selection factor between a(A) and b(B) is more than 0.5
- join selection factor between a(A) and b(B) is less than 0.5
The correct answer is option A.
25. A clustering index is determined on the fields of what type?
- non-key and non-ordering
- key and ordering
- non-key and ordering
- key and non-ordering
The correct answer is option C.
26. A file is arranged so that the ordering of data records is the same as or close to the ordering of data entries in some index. The index is known as -
- Dense
- Sparse
- Clustered
- Unclustered
The correct answer is option C.
27. Which of the following is NOT a superkey in a relational schema with attributes V, W, X, Y, Z, and primary key VY?
- VXYZ
- VWXZ
- VWXY
- VWXYZ
The correct answer is option B.
28. ______ is the partition approach of grouping identical data.
- K-nearest
- K-means
- Approximate Nearest Neighbor
- Hierarchical Agglomerative Clustering
The correct answer is option B.
29. We get over fitting model, because of ____bias and ____ variance.
- low, high
- low, low
- high, low
- high, high
The correct answer is option A.
30. A table has fields, F1, F2, F3, F4, F5, with the following functional dependencies: F1 → F3.F2 → F4.(F1.F2) → F5 in terms of Normalization, this table is in -
- 2NF
- 1NF
- 3NF
- None of these
The correct answer is option A.
You need to note that these sample questions are tentative and formulated based on the GATE DA 2025 Syllabus. The numbers and format may vary.
Also read: GATE Syllabus 2025
GATE 2025 Data Science & Artificial Intelligence Syllabus
IIT Roorkee has released the official GATE Data Science & Artificial Intelligence syllabus 2025 on its official website. The syllabus involves various topics such as Calculus and Optimization, Database Management and Warehousing, AI, etc. You can read more details related to GATE syllabus of Data Science & Artificial Intelligence below:-
Name of the Chapters |
Calculus and Optimization |
Linear Algebra |
Probability and Statistics |
Machine Learning |
Database Management and Warehousing |
Programming, Data Structures and Algorithms |
AI |
Related Articles
We hope that this post on the GATE 2025 Data Science & Artificial Intelligence (DA) Question Papers was helpful and informative. For more articles and updates, stay tuned with Collegedekho!
Get Help From Our Expert Counsellors
FAQs
Is there GATE exam for Artificial Intelligence?
Yes, IISc Bangalore has recently announced the 30th GATE paper i.e. GATE Data Science & Artificial Intelligence (DA) Paper which will be conducted from the academic year 2024-2025.
Who is eligible for GATE Data Science and AI?
Candidates from any Engineering background are eligible to appear for the GATE DA 2024 Paper.