Questions

Q:

In the following question, out of the given four alternatives, select the one which best expresses the meaning of the given word

Empirical

A)

Practical

B)

Unproved

C)

Hypothetical

D)

Theoretical

 
Answer & Explanation Answer: A)

Practical



Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT , GRE , TOEFL
Job Role: Bank Clerk , Bank PO

0 2063
Q:

What is a normal pH level in blood?

A) 7.35 - 7.45 B) 7.45 - 7.55
C) 7.6 - 7.7 D) 7 - 7.10
 
Answer & Explanation Answer: A) 7.35 - 7.45

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2063
Q:

Why is argon gas used along with tungsten wire in an electric bulb?

A) To increase the life of the bulb B) To reduce the consumption of electricity
C) To make the emitted light colored D) To reduce the cost of the bulb
 
Answer & Explanation Answer: A) To increase the life of the bulb

Explanation:

Argon gas is used in fluorescent and incandescent light bulbs to stop the oxygen in the light bulbs from corroding the hot tungsten filament.

The use of argon in light bulbs prevents the evaporation of the tungsten filaments, which results in increased light bulb life.

Argon is also used to create an inert atmosphere for growing semiconductor crystals, arc welding and for processes that need protection from other kinds of atmospheric gases.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

1 2063
Q:

Which base is present in soap?

A) Sodium hydroxide B) Silicon dioxide
C) Calcium hydroxide D) Ammonium hydroxide
 
Answer & Explanation Answer: A) Sodium hydroxide

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

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

What did you enjoy most and least in your last retailing job?

Answer

i enjoy the most learning new things like staff management,motivation,management,smart working etc. i enjoy the least free timing during my job.

Report Error

View answer Workspace Report Error Discuss

Subject: Retail

0 2063
Q:

Who were awarded the Maharashtra state Govt’s Shiv Chhatrapati Award?

A) Smriti Mandhana B) Sachin Pilot
C) Saina Nehwal D) Periyar
 
Answer & Explanation Answer: A) Smriti Mandhana

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

Which planet of the solar system has the highest orbital speed?

A) Saturn B) Jupiter
C) Mercury D) Earth
 
Answer & Explanation Answer: C) Mercury

Explanation:

The Mercury, planet of the solar system has the highest orbital speed.

Report Error

View Answer Report Error Discuss

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

2 2062