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 2217
Q:

Who is called 'the father of modern African writing " novelist?

Answer

Chinua Achebe.

Report Error

View answer Workspace Report Error Discuss

1 2216
Q:

Which state has recorded highest number of tigers in 2018?

A) Karnataka B) Madhya Pradesh
C) Chhattisgarh D) Uttarakhand
 
Answer & Explanation Answer: B) Madhya Pradesh

Explanation:

India being number one in the Tiger population all over the world, Madhya Pradesh state has the highest number of tigers with 526 tigers and Karnataka is second with 524.

Report Error

View Answer Report Error Discuss

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

4 2215
Q:

Project Procurement Management

What are the Project Management Processes included in the Project Procurement Management?

Answer

The Project Procurement Management processes include the following:


Plan Purchases and Acquisitions - determining what to purchase or acquire and determining when and how.


Plan Contracting - documenting products, services, and results requirements and identifying potential sellers.


Request Seller Responses - obtaining information, quotations, bids, offers, or proposals, as appropriate.


Select Sellers - reviewing offers, choosing among potential sellers, and negotiating a written contract with each seller.


Contract Administration - managing the contract and relationship between the buyer and seller , reviewing and documenting how a seller is performing or has performed to establish required corrective actions and provide a basis for future relationships with the seller, managing contract-related changes and, when appropriate , managing the contractual relationship with the outside  buyer of the project.


Contract Closure - completing and settling each contract, including the resolution of any open items, and closing each contract applicable to the project or a project phase 

Report Error

View answer Workspace Report Error Discuss

0 2214
Q:

Process by which sediment is removed from its source is called

A) deposition B) erosion
C) weathering D) composition
 
Answer & Explanation Answer: B) erosion

Explanation:

Process by which sediment is removed from its source is called Erosion.

Report Error

View Answer Report Error Discuss

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

1 2213
Q:

Why do you need common fields in a Database?

Answer

A database that contains multiple tables related through common fields.


A common field is a field of data that is shared among all forms in a database. Without them, it would be difficult and/or time-consuming to create other forms.

Report Error

View answer Workspace Report Error Discuss

6 2212
Q:

What is the state of the processor, when a process is waiting for some event to occur?

Answer

Waiting state

Report Error

View answer Workspace Report Error Discuss

2 2212
Q:

What travels around the world but stays in one corner?

A) slippers B) walking stick
C) broom stick D) stamp
 
Answer & Explanation Answer: D) stamp

Explanation:

A postage stamp on the letters, parcels, ... for post will be on the corner of the post but it travels around the world to any address we want send that.

what_travels_around_the_world_but_stays_in_one_corner1536045648.jpg image

Report Error

View Answer Report Error Discuss

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

1 2211