Questions

Q:

Which word best describes the structure of the cell membrane?

A) Rigid B) Impermeable
C) Nonpolar D) Layered
 
Answer & Explanation Answer: D) Layered

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2067
Q:

During which change is energy absorbed?

A) Exothermic B) Endothermic
C) Both A & B D) Neither A nor B
 
Answer & Explanation Answer: B) Endothermic

Explanation:

Endothermic reaction is the reaction in which energy is obserbed for the change.

Report Error

View Answer Report Error Discuss

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

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

What is a job queue?

Answer

When a process enters the system it is placed in the job queue.

Report Error

View answer Workspace Report Error Discuss

0 2066
Q:

The white matter of the spinal cord contains

A) some have both myelinated and unmyelinated nerve fibers B) myelinated and unmyelinated nerve fibers
C) myelinated nerve fibers only D) unmyelinated nerve fibers only
 
Answer & Explanation Answer: B) myelinated and unmyelinated nerve fibers

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk

1 2066
Q:

Which of the following is called the 'Land of the Golden Pagoda'?

A) Myanmar B) China
C) Japan D) North Korea
 
Answer & Explanation Answer: A) Myanmar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

0 2066
Q:

Which of the following performs modulation and demodulation?

A) coaxial cable B) modem
C) fiber optic D) satellite
 
Answer & Explanation Answer: B) modem

Explanation:

A modem is a hardware device which performs both modulation and demodulation. MODEM means (Modulator-Demodulator).

 modem_1593758111.png image

 

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

1 2066
Q:

Read the passage carefully and choose the best answer to each question out of the four alternatives and click the button corresponding to it.

The first working steam­ powered vehicle was designed and most likely built by Ferdinand Verbies, a Flemish member of a Jesuit mission in China around 1672. It was a 65 cm long scale­ model toy for the Chinese Emperor, that was unable to carry a driver or a passenger. It is not known if Verbiest's model was ever built. Nicolas- Joseph Cugnot is widely credited with building the first full­ scale, self ­propelled mechanical vehicle or automobile in about 1769; he also created a steam­ powered tricycle. He constructed two steam tractors for the French Army, one of which is preserved in the French National Conservatory of Arts and Crafts. His inventions were however handicapped by problems of water supply and maintaining steam pressure. In 1801, Richard Trevithick built and demonstrated his Puffing Devil road locomotive, believed by many to be the first demonstration of a steam ­powered road vehicle. It was unable to maintain sufficient steam pressure for long periods. Sentiment against steam ­powered road vehicles led to the Locomotive Acts of 1865. In 1807 Nicephore Niepce and his brother Claude probably created the world's first internal combustion engine which they called Pyreolophore.

What is meant by "Sentiment" in the context of the given paragraph?

A) Depression B) Fascination
C) Celebration D) Resentment
 
Answer & Explanation Answer: D) Resentment

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2066