Question
A sum of Rs 8400 amounts to Rs 11,046 at 8.75% p.a.
simple interest in a certain time. What is the simple interest on the sum of 9600 at the same rate for the same time?Solution
Given - P= 8400, A= 11046, R= 8.75%, T=? SI = A-P=11046-8400=2646 SI= 2646 Now -SI = PRT/100 2646=8400×8.75×T/100 T= (2646×100)/84×875 T=(378×4)/84×5  =18/5=3.6 years so new simple interest for P= 9600, R= 8.75%, T= 3.6years then SI= (9600×8.75×3.6)/100 = (96×36×7)/8 =48×9×7 =3024 Rs
- 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 ; <...