Questions

Q:

Goa got freedom from which rule?

A) Portuguese B) Romans
C) Britishers D) None of the above
 
Answer & Explanation Answer: A) Portuguese

Explanation:
Report Error

View Answer Report Error Discuss

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

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

Which is the largest gland in the human body?

A) Pituitary B) Liver
C) Pineal D) Adrenal
 
Answer & Explanation Answer: B) Liver

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2145
Q:

Mangroves are plants that have

A) Modified Roots B) Modified Stems
C) Respiratory Roots D) Respiratory Stems
 
Answer & Explanation Answer: C) Respiratory Roots

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

4 2145
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'.

When I returned I felt (1)/ a big cat brush side me (2)/ as I opened the door. (3)/No Error (4)

A) 1 B) 2
C) 3 D) 4
 
Answer & Explanation Answer: B) 2

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2145
Q:

In the following question, a sentence has been given in Active/Passive voice. Out of the four alternatives suggested, select the one which best expresses the same sentence in Passive/Active voice.

 

I applied band-aid to the wound.

A) To my wound I applied my Band-aid by myself. B) Band-aid by myself would be applied to the wound.
C) Application of the Band-aid to the wound was done my me. D) Band-aid was applied by me to the wound.
 
Answer & Explanation Answer: D) Band-aid was applied by me to the wound.

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2145
Q:

In the following question, a sentence has been given in Active/Passive voice. Out of the four alternatives suggested, select the one which best expresses the same sentence in Passive/Active voice.

 

The authorities are mistreating the prisoners.

A) The prisoners will be mistreated by the authorities. B) The authorities mistreat the prisoners.
C) The prisoners are being mistreated by the authorities. D) Mistreating of the prisoners will be done by the authorities.
 
Answer & Explanation Answer: C) The prisoners are being mistreated by the authorities.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2145
Q:

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

to get over it

A) to accept something that happened in the past and move on B) to complete a project or task
C) to control one's anger D) to achieve something seemingly easy, but with a lot of difficulty
 
Answer & Explanation Answer: A) to accept something that happened in the past and move on

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2144