Question
Two cars, A and B, are traveling in the same direction
on a highway. The ratio of their speeds is 3:4. If both cars increase their speeds by 15 km/h, the ratio of their speeds becomes 7:9. What is the original speed of the faster car (Car B)?Solution
Let the original speeds of Car A and Car B be 3x and 4x, respectively. After increasing speeds: Car A's new speed = 3x + 15 Car B's new speed = 4x + 15 New ratio = (3x + 15) : (4x + 15) = 7 : 9 Cross-multiplying: 9(3x + 15) = 7(4x + 15) 27x + 135 = 28x + 105 135 - 105 = 28x - 27x 30 = x Therefore, the original speed of Car B (the faster car) is 4x = 4 * 30 = 120 km/h Ans. a
Which index type is most beneficial for queries that use range predicates (e.g., WHERE age BETWEEN 20 AND 30)?
SQL Injection can be prevented by all EXCEPT:
In normalization, which normal form removes transitive dependencies?
Which SQL clause is used to filter groups after aggregation (i.e., having aggregated value conditions)?
Which of the following SQL constructs avoids returning duplicate rows?
When does an implicit cursor get automatically declared and managed by PL/SQL?
Which of the following statements about SQL `INDEXES` is generally TRUE?
Which type of trigger fires once for each row affected by the triggering DML statement?
Which of the following is a key characteristic that distinguishes a PL/SQL `FUNCTION` from a PL/SQL `PROCEDURE`?
Which SQL command is used to modify existing records in a table?