Question
The given bar graph shows the export of jute by a
company over the years 2011 to 2017. Which of the following pairs of years has the maximum percentage of decrease in export?Solution
To find the difference in each pair of years, 2011 - 2012 = 11.4 - 10.8 = 0.6 2012 - 2013 = 9.5 - 11.4 = - 1.9 2013 - 2014 = 9.9 - 9.5 = 0.4 2014 - 2015 = 7.8 - 9.9 = - 2.1 2015 - 2016 = 5.2 - 7.8 = - 2.6 2016 - 2017 = 6.5 - 5.2 = 1.3 Percentage Decrease = (Old Value - New Value)/Old Value x 100 From the above, we know that there was a decrease in export in the years 2012 - 2013, 2014 - 2015 and 2015 - 2016. In all these years, 2015 - 2016 has the maximum amount of decrease = -2.6/5.2 x 100 = 50% ∴ The maximum percentage of decrease in export was in the year 2015 - 2016.
- 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 ; <...