Question
The HCF of two numbers is 21 and their LCM is 693. If
one of the numbers is 63, find the other number and verify that it is a multiple of the HCF.Solution
For two numbers a and b: a × b = HCF × LCM Let other number = x. 63 × x = 21 × 693 Compute RHS: 21×693 = 21×(700 − 7) = 14,700 − 147 = 14,553 So x = 14,553 / 63 63×200 = 12,600 Remaining: 1,953 63×30 = 1,890 Remaining: 63 So x = 200 + 30 + 1 = 231 Check: 231 ÷ 21 = 11, So 231 is a multiple of the HCF.
What is the phenomenon where a process spends more time paging (swapping pages between main memory and disk) than executing instructions?
Complete the Python code to print the elements of the main diagonal of a square matrix matrix of size N x N.
def print_main_diagonal(matrix, N):<...
What is the primary purpose of the UNION ALL operator in SQL?
The major drawback of Shortest Remaining Time First is:
Long average turnaround time
Which of the following is TRUE for PROM memories?
Which is best fit for blank space 15?
Which functional dependency holds in given relation R (A, B, C) and why?
Which of the following is a cloud orchestration tool?
Consider a singly linked list: 1 -> 2 -> 3 -> 4 -> None. If a delete_node(head, 3) function is called (which deletes the node with value 3), what will b...
In a Binary Search Tree (BST), which traversal technique results in nodes being visited in ascending order?Â