Questions

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.

It's nothing short of a revolution in how we eat, and it's getting closer every day. Yes, a lot of people are obese, and yes, the definition of "healthy eating" seems to change all the time. But in labs and research centres around the world, scientists are racing to match our genes and our taste buds, creating the perfect diet for each of us, a diet that will fight disease, increase longevity, boost physical and mental performance, and taste great to boot. As food scientist J.Bruce German says, "The foods we like the most will be the most healthy for us."

Is that going to be a great day, or what?

All this will come to pass, thanks to genomics, the science that maps and describes an individual's genetic code. In the future, personalized DNA chips will allow us to assess our own inherited predispositions for certain diseases, then adjust our diets accordingly. So, if you're at risk for heart disease, you won't just go on a generic low-fat diet. You'll eat foods with just the right amount and type of fat that's best for you. You'll even be able to track your metabolism day-to-day to determine what foods you should eat at any given time, for any given activity. "Since people differ in their genetics and metabolism, one diet won't fit all," says German. As complex as all this sounds, it could turn out to be relatively simple.

Why won't a common diet fit everybody?

A) Because different people eat different food B) Because their genes are different
C) Since they differ in genetics and metabolism D) Because of their different moods
 
Answer & Explanation Answer: C) Since they differ in genetics and metabolism

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2744
Q:

Major fructose sources include

A) breads and cereals B) beer and liquor
C) milk and cheese D) fruits and honey
 
Answer & Explanation Answer: D) fruits and honey

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2743
Q:

In which body cavities are the lungs located

A) Pelvic cavity B) Thoracic cavity
C) Abdominal cavity D) Body cavity
 
Answer & Explanation Answer: B) Thoracic cavity

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2743
Q:

In the given question, a part of the sentence is printed in bold. Below the sentence, three alternatives to the bold part are given which may help improve the sentence. Choose the option that reflects the correct use of the phrase in the context of the sentence. In case the given sentence is correct, your answer is (E) i.e. No correction required.

Monu and Sonu attempted to make light their difficulties, but it was obvious that things were going badly for them.

i attempted to make their difficulties light

ii has attempted to make light their difficulties

iii attempted to make light of their difficulties

A) Only I B) Only ii
C) Only iii D) Both ii and iii
 
Answer & Explanation Answer: C) Only iii

Explanation:
The correct option is 3 because the correct phrase that should be used here is ‘make light of their difficulties.’ It means ‘trying to treat something as though it is not serious or important, when it in fact is.
Report Error

View Answer Report Error Discuss

Filed Under: English

2 2743
Q:

Write a c program for binary search.

Answer

#include<stdio.h>
int main(){

    int a[10],i,n,m,c=0,l,u,mid;

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

    printf("Enter the elements in ascending order: ");
    for(i=0;i<n;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);

    l=0,u=n-1;
    while(l<=u){
         mid=(l+u)/2;
         if(m==a[mid]){
             c=1;
             break;
         }
         else if(m<a[mid]){
             u=mid-1;
         }
         else
             l=mid+1;
    }
    if(c==0)
         printf("The number is not found.");
    else
         printf("The number is found.");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements in ascending order: 4 7 8 11 21
Enter the number to be search: 11
The number is found.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2742
Q:

What was the name of the mission that first landed men on the moon?

Answer

Apollo 11

Report Error

View answer Workspace Report Error Discuss

0 2742
Q:

Name the sea demoness known for trapping birds by illusion, who tried to obstruct Hanuman on his way to Lanka?

Answer

Simhika

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Culture

33 2741
Q:

Factors that aid venous return include all except

A) pressure changes in the thorax B) urinary output
C) activity of skeletal muscles D) venous valves
 
Answer & Explanation Answer: B) urinary output

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2741