Questions

Q:

How many bottles of water is a gallon?

A) 16 B) 8
C) 4 D) 2
 
Answer & Explanation Answer: B) 8

Explanation:

The easiest way would measure it through half a liter water bottle. There are approximately 16.9 ounces(oz) of water in a 500ml water bottle.

 

Gallon is an imperial customary volume unit for the U.S.

 

As we have previously mentioned, the 16.9oz bottle is also known as 500ml in the metric system. According to U.S. standard, 1 gallon stands for 128 fluid oz.

 

Hence, Number of bottles in 1 gallon = 128/16.9 = 7.57 =~ 8.

Report Error

View Answer Report Error Discuss

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

2 2729
Q:

What property of matter is momentum related to?

A) mass B) velocity
C) Both A & B D) None of the above
 
Answer & Explanation Answer: C) Both A & B

Explanation:

At any given speed, momentum is directly proportional to mass of an object.

Report Error

View Answer Report Error Discuss

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

5 2729
Q:

Which one of the following factors contributes to hypertension? 

A) A vigorous exercise regimen B) A diet that lacks protein
C) A high-fat diet D) A lack of sleep
 
Answer & Explanation Answer: C) A high-fat diet

Explanation:

In the given options, a high-fat diet is the only factor that contributes to hypertension.

Report Error

View Answer Report Error Discuss

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

1 2728
Q:

what are the hardware interrupts?

Answer

TRAP, RST7.5, RST6.5, RST5.5, INTR.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2728
Q:

Write a c program for quick sort.

Answer

#include<stdio.h>

void quicksort(int [10],int,int);

int main(){
  int x[20],size,i;

  printf("Enter size of the array: ");
  scanf("%d",&size);

  printf("Enter %d elements: ",size);
  for(i=0;i<size;i++)
    scanf("%d",&x[i]);

  quicksort(x,0,size-1);

  printf("Sorted elements: ");
  for(i=0;i<size;i++)
    printf(" %d",x[i]);

  return 0;
}

void quicksort(int x[10],int first,int last){
    int pivot,j,temp,i;

     if(first<last){
         pivot=first;
         i=first;
         j=last;

         while(i<j){
             while(x[i]<=x[pivot]&&i<last)
                 i++;
             while(x[j]>x[pivot])
                 j--;
             if(i<j){
                 temp=x[i];
                  x[i]=x[j];
                  x[j]=temp;
             }
         }

         temp=x[pivot];
         x[pivot]=x[j];
         x[j]=temp;
         quicksort(x,first,j-1);
         quicksort(x,j+1,last);

    }
}

Output:
Enter size of the array: 5
Enter 5 elements: 3 8 0 1 2
Sorted elements: 0 1 2 3 8

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2726
Q:

Which of the following is not a function of proteins?

A) Build tissues such as bone and muscle B) Help to fight disease
C) Nail formation D) Store and transmit Heredity
 
Answer & Explanation Answer: D) Store and transmit Heredity

Explanation:

Protiens can help fight specific diseases, always there to regulate cell processes and build muscle/tissues.


Structural proteins also known as Fibrous proteins, are necessary components of your body. They include collagen, keratin and elastin. Collagen forms the connective framework of your muscles, bones, tendons, skin and cartilage. Keratin is the main structural component in hair, nails, teeth and skin.

 

  • Nucleic acids store and transmit heredity.
Report Error

View Answer Report Error Discuss

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

8 2726
Q:

How many Enzymes are there in the Human Body?

Answer

There are nearly about 75000 enzymes of 3 classes are there in the human body. They are :


1. Metabolic Enzymes - Enzymes that help to run our Bodies


2. Digestive Enzymes - Enzymes that help in digesting Food


3. Food Enzymes - Enzymes from raw foods that start our Food digestion.

Report Error

View answer Workspace Report Error Discuss

Subject: Biology Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank PO

11 2725
Q:

Promotions and promotion mix :

What about the budget? We want our promotional campaigns to be cost effective enough. I don’t think we can afford celebrity endorsements as of now!

Answer

No problem. We can use network marketing as an alternative. The company already has its strong network of customers who can spread the word about its products. They can encourage referral rewards for say every three customers who will buy our product or avail our service.


We can also announce a contest for the customers to buy the product and win a chance to get himself broadcasted for the product advertisement. We can ask them to send in their photo along with the contest application form which they get alongwith the product they buy. So we don’t have to pay them as we would otherwise have to pay to a celebrity.

Report Error

View answer Workspace Report Error Discuss

0 2724