Questions

Q:

In the following questions, one part of the sentence may have an error. Find out which part of the sentence has an error and click the button corresponding to it. If the sentence is free from error, click the “No error” option.

The angry bird flap (A) / her wings, flies a short (B) / distance and returns. (C) / No error (D)

A) A B) B
C) C D) D
 
Answer & Explanation Answer: A) A

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2157
Q:

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

a region of injured tissue or skin in which blood capillaries have been ruptured; a bruise.

A) pustule B) knurl
C) contusion D) tumour
 
Answer & Explanation Answer: C) contusion

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2157
Q:

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

 

Too many Chiefs and not enough Indians.

A) a proud gathering B) an inefficient situation
C) an anti-national meeting D) a top-level meeting
 
Answer & Explanation Answer: B) an inefficient situation

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2157
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:

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, some part of the sentence may have errors. Find out which part of the sentence has an error and select the appropriate option. If a sentence is free from error, select 'No Error'.

Nothing fantastic there, (A)/nor anything Riya would find(B)/either threatening nor interesting.(C)/No error(D)

 

A) A B) B
C) C D) D
 
Answer & Explanation Answer: C) C

Explanation:
Report Error

View Answer Report Error Discuss

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

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

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