Answer:
def newton(n):
#Define the variables.
t = 0.000001
esti = 1.0
#Calculate the square root
#using newton method.
while True:
esti = (esti + n / esti) / 2
dif = abs(n - esti ** 2)
if dif <= t:
break
#Return the result.
return esti
#Define the main function.
def main():
#Continue until user press enters.
while True:
try:
#Prompt the user for input.
n = int(input("Enter a number (Press Enter to stop):"))
#display the results.
print("newton = %0.15f" % newton(n))
except:
return
#Call the main function.
main()
Answer:
processing
Explanation:
The flow chart is a diagram that shows the activity of the program, peoples or things.
Flowchart symbol and meaning in the options:
1. Processing: it is a rectangular shape block which is used for variable declaration or assignment.
2. I/0: it is a parallelogram in shape which is used for input or output.
3. Parallelogram: it is used for input or output.
4. diamond: it is used for decisions or conditions.
Therefore, the correct option is a. Processing is the one that is used for the assignment statement.
Answer:
The answer is Stroboscopic movement
Explanation:
Stroboscopic movement occurs when we do not see a motion continuously but in discrete shots. It is an effect in which we see an object at one place and after another instant the object seems to have shifted it's position.
Auto kinetic effect is an effect in which a stationary point of light appears to move.It occurs as our brains can perceive motion relative to some other object and cannot observe ,motion along a featureless terrain or environment.
Phi effect causes an observer to perceive motion in stationary objects.
To modulate your voice is to modify or gain more control of your voice. It basically means to change or adjust the pitch or tone.