Questions

Q:

What is the Focus of an Earthquake?

Answer

A Focus of an earthquake is the location where the earthquake begins. The ground ruptures at this spot, then seismic waves radiate outward in all directions.

At this focus point, the release of energy due to faulting actually occurs during an earthquake. The point directly above the focus on the surface is called Epicenter.


The focus is also called as Hypocenter as it is the synonym of the focus.

Report Error

View answer Workspace Report Error Discuss

Subject: General Awareness Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

3 1994
Q:

Which of the following does not belong to the group?

A) UNIX B) MS-DOS
C) WINDOWS D) FIREWALL
 
Answer & Explanation Answer: D) FIREWALL

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

20 1994
Q:

In the following question, a sentence has been given in Direct/Indirect speech. Out of the four alternatives suggested, select the one, which best express the same sentence in Indirect/Direct speech.

The coach said, "Don’t move, boys."

A) The coach told to the boys don't move. B) The coach said to the boys not to be moving.
C) The coach asked the boys not to move. D) The coach told to them, don't move boys.
 
Answer & Explanation Answer: C) The coach asked the boys not to move.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 1993
Q:

Who is the custodian of Contingency Fund of India?

A) The Prime Minister B) Judge of Supreme Court
C) The President D) The Finance Minister
 
Answer & Explanation Answer: C) The President

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 1992
Q:

The main products of photosynthesis are

A) Oxygen B) Sugar
C) Both A & B D) Carbon dioxide
 
Answer & Explanation Answer: C) Both A & B

Explanation:

The two main products of photosynthesis are sugar and oxygen. Oxygen is emitted as waste product and sugar is used for energy preparation using sun light.

Report Error

View Answer Report Error Discuss

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

1 1992
Q:

A perfectly inelastic demand curve

A) Vertical with some steep B) Perfectly horizontal
C) Horizontal with some steep D) Perfectly vertical
 
Answer & Explanation Answer: D) Perfectly vertical

Explanation:

A perfectly inelastic demand curve is perfectly vertical either up or down in any way.

Report Error

View Answer Report Error Discuss

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

1 1992
Q:

Which city was adjudged as India's Cleanest City for the third consecutive year as per Swachh Survekshan 2019?

A) Indore B) Mysuru
C) Ambikapur D) Bhopal
 
Answer & Explanation Answer: A) Indore

Explanation:

Indore city was adjudged as India's Cleanest City for the third consecutive year as per Swachh Survekshan 2019.

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 1992
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 1992