>
GATE Data Science and Artificial Intelligence
List of top Questions asked in GATE Data Science and Artificial Intelligence
Given the table facts:
\[ \text{facts (D1, D2, val)} \] with the following data:
Consider the following SQL query:
What is the total number of rows produced?
GATE DA - 2025
GATE DA
Data Science and Artificial Intelligence
SQL
Consider the following algorithm:
What will be the output (O/P) of this algorithm?
GATE DA - 2025
GATE DA
Data Science and Artificial Intelligence
Algorithm
Given the equation:
\[ 3^{x^2} = 27 \times 9^x \]
Find the value of:
\[ \frac{2^{x^2}}{(2^x)^2} \]
GATE DA - 2025
GATE DA
Engineering Mathematics
Algebra
Consider the following graph with heuristic values:
Which of the following represents the correct order of node expansion using the A* search algorithm?
GATE DA - 2025
GATE DA
Data Science and Artificial Intelligence
Algorithm
Consider the following sets:
\[ A = \{"this", "that"\}, \quad B = \{"that", "other"\}, \quad C = \{"other", "this"\} \]
Which of the following sets remain non-empty at the end?
GATE DA - 2025
GATE DA
Data Science and Artificial Intelligence
Programming in Python
Consider the given graph and shortest paths:
The shortest paths given are:
\[ a - b - c - d, \quad e - f - g - h, \quad a - f - c - h \]
Which of the following cannot be an edge in the original graph?
GATE DA - 2025
GATE DA
Data Science and Artificial Intelligence
Graph Theory
Consider the following database schema:
\[ \text{Person (aadhar CHAR(12) PK, name VARCHAR(32))} \] \[ \text{Customer (name VARCHAR(32), email VARCHAR(32) PK, phone CHAR, aadhar CHAR(12) FK(aadhar))} \]
Which of the following statements is/are correct?
GATE DA - 2025
GATE DA
Data Science and Artificial Intelligence
Database Concepts
Given the relation:
\[ R = \{A, B, C, D, E, F, G\} \]
With the following functional dependencies (FDs):
\[ A \rightarrow BCEF, \quad E \rightarrow DG, \quad BC \rightarrow A \]
Which of the following statements is correct?
GATE DA - 2025
GATE DA
Data Science and Artificial Intelligence
Database Concepts
Which of the following data structures supports binary search in \( O(\log n) \) time complexity?
GATE DA - 2025
GATE DA
Data Science and Artificial Intelligence
Algorithm
Choose the most appropriate word to complete the analogy:
Courage : Bravery :: Yearning :
GATE DA - 2025
GATE DA
General Aptitude
Analogies
Given the lists:
\[ A = [1,2,3], \quad B = [4,5,6] \]
Which of the following statements will result in
\[ A = [1,2,3,4,5,6]? \]
GATE DA - 2025
GATE DA
Data Science and Artificial Intelligence
Programming in Python
Suppose that insertion sort is applied to the array \([1,2,3,5,7,9,11,x,15,13]\) and it takes exactly 2 swaps to sort the array. Select all possible values of \( x \).
GATE DA - 2025
GATE DA
Data Science and Artificial Intelligence
Algorithm
When does the worst case of binary search occur?
GATE DA - 2025
GATE DA
Data Science and Artificial Intelligence
Algorithm