GATE 2024 Data Science and AI Sample Paper (Out): Download PDF here

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.

Also Check:

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:

GATE 2024 Data Science Question 1.1


the reversed linked list should look like

GATE 2024 Data Science Question 1.1


Which one of the following statements is TRUE about the time complexity of algorithms that solve the above problem in O(1) space?

  1. The best algorithm for the problem takes(n) time in the worst case.
  2. The best algorithm for the problem takes(n log n) time in the worst case.
  3. The best algorithm for the problem takes(n2) time in the worst case.
  4. 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?

  1. (n2)
  2. (n)
  3. (n logn)
  4. 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?

  1. (n)
  2. (lon2n)
  3. (log n)
  4. 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?

  1. 20, 19, 18, 16, 15, 12, 11, 10
  2. 10, 11, 12, 15, 16, 18, 19, 20
  3. 11, 12, 10, 16, 19, 18, 20, 15
  4. 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?

  1. (n2)
  2. (n2logn)
  3. (n4)
  4. (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.

GATE 2024 Data Science Question 6



Which one of the following is the time complexity of the most time-efficient implementation ofenqueueanddequeuerespectively, for this data structure?

  1. (1),(1)
  2. (1),(n)
  3. (n),(1)
  4. (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

  1. i only
  2. ii only
  3. i and ii only
  4. 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

  1. 3, 0, and 1
  2. 3, 3, and 3
  3. 4, 0, and 1
  4. 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?

  1. Quicksort runs in(n2) time
  2. Bubblesort runs in(n2) time
  3. Mergesort runs in(n) time
  4. Insertion sort runs in(n) time
  1. I and II only
  2. I and III only
  3. II and IV only
  4. I and IV only

Ans. (d)

Q10. The worst case running times of Insertion sort, Merge sort and Quick sort, respectively, are:

  1. (n logn),(n logn) and(n2)
  2. (n2),(n2) and(n logn)
  3. (n2),(n logn), and(n logn)
  4. (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

  1. II and III only
  2. I and II only
  3. I and III only
  4. 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

  1. relation r(R) is in the outer loop
  2. relation s(S) is in the outer loop
  3. join selection factor between r(R) and s(S) is more than 0.5
  4. 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?

  1. Relational algebra is more powerful than relational calculus.
  2. Relational algebra same power as relational calculus.
  3. Relational algebra same power as safe relational calculus.
  4. 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

  1. Dense
  2. Sparse
  3. Clustered
  4. Unclustered

Ans. (c)

Q15. A clustering index is defined on the fields which are of type

  1. non-key and ordering
  2. non-key and non-ordering
  3. key and ordering
  4. 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?

  1. Rectangles with double/bold border
  2. Diamonds with double/bold border
  3. Ovals that contain underlined identifiers
  4. 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?

  1. VXYZ
  2. VWXZ
  3. VWXY
  4. 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

  1. 1NF
  2. 2NF
  3. 3NF
  4. None of these

Ans. (a)

Q19. We get over fitting model, because of ____bias and ____ variance.

  1. low, high
  2. low, low
  3. high, low
  4. high, high

Ans. (a)

Q20. ______ is the partition approach of grouping similar data.

  1. k-means
  2. k-nearest
  3. Approximate Nearest Neighbor
  4. 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.

GATE 2025 : 5 Answered Questions

Ques. What are the cut off marks in gate for iit indore?

IIT Indore GATE Cutoss 2023 has not been released officially IIT Kanpur will release the GATE 2023 cutoff for IIT Indore Students having valid GATE scores from 2023, 2022, or 2021 will be eligible for admission to MTech courses. Considering the IIT Indore GATE cutoff for 2021, The overall cutoff for GATE is 615 - 740 marks. Here is the branch-wise cutoff M.Tech Material Science and Engineering 615 M.Tech Communication and Signal Processing 657 M.Tech VLSI Design and Nanoelectronics 670 M.Tech Production & Industrial Engineering 740 Please note that the above cutoff is only for the general category....Read More
Answer By Jyoti Chopra 17 Jun 23
0
0
Share
1 Answer
Report

Ques. Is it possible to get into IIT Tirupati just by the GATE qualifying marks?

Yes, it may be possible. Here are the reasons why- IIT Tirupati is a very new IIT, established in 2015. It is not well known currently, especially in North India.  It releases its applications quite early. Its MS and Phd. batches started only a few years ago, so those with better scores will prefer NITs over IIT Tirupati. The cutoff for MS is also low in IIT Madras because very few students are interested in pursuing the course. Ultimately, the number of applicants and the interview round will decide your fate. ...Read More
Answer By Divya Saraf 11 Jan 24
0
0
Share
1 Answer
Report

Ques. Can Longterm students apply gitam gate exam?

Verify your eligibility for your desired course on the GITAM website or get in touch with the admissions office directly if you are a "longterm student"—that is, if you finished your qualifying exam several years ago. Unless otherwise noted, most programmes do not specifically exclude long-term students. Student Type Eligible for GITAM GAT? Notes/Clarification Appearing in the current year Yes For example, 12th in 2025 or graduation in 2025 Passed in the previous year Usually Yes No explicit gap year limit for most courses Long-term gap (many years) Check course-wise criteria No strict age/gap limit, but confirm for each program Yes, long-term students can generally apply for the GITAM GAT (GITAM Admission Test) exam, provided they meet the eligibility criteria for the specific course they are interested in....Read More
Answer By Vinima Bhola 23 Jun 25
0
0
Share
1 Answer
Report

Ques. My son has scored 42.33 marks in GATE (CSE). Could you please suggest which IITs, NITs, or IIITs he might be eligible for an M.Tech in Computer Science?

With a GATE 2025 score of 42.33 marks in Computer Science, your son has comfortably crossed the General category qualifying cut-off mark of 29.2 marks and can be eligible for admission into a number of top institutes in India. Here is a quick analysis of where he stands and the options that actually confront him: Admission Possibilities Institute Type Chance for Admission in CSE Top IITs (Bombay, Delhi, Kanpur, etc.) Unlikely, as cutoffs are usually 55–65+ marks Newer IITs (Jodhpur, Patna, Dhanbad, etc.) Possible in later rounds or for allied CSE branches Top NITs (Trichy, Warangal, Surathkal) Competitive, but admission more likely in later rounds or for specializations like information security and data science. Mid/Lower NITs Good chance for direct admission in CSE Top IIITs (Allahabad, Gwalior, Jabalpur) Competitive; possible depending on the round and specialization Other IIITs Good chances for CSE or related programs Recommendations: Apply through COAP (for IITs) and CCMT (for NITs/IIITs). Keep looking for related fields like Data Science, Cybersecurity, or Information Technology, which may have slightly lower cutoffs. And take all rounds of counseling, including spot rounds, as cutoff trends fluctuate every year. Also visit state universities and centrally funded colleges that accept GATE scores. Your son is rightly positioned for M.Tech admissions in all NITs, IIITs, and new IITs. CSE and this score will not make the top 5 IITs feasible, but there are plenty of good colleges where he can build a strong academic and professional life. Wishing your son best of luck for future admissions....Read More
Answer By Muskan Agrahari 24 Jun 25
0
0
Share
1 Answer
Report

Ques. I have completed my M.Tech with 73% marks but have not qualified for GATE. Am I eligible to apply for full-time Ph.D. admission at IIT Bhubaneswar?

Eligibility for Full-time Ph.D. at IIT Bhubaneswar (Engineering/Science) Criteria Requirement M.Tech. Percentage Minimum 60% marks (you have 73%, so you meet this criterion) GATE Qualification Required for Institute PhD Scholar (regular full-time, with assistantship) GATE Waiver Only for sponsored projects or special categories With 73% in M.Tech, you are academically eligible, but for regular full-time Ph.D. admission (institute-sponsored) in IIT Bhubaneswar, a valid GATE score is required. But you can still apply under sponsored, project, or special categories, where GATE is not required, but other requirements (such as work experience or organizational sponsorship) are there....Read More
Answer By Muskan Agrahari 24 Jun 25
0
0
Share
1 Answer
Report

View All

Fees Structure

Structure based on different categories

CategoriesState
General1800
Women900
sc900
pwd900

Note: GATE 2024 Application Fee needs to be paid online through net banking or debit card or credit card facilities. Additional charges will be applicable as per the rule of the bank from where the money is being transferred. This charge will be specified on the payment portal.

In case of any inaccuracy, Notify Us! 

Comments


No Comments To Show