Physics, asked by itzcutegirl2, 7 days ago

what is momentum?


thank u soo much for ur thanks ...​

Attachments:

Answers

Answered by aakc356
0

Answer:

import java.util.*;

public class Neon

{

public static void main(String args[])

{

Scanner in = new Scanner(System.in);

int n,p, s=0,d;

System.out.println("Enter the number");

n=in.nextInt();

p=n*n;

do

{

d=p%10;

s=s+d;

p=p/10;

}

while(p!=0);

if(s==n)

System.out.println("Neon number");

else

System.out.println("Not a neon number");

}

}6

Answered by XxOoCandyGirloOxX
2

Answer:

In Newtonian mechanics, linear momentum, translational momentum, or simply momentum is the product of the mass and velocity of an object. It is a vector quantity, possessing a magnitude and a direction. If m is an object's mass and v is its velocity, then the object's momentum is \mathbf{p} = m \mathbf{v}.

Similar questions