Question
Arrange the following events, which took place in the
early decades of the 20th century, in chronological order: 1. First Session of Indian National Congress in Bombay 2. Foundation of the All-India Muslim League 3. Partition of Bengal 4. Indian National Congress, Surat Session Choose the correct answer using the codes given below:Solution
The correct chronological sequence is: β’ First Session of Indian National Congress at Bombay β 1885 β’ Partition of Bengal β 16 October 1905 β’ Foundation of the All India Muslim League β 1906 β’ Surat Session of Indian National Congress β 1907 Thus, the correct order is 1 β 3 β 2 β 4, which matches option (b). β’ W.C. Bonnerjee was the first President of the Indian National Congress. β’ The Partition of Bengal led to widespread protests and the Swadeshi Movement. β’ The Muslim League initially demanded protection of Muslim interests but later moved towards demanding a separate nation. β’ The Surat Session (1907) marked a split between Moderates (Gopal Krishna Gokhale, Dadabhai Naoroji) and Extremists (Bal Gangadhar Tilak, Bipin Chandra Pal, Lala Lajpat Rai). β’ Lord Hardinge annulled the Partition of Bengal in 1911. β’ The early 20th-century events intensified the struggle for India's independence. β’ The split weakened the Congress temporarily but also led to more assertive nationalist movements later.
What is the primary output of the parsing phase in a compiler?
In LR parsing, what does the term "shift" mean?
Which of the following is an example of a "local optimization"?
Multithreading an interactive program will increase responsiveness to the user by ___________
Which code optimization technique replaces occurrences of a variable with its constant value if the variable has been assigned a constant value that is ...
Which storage class in C indicates that a variable's lifetime is throughout the program execution and its scope is local to the block it is defined in, ...
Which of the following techniques is used to ensure that a database design eliminates redundant data?
In a Syntax-Directed Definition (SDD), attributes are associated with:
Which of the following is NOT a common form of 3-address code?
What will be the output of the following C code?
#include
int main() {
int i;
for (i = 0; i < 5; i++) {
<...