Answer:
The Python Code for Fibonacci Sequence is :
# Function for nth Fibonacci number
def Fibonacci(n):
if n<0:
print("Incorrect input")
# First Fibonacci number is 0
elif n==0:
return 0
# Second Fibonacci number is 1
elif n==1:
return 1
else:
return Fibonacci(n-1)+Fibonacci(n-2)
# Driver Program
print(Fibonacci(9))
Explanation:
The Fibonacci numbers are the numbers in the following integer sequence.
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, ……..
In mathematical terms, the sequence Fn of Fibonacci numbers is defined by the recurrence relation
Fn = Fn-1 + Fn-2
with seed values
F0 = 0 and F1 = 1.
Answer: c) they have low genetic variability among them.
When a plant is grown for several generations of offspring of a plant, then there are some common things which are to be noted which are found similar in the offspring and in the parent of the offspring. The flowers and fruits and the time or season they come in are absolutely the same.
The work done by a 10 HP motor when it raises a 1000 Newton weight at a vertical distance of 5 meters is <u>5kJ</u>.
Define work. Explain the rate of doing work.
Work is <u>the energy that is moved to or from an item by applying force along a displacement</u> in physics. For a constant force acting in the same direction as the motion, work is <u>easiest expressed as the product of </u><u>force </u><u>magnitude and distance traveled</u>.
Since the <u>force </u><u>transfers one unit of energy for every unit of </u><u>work </u><u>it performs</u>, the rate at which work is done and energy is used are equal.
Solution Explained:
Given,
Weight = 1000N and distance = 5m
A/Q, the work here is done in lifting then
Work = (weight) × (distance moved)
= 1000 X 5
= 5000Nm or 5000J = 5kJ
Therefore, the work done in lifting a 1000 Newton weight at a vertical distance of 5 meters is 5kJ.
To learn more about work, use the link given
brainly.com/question/25573309
#SPJ9
<u />
Any point on earth can be located by specifying its latitude and longitude, including Washington, DC, which is pictured here. Lines of latitude and longitude form an imaginary global grid system, shown in Fig. 1.17. Any point on the globe can be located exactly by specifying its latitude and longitude.