Question
The ratio of the present age of mother and son is 11:5.
5-years ago the father's age was 5 years less than thrice the age of son and 6 years hence the age of mother is 1 year less than twice the age of son. What will be the sum of ages of mother, father and son after 12 years.Solution
Let the age of mother and sone be 11x and 5x. Father’s age 5 years ago= 3 x (5x-5) - 5 = 15x-20 As per the question, 11x+6 = 2 x (5x+6) -1 11x+7 = 10x+12 x=5 Age of mother and son are 55years and 25years, respectively Age of father 5 years ago = (15x5)-20 = 75-20 = 55 years Present age of father = 60 years Sum of the age of father, mother, and son after 12 years = (60+55+25) +(12+12+12) = 140+36 = 176 years.
- Natural Language Processing (NLP)
In the context of sentiment analysis, which of the following NLP techniques provides the most accurate classification ...
In the context of asymmetric encryption, which of the following is a key feature of public-private key pairs?
Which of the following is the primary goal of a Cross-Site Scripting (XSS) attack?
Which of the following is an example of an emerging technology that is most likely to impact the future of computing?
In the context of page replacement algorithms, which one minimizes page faults in an ideal scenario?
- Computer Architecture
Which architectural feature is crucial for improving the performance of modern multi-core processors?
Suffix Trees are useful for:
Which of the following attacks can occur when a user is tricked into performing unintended actions on a trusted website without their knowledge?
 Which graph traversal algorithm uses a queue to explore vertices in a layer-by-layer fashion?
What is the output of the following recursive function call func(3) ?
int func ( int n) {Â Â Â Â Â Â Â
   if (n == 0 ) return 1 ; <...