Question
In the following question, a word has been emboldened,
which has been used in the sentences (A), (B), and (C). Find out the sentence(s) in which the emboldened word has been correctly used and choose the option accordingly. If the word has been used correctly in all the sentences, mark option 5 i.e. 'All of the above' as your answer. Disseminate A- The organization aims to disseminate important health information to remote areas through its outreach programs. B- He attempted to disseminate his thoughts through a long speech, but the audience remained uninterested. C- The newspaper’s role is to disseminate news to its readers in a timely and accurate manner.        ÂSolution
In sentence A, "disseminate" is correctly used to mean spreading or distributing information. In sentence B, "disseminate" is used incorrectly. It refers to spreading information, but it doesn’t quite fit in the context of spreading thoughts in a speech, which is more abstract. In sentence C, "disseminate" is correctly used in the context of spreading news. Thus, the correct answer is Option 3: A, C.
Which of the following is the primary goal of a Cross-Site Scripting (XSS) attack?
In the context of page replacement algorithms, which one minimizes page faults in an ideal scenario?
Which of the following allows dynamic memory allocation?
Which OSI model layer is responsible for reliable delivery of data between devices?
Which of the following is a primary advantage of using a star schema in a data warehouse design?
In CI/CD pipelines, which of the following is NOT a key benefit of Continuous Integration (CI)?
What is the primary role of a Certificate Authority (CA) in a Public Key Infrastructure (PKI)?
Which of the following is true about triggers in a relational database?
Which data structure is used in recursion?
What is the output of the following recursive function call func(3) ?
int func ( int n) {Â Â Â Â Â Â Â
   if (n == 0 ) return 1 ; <...