Questions

Q:

Write a program to generate the Fibonacci series in c?

Answer

 #include<stdio.h>
int main(){
    int k,r;
    long int i=0l,j=1,f;

    //Taking maximum numbers form user
    printf("Enter the number range:");
    scanf("%d",&r);

    printf("FIBONACCI SERIES: ");
    printf("%ld %ld",i,j); //printing firts two values.

    for(k=2;k<r;k++){
         f=i+j;
         i=j;
         j=f;
         printf(" %ld",j);
    }
 
    return 0;
}

Sample output:
Enter the number range: 15
FIBONACCI SERIES: 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2291
Q:

The thyroid hormone that regulates carbohydrate metabolism is

A) Parathyroid B) Thyroxin
C) Parathormone D) Estrogen
 
Answer & Explanation Answer: B) Thyroxin

Explanation:

Thyroxin or Thyroxine is the thyroid hormone that regulates carbohydrate metabolism in the human body.

Report Error

View Answer Report Error Discuss

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

1 2291
Q:

What is source route?

Answer

It is a sequence of IP addresses identifying the route a datagram must follow. A source route may optionally be included in an IP datagram header

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

1 2290
Q:

Which type of bond is found in sodium bromide?

A) Ionic B) Covalent
C) Polar covalent D) None of the above
 
Answer & Explanation Answer: A) Ionic

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2290
Q:

When insulin is released, it causes

A) Amount of glucose in blood decreases B) Amount of glucose in blood increases
C) Amount of bile juice increases D) Amount of bile juice decreases
 
Answer & Explanation Answer: A) Amount of glucose in blood decreases

Explanation:

We know that, when we eat a meal, any carbohydrates we've eaten are broken down into glucose and passed into the bloodstream. This rise in blood glucose causes insulin to be released from the pancreas so glucose can move inside the cells and be used. As glucose moves inside the cells, the amount of glucose in the bloodstream returns to normal and insulin release slows down.

Report Error

View Answer Report Error Discuss

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

3 2289
Q:

Ancient music was produced by what type of culture?

A) modem B) large
C) literate D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:
Report Error

View Answer Report Error Discuss

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

11 2289
Q:

What is a Multi-homed Host?

Answer

It is a host that has a multiple network interfaces and that requires multiple IP addresses is called as a Multi-homed Host

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

1 2289
Q:

Which of the following is a World Bank group of five institutions

A) IMF B) IDA
C) ILO D) ITU
 
Answer & Explanation Answer: B) IDA

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

1 2289