Question
What is the least
number which is a perfect square and divisible by 3, 10, 12, and 15?Solution
LCM (3, 10, 12, 15) = 60 60 = 2 × 2 × 3 × 5 Here, 3 and 5 occur only once, and we already have 2 in a pair. To make all prime factors in pairs, multiply by another 3 and 5. ⇒ 60 × 3 × 5 = 900 ∴ 900 is the least perfect square divisible by 3, 10, 12, and 15.
What is the primary purpose of a `SEQUENCE` in SQL?
In PL/SQL, what type of parameter allows a procedure to both receive a value from the calling environment and return a modified value back to it?
Which SQL clause is used for filtering rows?
Which SQL command is used to modify existing records in a table?
Which type of trigger fires once for each row affected by the triggering DML statement?
Which operator is used for pattern matching in SQL?
When does an implicit cursor get automatically declared and managed by PL/SQL?
Which SQL command is used to remove a table completely?
Which join returns rows from the left table even when there is no matching row in the right table, filling with NULLs for the right side?
What is an SQL `VIEW`?