Questions

Q:

In the following question, the sentence given with blank to be filled in with an appropriate word. Select the correct alternative out of the four and indicate it by selecting the appropriate option.

The warning bells __________several times before anyone realized the danger.

A) were ringing B) had rung
C) had rang D) would have rung
 
Answer & Explanation Answer: B) had rung

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT , GRE

0 2157
Q:

What is the value of the Least Distance of Distinct vision (in cm) for a normal human being?

A) 2.5 B) 25
C) 58 D) 60
 
Answer & Explanation Answer: B) 25

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

12 2156
Q:

Which of the following is not true about X­rays?

A) have low penetrating power B) travel with the speed of light
C) Can be reflected or refracted D) can affect photographic plates
 
Answer & Explanation Answer: A) have low penetrating power

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

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

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.

Rise and shine

A) Work hard and succeed in life B) An expression used when waking someone up
C) Try harder to overcome life's problems D) Be of spotless character
 
Answer & Explanation Answer: B) An expression used when waking someone up

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2156
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 expresses the same sentence in Indirect/Direct speech.

My father says, "Prices are shooting up alarmingly."

A) My father says that prices shoot up alarmingly. B) My father says that the price was shooting up alarmingly.
C) My father says that prices shot up alarmingly. D) My father said that the prices were shooting up alarmingly.
 
Answer & Explanation Answer: D) My father said that the prices were shooting up alarmingly.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2156
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.


Learning is the knowledge of that which is not generally known to others, and which we can only derive at second­hand from books or other artificial sources. The knowledge of that which is before us, or about us, which appeals to our experience, passions, and pursuits, to the bosoms and businesses of men, is not learning. Learning is the knowledge of that which none but the learned know. He is the most learned man who knows the most of what is farthest removed from common life and actual observation. The learned man prides himself in the knowledge of names, and dates, not of men or things. He thinks and cares nothing about his next­door neighbours, but he is deeply read in the tribes and castes of the Hindoos and Calmuc Tartars. He can hardly find his way into the next street, though he is acquainted with the exact dimensions of Constantinople and Peking. He does not know whether his oldest acquaintance is a knave or a fool, but he can pronounce a pompous lecture on all the principal characters in history. He cannot tell whether an object is black or white, round or square, and yet he is a professed master of the optics and the rules of perspective.


A learned man, as described in the passage,

A) cares about men and things B) does not care about men and things
C) cares about the shapes of objects. D) cares about his neighbours
 
Answer & Explanation Answer: B) does not care about men and things

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2155
Q:

The sentences given with blanks are to be filled with an appropriate word(s). Four alternatives are suggested for each question. For each question, choose the correct alternative and click the button corresponding to it.

Food was packed, and they__________, a merry, delighted party.

A) went off B) start off
C) cut off D) set off
 
Answer & Explanation Answer: D) set off

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2155