Question
The ACB claimed that town planning officials
(A)/concerned had sanctioned a building plan to (B)/ construct multi storeyed apartments for (C)/lake beds and buffer zone, and also approves the (D)/land records submitted to it illegally (E). Directions: In each of the questions, a sentence is divided into five parts namely A, B, C, D and E. In which one of the parts is given in bold and is grammatically and contextually correct. You have to identify which fragment, apart from the bold one, is correct in terms of grammar and usage. If all the parts are correct, then mark option 5, “All are correct” as the answer.Solution
C- apartments are constructed ‘on’ lake beds, not ‘for’ lake beds. D- here, ‘approved’ is correct, because in the correct part, ie, A, the past tense is used. E- the preposition ‘it’ should be changed to ‘them’, because land records were submitted to the officials. The ACB claimed that town planning officials concerned had sanctioned a building plan to construct multi storeyed apartments on lake beds and buffer zone, and also approved the land records submitted to them illegally.
The Boyer-Moore algorithm is known for its efficiency in practice, especially for long patterns and large alphabets. It uses two heuristics: the bad cha...
What is a primary feature of the Agile Model in software development?
When evaluating the performance of an algorithm, which of the following factors is generally considered most important for large input sizes?
What is the primary advantage of using an Object-Oriented Programming approach?
In pandas, what does df.groupby('A').agg({'B': 'sum', 'C': 'mean'}) return?
float i=10;
int f=i;
What kind of typecasting is happening in the above scenario a ?
What is a characteristic feature of a dense index in a database indexing system?
A recursive backtracking solution for the Subset Sum problem is generating duplicate subsets or missing valid subsets. Assuming the input array might co...
Consider the following Java code snippet:
Β Β import java.util.ArrayList;
Β Β import java.util.Arrays;
Β Β import java.util.L...
The following Python code intends to enforce that all `Worker` subclasses implement a `work` method. However, it's not working as expected.
class...