Start learning 50% faster. Sign in now
According to the question, Quantity of diesel purchased by him in 1 year = (4500/6) = 750 litres Quantity of oil purchased in 2 year = (4500/9) = 500 litres Quantity of diesel purchased in 3 year = (4500/10) = 450 litres Total quantity of oil purchased in give three years = 750 + 500 + 450 = 1700 litres Total amount spent on diesel in given three years = 4500 × 3 = Rs. 13500 Required average = 13500/1700 = 7.9411 ~ Rs. 8
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...