Answer:
IPO means Input - Process - Output
Explanation:
The IPO model means that a computer program is given an input to process, it processes the given input and return an output as the result.
Answer:
Build integration
Explanation:
The ability of a build System to handle the rise in amount of code it blends/analyses is known as build integration.
It is the overall capacity of the build System to handle the growing amount of code. It is also a process where the system tries to handle potentials to accommodate growth. This is a very important condition.
Answer:
Your foot brake must be able to stop car within 5.18 m
Explanation:

d is breaking distance.
s is speed in km/h
is coefficient of friction normally 0.8
250 is constant.
Give the speed in mile first convert it to km/h

speed in km= 20 * 1.60934
s =32.186 km/h

d= 5.18m
Answer:
value=int(input("Enter the value from where the user wants to starts: "))#Take the value from the user.
i=1#intialize the value of a variable by 1.
while(value<1000) and (i<9):#while loop which prints the value.
print(value,end=" ")# print the value.
value=value*2#calculate the value to print.
i=i+1#calculate the value for the count.
Output:
If the user enter 5, then the output is : "5 10 20 40 80 160 320 640".
If the user enter 5, then the output is : "3 6 12 24 48 96 192 384".
Explanation:
- The above code is in python language, in which the first line of the program is used to render a message to the user, take the input from the user and store it into value variable after converting it into an integer.
- Then the loop will calculate the double value and then it prints the value with the help of print function.
- The end function puts the spaces between numbers.