Question
In the question below, a sentence is given with four
words highlighted in bold. From the options, choose the number of highlighted in bold which are contextually or grammatically inappropriate. The notion of intelligence as something inane and fixed has been implanted by the idea that intelligence is instead something malleable ; that we are not prisoners of immutable characteristics and that, with the right training, we can be the authors of our own cognitive capabilities.Solution
1.      (c) The sentence talks about how the idea that intelligence is permanent is not popular any more; instead, people now consider intelligence as something that can change over time and is in our hands. INANE means lacking sense or silly, which is contextually inapt in the sentence. INNATE means inherent and would have been more appropriate. IMPLANTED means to place an artificial object inside something, which does not render meaning in the context. SUPPLANTED means superseded and replaced, which would be more apt here. MALLEABLE means flexible to change, and IMMUTABLE means fixed, both of which are apt in the context. Since, two words are inappropriate, (c) is the right answer.
What will be the value of `x` after the following pseudo-code execution?Â
```
  x = 0
  data = [10, 20, 30]
  f...
In two-phase locking, a transaction releases its locks:
Which normal form removes partial dependency?
An RDBMS provides mechanisms for data integrity, such as primary keys and foreign keys, which are generally lacking in:
Consider the following pseudo-code:Â
 ```
  function calculate(arr):
    sum = 0
    for i from 0 to l...
Which SQL command is used to retrieve data from a table?
Which of the following SQL queries would return the total number of employees in each department, but only for departments with more than 10 employees?
Which type of attack exploits software bugs to execute arbitrary code on a system?
In PL/SQL, a `CURSOR` is used to:
Given a binary tree, a "zigzag" level order traversal prints the nodes level by level, but alternating the order of nodes from left-to-right and right-t...