Questions

Q:

Define what is Six Sigma?

Answer



Six sigma is a data-driven technique and way for eliminating defects in any progress from product to service and from manufacturing to transactional.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Manufacturing

2 1992
Q:

The book 'Sudhir Sukta' was written by

A) Vishnu Wagh B) Nazir Ahmad Wani
C) Andrea Levy D) Tian Er
 
Answer & Explanation Answer: A) Vishnu Wagh

Explanation:
Report Error

View Answer Report Error Discuss

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

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

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:

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 1991
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 1991
Q:

Which of the following is responsible for regulating noise pollution?

A) Central authorities B) State authorities
C) Local authorities D) Both B & C
 
Answer & Explanation Answer: D) Both B & C

Explanation:

Both State and Local governments are responsible for regulating noise pollution. Noise pollution refers to the high noise level that we can not bear.

Report Error

View Answer Report Error Discuss

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

1 1990