Questions

Q:

In the following question, four words are given out of which one word is incorrectly spelt. Find the incorrectly spelt word.

A) Reside B) Revise
C) Advise D) Demice
 
Answer & Explanation Answer: D) Demice

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2157
Q:

In the following questions, 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.

Management is a set of _____ that can keep a complicated system of people and technology running _____. The most _____ aspects of management include planning, budgeting, organizing, staffing, controlling and problem solving. Leadership is a set of process that creates organization in the first place or adapts, them to _____ changing circumstances. Leadership defines what the future should look like, aligns people with that _____ and inspires them to make it happen despite the obstacles.

Leadership defines what the future should look like, aligns people with that _____ and inspires them to make it happen despite the obstacles.

A) look B) role
C) source D) vision
 
Answer & Explanation Answer: D) vision

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2157
Q:

Persons with type AB blood are sometimes called universal donors.

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

Persons with type AB blood are sometimes called universal donors is a FALSE statement. 


 


Persons with type AB blood are sometimes called universal recepients.


 


Persons with type O blood  are called universal donors.


 

Report Error

View Answer Workspace Report Error Discuss

Subject: Biology
Exam Prep: Bank Exams

5 2157
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 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 2157
Q:

Henry T. Colebrooke was a Professor of Sanskrit in which one of the following institutions?

A) Fort William College B) Serampore Mission
C) Kashi Vidyapith D) Asiatic Society
 
Answer & Explanation Answer: A) Fort William College

Explanation:

In 1782 Colebrooke was appointed through his father's influence to a writer-ship with the East a India Company in Calcutta.Lord Wellesley appointed him honorary professor of Hindu law and Sanskrit at the college of Fort William.

Report Error

View Answer Report Error Discuss

Filed Under: Famous Personalities
Exam Prep: Bank Exams

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

Out of the four alternatives, choose the one which can be substituted for the given words/sentences and click the button corresponding to it.

A notice of a person's death

A) Memorandum B) Obituary
C) Reminder D) Rejoinder
 
Answer & Explanation Answer: B) Obituary

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2156