Questions

Q:

The sentences given with blanks are to be filled with an appropriate word(s). Four alternatives are suggested for each question. For each question, choose the correct alternative and click the button corresponding to it.

The life of a mosquito is _____ , but very active.

A) long B) passive
C) brief D) important
 
Answer & Explanation Answer: C) brief

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2057
Q:

A passage is given with five questions following it. Read the passage carefully and select the best answer to each question out of the given four alternatives.

 

He wasn't the first, nor would he be the last, but the wiry, bespectacled man from Gujarat is certainly the most famous of the world's peaceful political dissidents. Mohandas Gandhi – also affectionately known as Mahatma – led India's independence movement in the 1930s and 40s by speaking softly without carrying much of a big stick, facing down the British colonialists with stirring speeches and non-violent protest. More than anything else, historians say, Gandhi proved that one man has the power to take on an empire, using both ethics and intelligence.

 

Urges Britain to quit India

It is hard to imagine the thin, robed Gandhi working in the rough and tumble world of law, but Gandhi did get his start in politics as a lawyer in South Africa, where he supported the local Indian community's struggle for civil rights. Returning to India in 1915, he carried over his desire to improve the situation of the lower classes.

 

Gandhi quickly became a leader within the Indian National Congress, a growing political party supporting independence, and traveled widely with the party to learn about the local struggles of various Indian communities.

 

It was during those travels that his legend grew among the Indian people, historians say.

 

Gandhi was known as much for his wit and intelligence as for his piety. When he was arrested several more times over the years for his actions during the movement,  Gandhi calmly fasted in prison, believing that his death would embarrass the British enough to spur independence, which had become the focus of his politics by 1920.

 

Gandhi's non-cooperation movement, kicked off in the early 1920s, called for Indians to boycott British goods and traditions and become self-reliant. His most famous protest came in 1930, when Gandhi led thousands of Indians on a 250-mile march to a coastal town to produce salt, on which the British had a monopoly.

 

What led to the growth of legend of Mahatma Gandhi among the Indians?

A) He being a very promising lawyer returning from South Africa. B) His non-violent nature.
C) His travel to India with INC to learn about the local struggle of Indians. D) His support to local Indian communities in South Africa.
 
Answer & Explanation Answer: C) His travel to India with INC to learn about the local struggle of Indians.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2057
Q:

When the Indian Space Research Organisation (ISRO) was set up?

A) 1952 B) 1959
C) 1964 D) 1969
 
Answer & Explanation Answer: D) 1969

Explanation:

The Indian Space Research Organisation is the space agency of the Government of India was set up in the year 1969, headquartered in the city of Bangalore. Its vision is to "harness space technology for national development while pursuing space science research and planetary exploration.

 

Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2057
Q:

Who has chosen for the first "Bhagwan Mahavir Ahimsa Puraskar"?

A) Subhash Chandra Bose B) Alluri Seetha Ramaraju
C) Abhinandan Varthaman D) None of the above
 
Answer & Explanation Answer: C) Abhinandan Varthaman

Explanation:

Abhinandan Varthaman who shot down the Pakistan's F-16 jet has chosen for the first "Bhagwan Mahavir Ahimsa Puraskar".

Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 2057
Q:

What's the difference between L1 and L2 cache?

Answer

Level 1 cache is internal to the chip, Level 2 is external.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2057
Q:

Project Communications Management - Processes

Describe the Inputs, Tools and Techniques , Outputs included in the Communications planning?

Answer

I. Inputs



  • Enterprise environmental factors

  • Organizational process assets

  • Project scope statement

  • Project management plan


                   - Constraints


                   - Assumptions


II. Tools and Techniques



  • Communications requirements analysis

  • Communications technology


III. Outputs



  • Communications management plan

Report Error

View answer Workspace Report Error Discuss

0 2056
Q:

Write a c program to copy a data of file to other file.

Answer

#include<stdio.h>
int main(){
  FILE *p,*q;
  char file1[20],file2[20];
  char ch;
  printf("\nEnter the source file name to be copied:");
  gets(file1);
  p=fopen(file1,"r");
  if(p==NULL){
      printf("cannot open %s",file1);
      exit(0);
  }
  printf("\nEnter the destination file name:");
  gets(file2);
  q=fopen(file2,"w");
  if(q==NULL){
      printf("cannot open %s",file2);
      exit(0);
  }
  while((ch=getc(p))!=EOF)
      putc(ch,q);
  printf("\nCOMPLETED");
  fclose(p);
  fclose(q);
 return 0;
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2056
Q:

Who has been honoured with Jnanpith Award for 2018?

A) Amitav Ghosh B) Raghuveer Chaudary
C) Krishna Sobti D) None of the above
 
Answer & Explanation Answer: A) Amitav Ghosh

Explanation:

English author Amitav Ghosh has been honoured with 54th Jnanpith Award for 2018 for his outstanding contribution towards literature.

Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2056