Question
Rahul can complete a work in 12 days and Ayush in 15
days. If they work together for 3 days, then the fraction of work that will be left is:Solution
Let us assume total work to be L.C.M(12,15) be 60 unit (you can assume any number but for the sake of calculation it is advised to take L.C.M of the given numbers) Â Efficiency of Rahul = 60/12 = 5 unit/day Efficiency of Ayush = 60/15 = 4 unit/day Total efficiency of Rahul and Ayush = 5 + 4 = 9 unit/day According to the question, They work together for 3 days Total work done = 9 x 3 = 27 unit Remaining work = (60-27) = 33 unit Fraction of remaining work = 33/60 =11/20
Which SQL feature allows hierarchical queries (e.g., org chart traversal)?
Which SQL operator is used to search for a pattern in a column?
In SQL, the ROWS BETWEEN UNBOUNDED PRECEDING AND CURRENT ROW clause applies to:
Which SQL clause is used to filter records based on aggregate functions?
Which PL/SQL cursor attribute returns `TRUE` if the most recent `FETCH` statement returned a row, and `FALSE` otherwise?
Given a table employees(id, dept_id, salary), which query returns departments with average salary greater than overall average across the company?
Which of the following is a mandatory component of a PL/SQL function's definition?
Which of the following is a key characteristic that distinguishes a PL/SQL `FUNCTION` from a PL/SQL `PROCEDURE`?
What is the result of SELECT COUNT(NULL) on any table?
Which SQL function is used to calculate the average of a numeric column?