Contact solution is the answer and the work is your brain
Answer:
probably the pincky finger I don't know I use what ever
The growth rate of nominal GDP in the U.S between 2011 to 2012 is 4.7%
<h3>
Equation</h3>
An equation is an expression that shows the relationship between two or more variables and numbers.
From the question:
Growth rate = [(15.6 trillion - 14.9 trillion) / (14.9 trillion)] * 100% = 4.7%
The growth rate of nominal GDP in the U.S between 2011 to 2012 is 4.7%
Find out more on Equation at: brainly.com/question/2972832
Answer:
#here is code in python.
#main method
def main():
#read the initial position
in_pos=float(input("enter the initial position:"))
#read the initial velocity
in_vel=float(input("enter the initial velocity:"))
#read the acceleration
acc=float(input("enter the acceleration:"))
#read time
time=float(input("enter the time:"))
# final position =x+ut+(at^2)/2
fin_pos=in_pos+(in_vel*time)+(acc*(time**2)/2)
#print the final position
print("final position is: ",fin_pos)
#call the main method
main()
Explanation:
Read the initial position, initial velocity, acceleration and time from user.Then calculate final position as initial position+(initial velocity*time)+ (acceleration*time^2)/2. This equation will give the final position. print the final position.
Output:
enter the initial position:10
enter the initial velocity:20.5
enter the acceleration:5
enter the time:15
final position is: 880.0