Question
If x runs are second by Rohit, y runs by Shreyas and z
runs by Virat, then x : y = y : z = 7:4. If total number of runs scored by Rohit, Shreyas and Virat is 744, the find the number of runs scored by Shreyas? ÂSolution
⇒ x : y = 7:4 = 49 : 28 ⇒ y : z = 7 : 4 = 28 : 16 ⇒ x : y : z = 49 : 28 : 16 Since total runs scored by Rohit, Shreyas and Virat = 744 ⇒ 49a + 28a + 16a = 744 ⇒ 93a = 744 ⇒ a = 744/93 = 8 Hence, Runs scored by Shreyas = 28 × 8 = 224
Consider the following statement regarding Kelvin Double Bridge.
Statement (1): It is used for measuring resistance in the range of few ohms to s...
Consider the following Java code snippet:
  import java.util.PriorityQueue;
  public class HeapQuestion9 {
    publ...
Which of the following is a NoSQL database commonly used in Big Data?
In a nodal analysis a circuit with 10 nodes will have _______ unknown voltage and _______equation.Â
Which algorithm is used in game playing for decision making?
Consider a singly linked list: 1 -> 2 -> 3 -> 4 -> None. If a delete_node(head, 3) function is called (which deletes the node with value 3), what will b...
What is a primary feature of the Agile Model in software development?
In a Breadth-First Search (BFS) algorithm for graph traversal, what is the primary role of a queue?
A binary search function is returning -1 (not found) even when the target element is present in the array. The array is sorted. Which of the following i...
Which algorithm approach focus on Local Optimum solution?