Questions

Q:

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

good Samaritan

A) a very rich but humble person B) a person who helps others but with a hidden cause
C) a charitable or helpful person D) a person who accepts defeat sportingly
 
Answer & Explanation Answer: C) a charitable or helpful person

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2137
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.

Few people know that flowers use textures to __________ different kinds of insects.

A) signal B) feel
C) attract D) distract
 
Answer & Explanation Answer: C) attract

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2137
Q:

A sentence has been given in Active/Passive Voice. Out of the four given alternatives, select the one which best expresses the same sentence inPassive/Active Voice.

Lily was making a fort.

A) Lily made a fort. B) A fort was being made by Lily.
C) A fort made by Lily. D) A fort got made by Lily.
 
Answer & Explanation Answer: B) A fort was being made by Lily.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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

When the Indian Space Research Organisation (ISRO) was set up?

A) 1952 B) 1959
C) 1964 D) 1969
 
Answer & Explanation Answer: D) 1969

Explanation:

The Indian Space Research Organisation is the space agency of the Government of India was set up in the year 1969, headquartered in the city of Bangalore. Its vision is to "harness space technology for national development while pursuing space science research and planetary exploration.

 

Report Error

View Answer Report Error Discuss

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

1 2137
Q:

What is the product formed when sodium bicarbonate is heated strongly?

A) Sodium Carbonate B) Sodium Hydroxide
C) Sodium Peroxide D) Sodium Monoxide
 
Answer & Explanation Answer: A) Sodium Carbonate

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 2137
Q:

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

Wear your heart on your sleeve

A) a very bold person B) a noble pure person
C) make one's feelings apparent D) being overtly polite at all times
 
Answer & Explanation Answer: C) make one's feelings apparent

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2136
Q:

Select the word with the correct spelling.

A) adoption B) crocusses
C) dollorous D) pallatine
 
Answer & Explanation Answer: A) adoption

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2136