Questions

Q:

The Cabinet Committee on Economic Affairs (CCEA) has approved expansion of "Beti Bachao Beti Padhao" yojana for a pan India coverage from 2017-2018 to _____.

 

A) 2018-2019 B)  2019-2020
C) 2020-2021 D) 2021-2022
 
Answer & Explanation Answer: B)  2019-2020

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

1 2047
Q:

A passage is given with 5 questions following it. Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.

 

Man's attitude to various animals changed many times in the course of centuries. From indifference or practicality, he went on to adoration and deification, and then to hatred. Ancient Egyptians, for example, highly appreciated the cat's ability to destroy rodents. The cat was much superior in this respect to the grass­snakes and weasels they had kept in their houses before. These proved unable to cope with hordes of rats which invaded Egypt from Asia. So the cat, a very useful animal, was ranked as a sacred animal and one of the most important animals, too. The goddess of the Moon, fertility and child­birth, Bast herself was portrayed by the Egyptians as a woman with a cat's head.

Sumptuous temples were built to this goddess, where cats were kept in luxury and fed the choicest of foods. They had their own priests and votaries, more numerous as a matter of fact than any other sacred animal could boast. According to the Greek historian Herodotus, the festival in the city of Bubastis, which had a temple dedicated to cats, was attended by as many as 700 thousand, who brought their offerings to the goddess in the shape of figurines of her made of gold, silver and bronze and adorned with precious stones.

 

What is the opposite of the word ‘votaries’ ?

A) Enthusiast B) Critic
C) Adherent D) Fanatic
 
Answer & Explanation Answer: B) Critic

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2047
Q:

The four main systems of the earth are

Answer

The Earth has four major systems or spheres. These systems are


 1. The geosphere,


 2. The hydrosphere,


 3. The atmosphere, and 


4. The biosphere.


 


The biosphere is the system where we belong.

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography Exam Prep: Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

4 2047
Q:

Hormone that helps regulate calcium balance

A) endocrine B) parathyroid
C) pancreas D) None of the above
 
Answer & Explanation Answer: B) parathyroid

Explanation:

PTH - Parathyroid hormone which balances calcium levels if they are low.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

5 2046
Q:

Choose the correctly spelt word:-

A) Intrensic B) Intrinsic
C) Entrensic D) Entrinsec
 
Answer & Explanation Answer: B) Intrinsic

Explanation:

Intrinsic is spelt correctly which means essential.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2046
Q:

If intermediate goods and services were included in GDP

A) the price level may change over time. B) the GDP would be overstated.
C) the price level rose by more than nominal GDP. D) All of the above
 
Answer & Explanation Answer: B) the GDP would be overstated.

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2046
Q:

The leader of the opposition, (in the manner he had planned to convince them,on) P (realising that he had failed to convince the) Q (assembly,who had a reputation for speech) R (making,was very much disappointed) S

The correct sequence should be

A) P S R Q B) Q S R P
C) R S Q P D) S P R Q
 
Answer & Explanation Answer: C) R S Q P

Explanation:

Since, the sentence starts talking about the leader of the opposition, the connecting statement will be R as it carries a relative pronoun ‘who’ which relates the sentences. S follows as it states the disappointment of the leader and the next statement talked about the reason of disappointment. P would be the concluding statement as it goes with the flow describing how the leader decided to convince the assembly and thus makes a coherent paragraph.

The correct formation would be, ‘The leader of the opposition who had a reputation for speech making was very much disappointed on realising that he had failed to convince the assembly in the manner he had planned to convince them’.

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2046
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 2045