- Question Papers
- Question Papers 2024
- Question Papers 2023
- Question Papers 2022
- Question Papers 2021
- Question Papers 2020
- Question Papers 2019
- Question Papers 2018
- Question Papers 2017
- CE Question Papers
- CS Question Papers
- ECE Question Papers
- EE Question Papers
- ME Question Papers
- AE Question Papers
- AG Question Papers
- AR Question Papers
- BM Question Papers
- CH Question Papers
- Chemistry Question Papers
- BT Question Papers
- EY Question Papers
- XE Question Papers
- ES Question Papers
- GG Question Papers
- GE Question Papers
- XH Question Papers
- IN Question Papers
- XL Question Papers
- MA Question Papers
- MT Question Papers
- MN Question Papers
- NM Question Papers
- PE Question Papers
- Physics Question Papers
- PI Question Papers
- ST Question Papers
- TF Question Papers
- Practice Papers
- Official Mock Test
- Test Series
GATE 2024 Data Science and AI Sample Paper has been provided here. Data Science and AI is a newly introduced paper this year. Candidates can download to know the question paper pattern and the type of questions in the exam.
Data Science and AI Syllabus is based on topics from Engineering Mathematics, Programming, Data Structures and Algorithms, Database Management and Warehousing, Machine Learning and AI.
GATE 2024 Data Science and AI Question Paper with Answer Key
Exam Date | Session | Question Paper PDF |
---|---|---|
February 3 | Forenoon Session | Check Here |
GATE 2024 Data Science and AI Sample Paper PDF Download
NOTE: Candidates must note that GATE 2024 Data Science and AI Sample Paper PDF added above is the one released on the official website. Collegedunia will try to provide you with proper answers to the sample paper pdf.
According to a note published along with the sample paper, IISc Banglore has mentioned that “The DA test paper is newly introduced in GATE 2024. This is a sample question paper for the candidates to practice the subject. We will not be able to answer any queries or provide answer keys to these questions. “
GATE 2024 Data Science and AI Sample Questions
To further help students prepare for GATE DA 2024 exam, we have compiled a section of sample questions you can expect to see on the exam.
Q1. Consider the problem of reversing a singly linked list. To take an example, given the linked list below:
the reversed linked list should look like
Which one of the following statements is TRUE about the time complexity of algorithms that solve the above problem in O(1) space?
- The best algorithm for the problem takes(n) 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(n2) time in the worst case.
- It is not possible to reverse a singly linked list in O(1) space.
Ans. (a)
Q2. What is the worst case time complexity of inserting n elements into an empty linked list, if the linked list needs to be maintained in sorted order?
- (n2)
- (n)
- (n logn)
- O(1)
Ans. (a) and (c)
Q3. Let P be a singly linked list, Let Q be the pointer to an intermediate node x in the list.What is the worst-case time complexity of the best known algorithm to delete the node x from the list?
- (n)
- (lon2n)
- (log n)
- O(1)
Ans. (d)
Q4. 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
- 10, 11, 12, 15, 16, 18, 19, 20
- 11, 12, 10, 16, 19, 18, 20, 15
- 19, 16, 18, 20, 11, 12, 10, 15
Ans. (c)
Q5. What is the worst case time complexity of inserting n2elements into an AVL-tree with n elements initially?
- (n2)
- (n2logn)
- (n4)
- (n3)
Ans. (b)
Q6. A queue is implemented using a non-circular singly linked list. The queue has a head pointer and a tail pointer, as shown in the figure. Letndenote the number of nodes in the queue. Letenqueuebe implemented by inserting a new node at the head, anddequeuebe implemented by deletion of a node from the tail.
Which one of the following is the time complexity of the most time-efficient implementation ofenqueueanddequeuerespectively, for this data structure?
- (1),(1)
- (1),(n)
- (n),(1)
- (n),(n)
Ans. (b)
Q7. Given the following input (4322, 1334, 1471, 9679, 1989, 6171, 6173, 4199) and the hash function x mod 10, which of the following statements are true?
i) 9679, 1989, 4199 hash to the same value
ii) 1471, 6171 has to the same value
iii) All elements hash to the same value
iv) Each element hashes to a different value
- i only
- ii only
- i and ii only
- iii or iv
Ans. (c)
Q8. Consider a hash table with 9 slots. The hash function is h(k) = k mod 9. The collisions are resolved by chaining. The following 9 keys are inserted in the order: 5, 28, 19, 15, 20, 33, 12, 17, 10. The 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
Ans. (a)
Q9. Assume that the algorithms considered here sort the input sequences in ascending order. If the input is already in ascending order, which of the following are TRUE?
- Quicksort runs in(n2) time
- Bubblesort runs in(n2) time
- Mergesort runs in(n) time
- Insertion sort runs in(n) time
- I and II only
- I and III only
- II and IV only
- I and IV only
Ans. (d)
Q10. The worst case running times of Insertion sort, Merge sort and Quick sort, respectively, are:
- (n logn),(n logn) and(n2)
- (n2),(n2) and(n logn)
- (n2),(n logn), and(n logn)
- (n2),(n logn), and(n2)
Ans. (d)
Q11. Which of the following relational query languages have the same expressive power?
I) Relational algebra
II) Tuple relational calculus restricted to safe expressions
III) Domain relational calculus restricted to safe expressions
- II and III only
- I and II only
- I and III only
- I, II and III only
Ans. (d)
Q12. Consider a join (relation algebra) between relations r(R)and s(S) using the nested loop method. There are 3 buffers each of size equal to disk block size, out of which one buffer is reserved for intermediate results. Assuming size(r(R)) < size(s(S)), the join will have fewer number of disk block accesses if
- relation r(R) is in the outer loop
- relation s(S) is in the outer loop
- join selection factor between r(R) and s(S) is more than 0.5
- join selection factor between r(R) and s(S) is less than 0.5
Ans. (a)
Q13. With regard to the expressive power of the formal relational query languages, which of the following statements is true?
- Relational algebra is more powerful than relational calculus.
- Relational algebra same power as relational calculus.
- Relational algebra same power as safe relational calculus.
- None of the above
Ans. (c)
Q14. A file is organized so that the ordering of data records is the same as or close to the ordering of data entries in some index. Then that index is called
- Dense
- Sparse
- Clustered
- Unclustered
Ans. (c)
Q15. A clustering index is defined on the fields which are of type
- non-key and ordering
- non-key and non-ordering
- key and ordering
- key and non-ordering
Ans. (a)
Q16. Which one of the following is used to represent the supporting many-one relationships of a weak entity set in an entity-relationship diagram?
- Rectangles with double/bold border
- Diamonds with double/bold border
- Ovals that contain underlined identifiers
- Ovals with double/bold border
Ans. (b)
Q17. Which of the following is NOT a superkey in a relational schema with attributes
V, W, X, Y, Zand primary keyVY?
- VXYZ
- VWXZ
- VWXY
- VWXYZ
Ans. (b)
Q18. 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
- 1NF
- 2NF
- 3NF
- None of these
Ans. (a)
Q19. We get over fitting model, because of ____bias and ____ variance.
- low, high
- low, low
- high, low
- high, high
Ans. (a)
Q20. ______ is the partition approach of grouping similar data.
- k-means
- k-nearest
- Approximate Nearest Neighbor
- Hierarchical Agglomerative Clustering
Ans. (a)
(Source: JagranJosh)
Importance of Solving GATE Data Science and AI Sample Paper
Solving GATE 2024 Data Science and AI sample paper is an essential part of your exam preparation.
- It will familiarize you with the exam pattern and question types. Sample questions give you a good idea of the types of questions that you can expect to see in the exam, as well as the overall exam pattern. This helps you to develop a better understanding of how to approach the exam and allocate your time effectively.
- Improve your problem-solving skills. Practicing sample questions will help you to improve your problem-solving skills and develop a deeper understanding of the concepts covered in GATE DA syllabus.
- Increase confidence: Solving sample questions and consistently scoring well can help boost your confidence and reduce exam anxiety. This is essential for performing your best on the exam day.
To get the most out of solving GATE 2024 DA sample paper and questions, reviewing your answers carefully and identifying areas where you need to improve is important.
GATE 2024 Data Science and AI Books
Since, GATE 2024 Data Science and AI is a newly introduced paper, it is important for candidates to get the best resources for their exam preparation. Some of the best books for GATE 2024 DA exam preparation have been listed below. Candidates can either but the same online through Amazon or use e-books.
- Introduction to Probability by Dimitri P. Bertsekas & John N. Tsitsiklis
- Introduction to Linear Algebra by Gilbert Strang
- Learning Python by Mark Lutz
- Database Management Systems by Raghu Ramakrishnan and Johannes Gehrke
- Machine Learning for Beginners by Chris Sebastian
- Artificial Intelligence: A Modern Approach by Stuart Russell and Peter Norvig
According to industry experts and various coaching institutes, GATE 2024 Data Science and AI Syllabus is based on 40% Mathematics, 25% Programming and Database from Computer Science while the rest is AI and Machine Learning. They also believe that IISc Banglore might set GATE 2024 DA question paper in a way where subjects from Mathematics are on a difficult side while AI and machine learning topics will be on a slightly easy side since the paper has been introduced for the first time this year. However, it is best for the candidates to prepare the entire syllabus along with solving as many mock tests available online.
GATE Previous Year Question Papers
*The article might have information for the previous academic years, which will be updated soon subject to the notification issued by the University/College.
Comments