If → denotes increasing order of intensity, then the meaning of the words [sick → infirm → moribund] is analogous to [silly → _______ → daft]. Which one of the given options is appropriate to fill the blank?
The 15 parts of the given figure are to be painted such that no two adjacent parts with shared boundaries (excluding corners) have the same color. The minimum number of colors required is

How many 4-digit positive integers divisible by 3 can be formed using only the digits {1, 3, 4, 6, 7}, such that no digit appears more than once in a number?
The sum of the following infinite series is
In an election, the share of valid votes received by the four candidates A, B, C, and D is represented by the pie chart shown. The total number of votes cast in the election were 1,15,000, out of which 5,000 were invalid. Based on the data provided, the total number of valid votes received by the candidates B and C is

Thousands of years ago, some people began dairy farming. This coincided with a number of mutations in a particular gene that resulted in these people developing the ability to digest dairy milk. Based on the given passage, which of the following can be inferred?
The probability of a boy or a girl being born is . For a family having only three children, what is the probability of having two girls and one boy?
Person 1 and Person 2 invest in three mutual funds A, B, and C. At the end of one year, the total amount that Person 1 gets is ₹500 more than Person 2. The annual rate of return for the mutual funds B and C is 15% each. What is the annual rate of return for the mutual fund A?

Three different views of a dice are shown in the figure below. The piece of paper that can be folded to make this dice is

Visualize two identical right circular cones such that one is inverted over the other and they share a common circular base. If a cutting plane passes through the vertices of the assembled cones, what shape does the outer boundary of the resulting cross-section make?
Consider the following statements: (i) The mean and variance of a Poisson random variable are equal. (ii) For a standard normal random variable, the mean is zero and the variance is one. Which ONE of the following options is correct?
Three fair coins are tossed independently. T is the event that two or more tosses result in heads. S is the event that two or more tosses result in tails. What is the probability of the event ?
Consider the matrix . Which ONE of the following statements is TRUE?
Consider performing depth-first search (DFS) on an undirected and unweighted graph G starting at vertex . For any vertex in G, is the length of the shortest path from to . Let be an edge in G such that . If the edge is explored first in the direction from to during the above DFS, then becomes a ______ edge.
For any twice differentiable function , if at some , and , then the function necessarily has a ______ at .
Match the items in Column 1 with the items in Column 2 in the following table:

Consider the dataset with six datapoints where , , , , , and labels are , and . A hard margin linear support vector machine is trained on the above dataset. Which ONE of the following sets is a possible set of support vectors?
Match the items in Column 1 with the items in Column 2 in the following table:

Euclidean distance based -means clustering algorithm was run on a dataset of 100 points with . If the points and are both part of cluster 3, then which ONE of the following points is necessarily also part of cluster 3?
Given a dataset with binary-valued attributes (where ) for a two-class classification task, the number of parameters to be estimated for learning a naïve Bayes classifier is
Consider performing uniform hashing on an open address hash table with load factor , where elements are stored in the table with slots. The expected number of probes in an unsuccessful search is at most . Inserting an element in this hash table requires at most ______ probes, on average.
For any binary classification dataset, let and be the between-class and within-class scatter (covariance) matrices, respectively. The Fisher linear discriminant is defined by , that maximizes . If , is non-singular and , then must satisfy which ONE of the following equations?
Let and be two admissible heuristics used in search. Which ONE of the following expressions is always an admissible heuristic?
Consider five random variables , and whose joint distribution satisfies: . Which ONE of the following statements is FALSE?
Consider the following statement: In adversarial search, - pruning can be applied to game trees of any depth where is the (m) value choice we have formed so far at any choice point along the path for the MAX player and is the (n) value choice we have formed so far at any choice point along the path for the MIN player. Which ONE of the following choices of (m) and (n) makes the above statement valid?
Consider a database that includes the following relations: Defender(name, rating, side, goals), Forward(name, rating, assists, goals), Team(name, club, price). Which ONE of the following relational algebra expressions checks that every name occurring in Team appears in either Defender or Forward, where denotes the empty set?
Let the minimum, maximum, mean and standard deviation values for the attribute income of data scientists be ₹46000, ₹170000, ₹96000, and ₹21000, respectively. The z-score normalized income value of ₹106000 is closest to which ONE of the following options?
Consider the following tree traversals on a full binary tree: (i) Preorder, (ii) Inorder, (iii) Postorder. Which of the following traversal options is/are sufficient to uniquely reconstruct the full binary tree?
Let and be two propositions. Which of the following statements is a tautology /are tautologies?
Consider sorting the following array of integers in ascending order using an in-place Quicksort algorithm that uses the last element as the pivot: [60, 70, 80, 90, 100]. The minimum number of swaps performed during this Quicksort is ______.
Consider the following two tables named Raider and Team in a relational database. The SQL query executed is: SELECT * FROM Raider, Team WHERE Raider.ID=Team.ID AND City="Jaipur" AND RaidPoints > 200. The number of rows returned by this query is ______.

Let be the function . The value of the derivative of at where is ______ (rounded off to two decimal places).
The sample average of 50 data points is 40. The updated sample average after including a new data point taking the value of 142 is ______.
Consider the matrix . The determinant of is ______.
A fair six-sided die (with faces numbered 1, 2, 3, 4, 5, 6) is repeatedly thrown independently. What is the expected number of times the die is thrown until two consecutive throws of even numbers are seen?
Let be a function. . Which ONE of the following choices gives the values of , , that make the function continuous and differentiable?
Consider the following Python code: Which ONE of the following is the output of this code?

Consider the function computeS(X) whose pseudocode is: Which ONE of the following values is returned by the function computeS(X) for X = [6, 3, 5, 4, 10]?

Let denote the maximum number of comparisons made while searching for an entry in a sorted array of size using binary search. Which ONE of the following options is TRUE?
Consider the following Python function:. What does this Python function fun() do?

Consider the table below, where the (i,j)th element of the table is the distance between points and . Single linkage clustering is performed on data points, . Which ONE of the following is the correct representation of the clusters produced?

Consider the two neural networks (NNs) shown in Figures 1 and 2, with ReLU activation (, ). The connections and their corresponding weights are shown in the Figures. The biases at every neuron are set to 0. For what values of , , in Figure 2 are the two NNs equivalent, when are positive?

Consider a state space where the start state is number 1. The successor function for the state numbered n returns two states numbered n+1 and n+2. Assume that the states in the unexpanded state list are expanded in the ascending order of numbers and the previously expanded states are not added to the unexpanded state list. Which ONE of the following statements about breadth-first search (BFS) and depth-first search (DFS) is true, when reaching the goal state number 6?
Consider the following sorting algorithms: (i) Bubble sort, (ii) Insertion sort, (iii) Selection sort. Which ONE among the following choices of sorting algorithms sorts the numbers in the array [4, 3, 2, 1, 5] in increasing order after exactly two passes over the array?
Given the relational schema and the set of functional dependencies: . Which of the following functional dependencies can be derived from the above set?
Select all choices that are subspaces of .
Which of the following statements is/are TRUE?
Let be the set of real numbers, be a subspace of and be the matrix corresponding to the projection on to the subspace . Which of the following statements is/are TRUE?
Consider the function where is the set of all real numbers. . Which of the following statements is/are TRUE?
Consider the directed acyclic graph (DAG) below. Which of the following is/are valid vertex orderings that can be obtained from a topological sort of the DAG?

Let , , , and represent height, number of internal nodes, number of leaf nodes, and the total number of nodes respectively in a rooted binary tree. Which of the following statements is/are always TRUE?
Consider the following figures representing datasets consisting of two-dimensional features with two classes denoted by circles and squares. Which of the following is/are TRUE?


Let be a random variable uniformly distributed in the interval and be a random variable uniformly distributed in the interval . If X and Y are independent of each other, the probability is ______ (rounded off to three decimal places).
Let be a random variable exponentially distributed with parameter . The probability density function of X is given by: . If , where and indicate the expectation and variance of , respectively, the value of is ______ (rounded off to one decimal place).
Consider two events T and S. Let denote the complement of the event T. The probability associated with different events are given as follows: , , . Then, is ______ (rounded off to two decimal places).
Consider a joint probability density function of two random variables X and Y: . Then, is ______.
Evaluate the following limit: ______.
Let , and let be the singular values of the matrix (where is the transpose of ). The value of is ______.
Details of ten international cricket games between two teams 'Green' and 'Blue' are given in Table C. This table consists of matches played on different pitches, across formats along with their winners. The attribute Pitch can take one of two values: spin-friendly (represented as S) or pace-friendly (represented as F). The attribute Format can take one of two values: one-day match (represented as O) or test match (represented as T). A cricket organization would like to use the information given in Table C to develop a decision-tree model to predict outcomes of future games between these two teams. To develop such a model, the computed InformationGain(C, Pitch) with respect to the Target is ______ (rounded off to two decimal places).

Given the two-dimensional dataset consisting of 5 data points from two classes (circles and squares) and assume that the Euclidean distance is used to measure the distance between two points. The minimum odd value of in -nearest neighbor algorithm for which the diamond (⋄) shaped data point is assigned the label square is ______.

Given the following Bayesian Network consisting of four Bernoulli random variables and the associated conditional probability tables. The value of ______ (rounded off to three decimal places).

Two fair coins are tossed independently. X is a random variable that takes a value of 1 if both tosses are heads and 0 otherwise. Y is a random variable that takes a value of 1 if at least one of the tosses is heads and 0 otherwise. The value of the covariance of X and Y is ______ (rounded off to three decimal places).