Question
C is 37.5% more efficient than A, and A is 60% more
efficient than B. If A, B, and C together can complete a task in 40 days, how long will it take A alone to complete 75% of the task?Solution
Let efficiency of ‘B’ ‘5x’ units per day
Efficiency of ‘A’ = 1.60 × 5x = 8x units per day
Efficiency of ‘C’ = 1.375 × 8x = 11x units per day
Total work = (3x + 8x + 11x) × 40 = 960x units
Desired time = (0.75 × 960x)/8x = 90 days
- 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 ; <...