Answer:
software governing the organization of data on physical storage media.
Explanation:
Data management platform can be regarded as a foundational system utilized in collection and analyzing of large volumes of data across an organization. Data management encompass some variety of interrelated functions, the basic technology that is been utilized in
deployment and administering databases is regarded as database management system. Database technologies collect, store and also organize information then process it o that a user can easily finds needed details when they need it . It should be noted that Data management technology consists of the software governing the organization of data on physical storage media.
Answer:
are u updating it? or u r rooting it?
Answer:
work was done by hand
Explanation:
Back then they didn't have machines
hope this helped
~chara
What is your question exactly?
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