Question
P got married 8 years ago. His present age is 5/3 times
his age at the time of his marriage. P’s sister was 10 years younger to him at the time of his marriage. The present age of P’s sister is:Solution
Let P’ age at the time of his marriage 8 years ago be 3x. His present age be = (5/3) × 3x = 5x According to question, => 5x – 3x = 8 => x = 4 years Now P’ age at the time of his marriage 8 years ago = 3x = 3 × 4 = 12 years And his present age = 5x = 5 × 4 = 20 years P’s sister age 8 years ago = 12 – 10 = 2 years So, present age of P’s sister = 2 + 8 = 10 years
Which of the following is a default connector for Shielded twisted pair?
What is Computer Output Microfilm (COM) primarily used for in data management and archival systems?
What does the term "code optimization" refer to in the context of software development?
The order of convergence of Newton-Raphson method is:
Complete the while loop condition for an iterative binary search implementation.
def binary_search(arr, target):
  low = 0
 �...
What is the time complexity for inserting an element into a binary heap?
Predict the output
list1 = ['physics', 'chemistry', 1997, 2000]
list2 = [1, 2, 3, 4, 5, 6, 7 ]
print "list1[0]: ", list1[0]Â Â Â ...
Given the string S = "aabaaab" for Z-Algorithm, what is the Z-array for this string? (Z is typically 0 or undefined).
A good hash function aims to achieve which of the following characteristics?
What is the primary purpose of Continuous Integration (CI) in software development?Â