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

What is the minimum age for the post of the chief minister of any state?

A) 35 yrs B) 21 yrs
C) 25 yrs D) 45 yrs
 
Answer & Explanation Answer: C) 25 yrs

Explanation:

The minimum age for the post of the chief minister of any state is 25 years.

Report Error

View Answer Report Error Discuss

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

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

Atrophy is a condition that occurs when

A) muscle decreases in size and function because of disease or trauma B) carbon dioxide, lactic acid, and other wastes accumulate in the muscle
C) increased use of skeletal muscle causes an increase in its strength D) the tendons that attach muscle to bone become stretched or injured
 
Answer & Explanation Answer: A) muscle decreases in size and function because of disease or trauma

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE
Job Role: Analyst

1 1990
Q:

What is LB Shastri’s memorial?

A) Bapughat B) Veerghat
C) Vijayghat D) None of the above
 
Answer & Explanation Answer: C) Vijayghat

Explanation:
Report Error

View Answer Report Error Discuss

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

2 1989
Q:

In which of the following state its first mega food park was inaugurated?

A) Karnataka B) Telangana
C) Gujarat D) Punjab
 
Answer & Explanation Answer: C) Gujarat

Explanation:
Report Error

View Answer Report Error Discuss

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

0 1988
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 1988