>
Exams
>
General Aptitude
>
Data Interpretation
>
the probability of getting a distinct number while
Question:
The probability of getting a distinct number while throwing dice six times?
GATE CS - 2024
GATE CS
Updated On:
Feb 12, 2024
Hide Solution
Verified By Collegedunia
Correct Answer:
0.015
Solution and Explanation
The correct answer is 0.015
Download Solution in PDF
Was this answer helpful?
0
0
Top Questions on Data Interpretation
In a class of 40 students, the ratio of boys to girls is 3:2. The average marks scored by boys is 42, and that by girls is 46. What is the average marks scored by the whole class?
CUET (UG) - 2024
General Aptitude
Data Interpretation
View Solution
The monthly salary for a person who follows the same expense pattern, but has a petrol expense of Rs 500 p.m., is:
VITEEE - 2024
General Aptitude
Data Interpretation
View Solution
Let \(P\) be the partial order defined on the set \(\{1, 2, 3, 4\}\) as follows:
\[ P = \{(x, x) \mid x \in \{1, 2, 3, 4\}\} \cup \{(1, 2), (3, 2), (3, 4)\} \]
The number of total orders on \(\{1, 2, 3, 4\}\) that contain \(P\) is ...........\_\_\_.
GATE CS - 2024
General Aptitude
Data Interpretation
View Solution
When six unbiased dice are rolled simultaneously, the probability of getting all distinct numbers (i.e., \( 1, 2, 3, 4, 5, \) and \( 6 \)) is
GATE CS - 2024
General Aptitude
Data Interpretation
View Solution
Let \( A \) be the adjacency matrix of a simple undirected graph \( G \). Suppose \( A \) is its own inverse. Which one of the following statements is always TRUE?
GATE CS - 2024
General Aptitude
Data Interpretation
View Solution
View More Questions
Questions Asked in GATE CS exam
The maximum value of \(x\) such that the edge between the nodes B and C is included in every minimum spanning tree of the given graph is \_\_\_\_\_\_\_\_ (answer in integer).
\includegraphics[width=0.5\linewidth]{65.png}
GATE CS - 2025
Programming and Data Structures
View Solution
In a double hashing scheme, \( h_1(k) = k \mod 11 \) and \( h_2(k) = 1 + (k \mod 7) \) are the auxiliary hash functions. The size \( m \) of the hash table is 11. The hash function for the \( i \)-th probe in the open address table is \( [h_1(k) + i \cdot h_2(k)] \mod m \). The following keys are inserted in the given order: 63, 50, 25, 79, 67, 24.
The slot at which key 24 gets stored is:
GATE CS - 2025
Programming and Data Structures
View Solution
Consider the given sequential circuit designed using D-Flip-flops. The circuit is initialized with some value (initial state). The number of distinct states the circuit will go through before returning back to the initial state is:
\includegraphics[width=0.5\linewidth]{60.png}
GATE CS - 2025
Sequential Circuits
View Solution
Consider a probability distribution given by the density function \( P(x) \).
\[ P(x) = \begin{cases} Cx^2, & {for } 1 \leq x \leq 4,
0, & {for } x<1 { or } x>4. \end{cases} \]
The probability that \( x \) lies between 2 and 3, i.e., \( P(2 \leq x \leq 3) \), is \_\_\_\_\_\_. (rounded off to three decimal places)
GATE CS - 2025
Probability
View Solution
Let LIST be a datatype for an implementation of a linked list defined as follows:
\begin{verbatim} typedef struct list { int data; struct list next; } LIST; \end{verbatim}
Suppose a program has created two linked lists, L1 and L2, whose contents are given in the figure below (code for creating L1 and L2 is not provided here). L1 contains 9 nodes, and L2 contains 7 nodes.
Consider the following C program segment that modifies the list L1. The number of nodes that will be there in L1 after the execution of the code segment is:
\includegraphics[width=0.5\linewidth]{62.png}
GATE CS - 2025
Programming and Data Structures
View Solution
View More Questions