Computer Science, asked by vikrantpalle4180, 8 hours ago

Write the programming expression - V=u+at; // a and t are different variables *

Answers

Answered by amrapalidas1967
1

Answer:

The Answer is written in Java

Explanation:

int u,a,t;

int V=u+(a*t);

Answered by HarishAS
0

Answer:

The answer for the following is given for python.

Given expression is v = u + at .

This can be written as :

v = u + (a * t)

Hope this helps.

Similar questions