Question
In the question given below, two sentences are given
with one blank each. From the given answer choices, choose the option which contains the word that fits in both sentences making them grammatically and contextually correct. 1. It was a ________ concept for the colonial era: pine piping under every street, with pumps placed every 100 yards. 2. I was very interested in seeing that the ambiguity of the _______ was replicated in the movie.Solution
First sentence - we need an adjective here to modify the noun CONCEPT. NOVEL (new) will fit here as the sentence tells us how the concept was not known before. Second sentence - we need a noun here to be modified by the adjective THE. NOVEL (a written account or story) will fit here, as the sentence tells us that the ambiguity of the book was also shown in the movie adaptation. Thus, (c) is the right answer. A and E will fit only in 2, while B and D will fit only in 1.
WI-FI uses
Relational Algebra is
Which network layer protocol provides a reliable, connection-oriented delivery of packets?
In natural language processing (NLP), what does TF-IDF stand for?
How many dimensions are selected in Slice operation?
Node.js is built on which JavaScript engine?
Which of the following is NOT a method for handling deadlocks?
Which of the following is a basic equation used in the COCOMO model?
Which of the following is not a limitation of binary search algorithm?
Below code will give what result for f(3)
f(int x)
{
If(x
Return;
f(x-1);
printf(“%d”, x);
f(n-1);
}