Question
In the following question, a word has been used in
sentences in THREE different ways. Choose the option corresponding to the sentences in which the usage of the word is CORRECT or APPROPRIATE. CATASTROPHICI) The earthquake had catastrophic consequences, leaving thousands homeless.II) His catastrophic performance in the exam led to his expulsion from the university.III) The scientist warned that a catastrophic increase in global temperatures could threaten human survival.Solution
The word "catastrophic" is an adjective that means causing great damage, disaster, or suffering.Sentence I is incorrect – "Catastrophic consequences" correctly describes severe destruction caused by an earthquake.Sentence II is incorrect – While "catastrophic" can imply failure, it is too extreme for an exam performance. Words like "poor" or "disastrous" would be more appropriate.Sentence III is also correct – "Catastrophic increase in global temperatures" correctly conveys a disastrous change with severe consequences.Thus, both I & III are correct.
Which condition must be satisfied for Kruskal’s Algorithm to function correctly?
What is the main advantage of using data storytelling in presenting data-driven insights?
A company has a large dataset with a mix of numeric and categorical data. To ensure fair comparisons between variables, which data transformation techni...
Which of the following is an example of an independent variable in a data analysis model that predicts employee productivity based on training hours?
Which algorithm is commonly used for classification tasks?
Why is Exploratory Data Analysis (EDA) considered a crucial step in the data analysis process?
Which of the following protocols is widely used for low-power, short-range communication in IoT devices?
What is the difference between samples and populations in data analysis?
Deadlock prevention in operating systems can be achieved by ensuring which of the following conditions does NOT hold?
Consider the following Python code snippet:
class Employee:
  def __init__(self, name, age):
    self.name = name
<...