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

Project Management Processes

What is the underlying concept for the interaction among the project management processes?

Answer

Plan-do-check-act cycle

Report Error

View answer Workspace Report Error Discuss

0 2333
Q:

Select the antonym of
frazzle

A) prostration B) vigour
C) enervation D) lassitude
 
Answer & Explanation Answer: B) vigour

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2333
Q:

"Sultan Johor Cup" is associated with ______.

A) Hockey B) Cricket
C) Football D) Golf
 
Answer & Explanation Answer: A) Hockey

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Sports
Exam Prep: Bank Exams

0 2332
Q:

Which memory is stored permanently?

A) RAM B) Computer cache
C) Hard drive D) All of the above
 
Answer & Explanation Answer: C) Hard drive

Explanation:

The memory which can be retained even the power is off is called as Permanent memory or Persistent memory. Computer's hard drive is an example of permanent memory and computer's cache or RAM are examples of temporary memory.

Report Error

View Answer Report Error Discuss

2 2332
Q:

Time period of a seconds pendulum is

A) 2 seconds B) 4 seconds
C) 1 seconds D) 0 seconds
 
Answer & Explanation Answer: A) 2 seconds

Explanation:

A seconds pendulum is a pendulum whose period is precisely two seconds i.e, one second for a swing in one direction and one second for the return swing.

Report Error

View Answer Report Error Discuss

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

4 2331
Q:

In order to make an electromagnet you need a

A) Dry cell batteries B) Thin coated copper wire
C) Iron nail D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

To create a simple electromagnet, you'll need a source of electricity, a conductor, and metal. Wrap insulated copper wire tightly around an iron screw or nail before connecting the wire to a battery, and watch as your new electromagnet picks up small metal objects.

 

Report Error

View Answer Report Error Discuss

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

3 2331
Q:

What is Mail Gateway

Answer

It is a system that performs a protocol translation between different electronic mail delivery protocols

Report Error

View answer Workspace Report Error Discuss

Subject: Networking
Job Role: Network Engineer

0 2331