Questions

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

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:

Al-Masudi, a resident of Baghdad, had visited India in whose reign?

A) Mahendra Pal B) Mahipal
C) Mihir bhoj D) Rambhadra
 
Answer & Explanation Answer: B) Mahipal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

3 2067
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:

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.
Heena said, "I bought a dress yesterday."

A) Heena said that she has bought a dress the day before. B) Heena said that she had bought a dress the day before.
C) Heena said that she has bought a dress the day before yesterday. D) Heena said that she had bought a dress the day before yesterday.
 
Answer & Explanation Answer: B) Heena said that she had bought a dress the day before.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2067
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 2066
Q:

In the following question, out of the four alternatives, select the alternative which will improve the bracketed part of the sentence. In case no improvement isneeded, select "no improvement".

My daughter (comes running) as fast as her little feet can take her while her eyes sparkle vivaciously

A) comes run B) come running
C) came run D) no improvement
 
Answer & Explanation Answer: D) no improvement

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2066