Questions

Q:

Vinegar is __________ .

A) diluted acetic acid B) glacial acetic acid
C) glacial formic acid D) diluted formic acid
 
Answer & Explanation Answer: A) diluted acetic acid

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

1 2068
Q:

Which of the following choices is a sound argument?

A) All teachers wear sarees. Mrs. Gomati does not wear a saree. Therefore, Mrs. Gomati is not a teacher. B) All turtles are reptiles. The snake is not a turtle. Therefore, the snake is not a reptile.
C) Amitav Ghosh is an author. Arundati Roy is an author. Therefore, I want to be an author. D) All of the above
 
Answer & Explanation Answer: A) All teachers wear sarees. Mrs. Gomati does not wear a saree. Therefore, Mrs. Gomati is not a teacher.

Explanation:

From the given choices, "All teachers wear sarees. Mrs. Gomati does not wear a saree. Therefore, Mrs. Gomati is not a teacher" is a sound argument.

Report Error

View Answer Report Error Discuss

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

0 2068
Q:

Out of the four alternatives, choose the one which can be substituted for the given words/sentences and click the button corresponding to it.

Regular users of places/restaurant etc.

A) Client B) Clientele
C) Often D) Usage
 
Answer & Explanation Answer: B) Clientele

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2068
Q:

Which is the India's largest milk producing state?

A) Andhra Pradesh B) Uttar Pradesh
C) Himachal Pradesh D) Madhya Pradesh
 
Answer & Explanation Answer: B) Uttar Pradesh

Explanation:

Uttar Pradesh is the India's largest milk producing state. It contributes 17% of the total milk production in the country followed by Andhra Pradesh.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Job Role: Analyst , Bank Clerk , Bank PO

5 2068
Q:

In what city would you find the world's tallest building?

Answer

Dubai

Report Error

View answer Workspace Report Error Discuss

Subject: World Geography

1 2067
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 2067
Q:

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

 

An opinion or conclusion formed on the basis of incomplete information

 

A) Proof B) Conjecture
C) Clincher D) Averment
 
Answer & Explanation Answer: B) Conjecture

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 2067
Q:

In the following question, out of the given four alternatives, select the alternative which best expresses the meaning of the Idiom/Phrase.

 

In a flutter

A) Effective B) Almost nothing
C) In a nervous state D) Certain
 
Answer & Explanation Answer: C) In a nervous state

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2067