Question
Ritesh got 84 marks in an exam, which is 100% more than the
marks secured by Mohan. If Mohan failed the exam by 4 marks, then find the total marks of Ritesh, Mohan and Suman, given that Suman missed the passing score by 2 marks.Solution
ATQ,
Ritesh’s score = 84
Mohan’s score = 84 / 2 = 42
Passing marks = 42 + 4 = 46
Suman’s score = 46 - 2 = 44
So, required sum = 84 + 42 + 44 = 170
In Java, which interface defines the basic operations for a queue, and which class is a common concrete implementation that supports these operations wi...
When performing matrix multiplication (C = A \times B) in a code flow, if matrix A is m \times n and matrix B is n \times p, what is the time complexity...
What is the primary goal of disk scheduling in operating systems?
What is the output of the following part of python program?
x = ("apple", "banana", "cherry")
print(x)Â
In data analysis, a "sparse matrix" is often used. What is the defining characteristic of a sparse matrix?
Which OOP principle focuses on showing only essential information and hiding the complex implementation details from the user?
The "load factor" of a hash table is a critical metric. What does it represent?
Which network security device typically enforces a policy based on IP, port and protocol and can operate at transport and application layer when deep in...
What is the primary goal of access authentication in computer systems?
Complete the while loop condition for an iterative binary search implementation.
def binary_search(arr, target):
  low = 0
 �...