Answer:
#here is code in Python.
#read the value n from user
n=int(input("enter the value of n:"))
#variable to store the total sum
sum_n=0
for i in range(1,n+1):
# find the sum of series
sum_n=sum_n+1/i
#print the sum
print("sum of the series is: ",sum_n)
Explanation:
Read the value of n from user. Create and initialize a variable sum_n with 0. Run a for loop to calculate sum.Initially sum_n is 0, then for value of i=1 1/i will be added to the sum_n.Then in next iteration for i=1, 1/2 added to sum_n. Similarly loop will run util i equals to n.Then sum_n will store the sum of the
series.
Output:
enter the value of n:5
sum of the series is: 2.283333333333333
Answer:
Energy that can be used over again
Explanation:
Examples include biofuel,hydroelectric power,and wind.
Answer:
code
Explanation:
code are set of instruction executed by the computer.
The errror that has occured is a False Positive error.
Explanation:
- A false positive is where you receive a positive result for a test, when you should have received a negative results.
- A false positive (type I error) — when you reject a true null hypothesis.
- The type I error rate or significance level is the probability of rejecting the null hypothesis given that it is true. It is denoted by the Greek letter alpha
Answer:
The correct option is;
A. Investigating and reflecting
Explanation:
In the investigating and reflecting stage, the team involved in the development tries to acquire a thorough and empathic view of the problem the app is meant to solve by researching, the needs of the potential end users of the app so as to isolate the design concept from personal assumption to real world scenarios.