Questions

Q:

The compound used in prickly-­heat powder to prevent excessive sweating is

A) Boric acid B) Phosphoric acid
C) Carbonic acid D) Sulphonic acid
 
Answer & Explanation Answer: A) Boric acid

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 2008
Q:

Write a c program to check whether a number is strong or not.

Answer

#include<stdio.h>
int main(){
  int num,i,f,r,sum=0,temp;

  printf("Enter a number: ");
  scanf("%d",&num);
 
  temp=num;
  while(num){
      i=1,f=1;
      r=num%10;

      while(i<=r){
         f=f*i;
        i++;
      }
      sum=sum+f;
      num=num/10;
  }
  if(sum==temp)
      printf("%d is a strong number",temp);
  else
      printf("%d is not a strong number",temp);

  return 0;
}

Sample output:
Enter a number: 145
145 is a strong number

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2008
Q:

3 functions of the nervous system?

Answer

The nervous system is the part of an animal that coordinates its actions by transmitting signals to and from different parts of its body.


 


In vertebrates it consists of two main parts, the central nervous system (CNS) and the peripheral nervous system (PNS). The CNS consists of the brain and spinal cord. The PNS consists mainly of nerves, which are enclosed bundles of the long fibers or axons, that connect the CNS to every other part of the body.


 


The nervous system has three main functions:


* To collect sensory input from the body and external environment.


* To process and interpret the sensory input.


* To respond appropriately to the sensory input.

Report Error

View answer Workspace Report Error Discuss

Subject: General Science Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

4 2007
Q:

How CNG is a cleaner fuel?

I. It produces oxides of Sulphur and Nitrogen in very small amounts.
II. It makes environment less polluted.
III. It emits less greenhouse gases.

A) Only I and II B) Only II and III
C) Only I and III D) All I, II and III
 
Answer & Explanation Answer: D) All I, II and III

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science

3 2007
Q:

Which describes a Mendelian trait?

A) Humans either have attached earlobes or detached earlobes B) Blood type in humans has several different alleles
C) Plants can grow to a wide range of heights D) Human body mass is controlled by many genes
 
Answer & Explanation Answer: A) Humans either have attached earlobes or detached earlobes

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2006
Q:

Which Protein regulates milk production in mammals?

A) Elastin B) Actin
C) Prolactin D) Collagen
 
Answer & Explanation Answer: C) Prolactin

Explanation:

The Prolactin Protein regulates milk production in mammals.

Report Error

View Answer Report Error Discuss

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

4 2006
Q:

Male is the Capital of ___________.

A) Algeria B) Maldives
C) Kenya D) Mauritius
 
Answer & Explanation Answer: B) Maldives

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Country Capitals
Exam Prep: Bank Exams

5 2006
Q:

What are the major flags in 8086?

Answer

In 8086 Carry flag, Parity flag, Ausiliary caarry flag, Zero flag, Overflow flag, Trace flag, Interrupt flag, Direction flag, and Sign flag.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2006