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:
d. all of the statements are correct.
Explanation:
WiMAX Broadband Wireless Access has the capacity to provide service up to 50 km for fixed stations. It has capacity of up to 15 km for mobile stations. WiMAX BWA describes both of 4G mobile WiMAX and fixed stations WiMAX. OFMD is used to increase spectral efficiency of WiMAX and to improve noise performance.
Answer:
White lane lines separate lanes of traffic moving in the same direction. (UK)
Answer:
7.7 kN
Explanation:
The capacity of a material having a crack to withstand fracture is referred to as fracture toughness.
It can be expressed by using the formula:

where;
fracture toughness K = 137 MPa
geometry factor Y = 1
applied stress
= ???
crack length a = 2mm = 0.002
∴




Now, the tensile impact obtained is:

P = A × σ
P = 1728.289 × 4.5
P = 7777.30 N
P = 7.7 kN
Answer:
See explanation
Explanation:
Solution:-
- Three students measure the volume of a liquid sample which is 6.321 L.
- Each student measured the liquid sample 4 times. The data is provided for each measurement taken by each student as follows:
Students
Trial A B C
1 6.35 6.31 6.38
2 6.32 6.31 6.32
3 6.33 6.32 6.36
4 6.36 6.35 6.36
- We will define the two terms stated in the question " precision " and "accuracy"
- Precision refers to how close the values are to the sample mean. The dense cluster of data is termed to be more precise. We will use the knowledge of statistics and determine the sample standard deviation for each student.
- The mean measurement taken by each student would be as follows:

- The precision can be quantize in terms of variance or standard deviation of data. Therefore, we will calculate the variance of each data:

- We will rank each student sample data in term sof precision by using the values of variance. The smallest spread or variance corresponds to highest precision. So we have:
Var ( A ) < Var ( B ) < Var ( C )
most precise Least precise
- Accuracy refers to how close the sample mean is to the actual data value. Where the actual volume of the liquid specimen was given to be 6.321 L. We will evaluate the percentage difference of sample values obtained by each student .

- Now we will rank the sample means values obtained by each student relative to the actual value of the volume of liquid specimen with the help of percentage difference calculated above. The least percentage difference corresponds to the highest accuracy as follows:
P ( B ) < P ( A ) < P ( C )
most accurate least accurate