Start learning 50% faster. Sign in now
Let the total work = 420 units (LCM of 35, 70 and 60) Amount of work done by Karan alone in one day = 420/35 = 12 units Amount of work done by Arjun alone in one day = 420/70 = 6 units Amount of work done by Krunal alone in one day = 420/60 = 7 units Amount of work done by Karan, Arjun and Krunal together in 3 days = 3 × (12 + 6 + 7) = 75 units Amount of work done by Arjun and Krunal together in 5 days = 5 × (6 + 7) = 65 units Remaining work = 420 – 75 – 65 = 280 units So, the time taken by Krunal alone to complete 280 units work = 280/7 = 40 days So, Krunal worked for 40 + 5 + 3 = 48 days
Which all statements are correct about Sorting
Which one of the following given statements possibly contains the error?
Which of the following sorting algorithms is NOT stable?
Which of the following SQL queries is used to find the second highest salary from an employee table?
SELECT MAX (salary) FROM emp...Which of the following is NOT a responsibility of the operating system's kernel?
What will be the output of the following code when the pop method is executed?
class Stack:
def __init__(self):
s...
Which of the following is a non-relational database used for handling large volumes of diverse data types in Big Data environments?
Which of the following code snippets correctly implements a singly linked list in Java, including the ability to insert a new node at the beginning?...
Consider the following Java code that implements encapsulation:
class BankAccount {
private double balance;
public Bank...