Questions

Q:

Groundwater is found underground in the zone of

A) Penetration B) Aeration
C) Saturation D) Both B & C
 
Answer & Explanation Answer: D) Both B & C

Explanation:

Groundwater is all the water that has penetrated the earth's surface and is found in one of two soil layers. The one nearest the surface is the "zone of aeration", where gaps between soil are filled with both air and water. Below this layer is the "zone of saturation", where the gaps are filled with water.

Report Error

View Answer Report Error Discuss

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

2 2047
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 2047
Q:

When the diaphragm and external intercostal muscles contract,

A) the volume of the thorax decreases. B) the volume of the lungs decreases.
C) the volume of the thorax increases. D) the lungs shrink.
 
Answer & Explanation Answer: C) the volume of the thorax increases.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

3 2046
Q:

In the following question, out of the four alternatives, select the alternative which is the best substitute of the phrase.

 

An achievement or something desired fail to be attained by someone

 

A) to elude B) to eschew
C) to shirk D) to devoid
 
Answer & Explanation Answer: A) to elude

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2046
Q:

Weight of a person at a height of 2R from the centre of the earth, where R is the radius of the earth _______.

A) remains same B) becomes half
C) becomes twice D) becomes one­-fourth
 
Answer & Explanation Answer: D) becomes one­-fourth

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

6 2045
Q:

India successfully launched Chandrayaan1 satellite in

A) 2008 B) 2006
C) 2010 D) 2013
 
Answer & Explanation Answer: A) 2008

Explanation:

India successfully launched Chandrayaan1 satellite from SDSC Sriharikota, Andhra Pradesh on 22 October, 2008.

Report Error

View Answer Report Error Discuss

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

3 2045
Q:

To keep warm, polar bears have a layer of ________ under their skin.

A) muscle B) fat
C) cartilage D) hair
 
Answer & Explanation Answer: B) fat

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2045
Q:

What are good sources of fat for the body?

A) Fish and eggs B) Nuts
C) Cheese D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The foods that are good source of fat and incredibly healthy to the body ar fatty fish, eggs, nuts, cheese, avocados, dark chocolates, etc...

Report Error

View Answer Report Error Discuss

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

4 2045