Question
In each question a statement is given, followed by two
assumptions, numbered I and II. An assumption is supposed or taken for granted. You have to consider the statement and assumptions and decide which of the assumptions is implicit in the statement. Statement: A leading smartphone company has announced a 20% discount on its latest model to boost sales during the festive season. Assumptions: I. Customers are more likely to buy smartphones when discounts are offered. II. The company’s latest model has not been selling well so far.Solution
Offering a discount to boost sales assumes that customers respond positively to price reductions → Assumption I is implicit. The statement does NOT say the model is selling poorly; discounts can also be offered simply because it is a festive season. Hence, poor sales are not necessarily assumed → Assumption II is not implicit. Thus, only Assumption I follows.
What is the primary benefit of polymorphism?
Which of the following is NOT a typical step in NLP text preprocessing?
Which of the following statements best describes a "trap door" in the context of computer security?
Which protocol is used to dynamically assign IP addresses to devices on a network?Â
What is the primary goal of the Matrix Chain Multiplication problem in dynamic programming?
Which feature of Big Data refers to the speed of data generation and processing?
What is the significance of the "best case" time complexity of an algorithm?
Which of the following best describes the concept of ‘Concurrency’ in the context of Operating Systems?Â
An algorithm has a time complexity of O(N² ). If the input size N doubles, how does the execution time approximately change?
Consider the following Python code:
  def mystery(a, b):
    if a == 0:
      return b
    e...