Answer:
First of all,there is not theory F=ma^2!!
Its F=ma and they are definitely not the same.Here F means force and E means Energy.
a means acceleration, but c means the velocity of light. Clearly there's difference between acceleration and velocity and force and energy.
F=ma can be applied on things we normally see but E=mc^2 is applied on things that can travel nearly in light speed!which means atoms,molecules, protons,electrons etc. energy can be determined by the Einstein theory but F=ma is for determining human energy, or energy of cars,vehicles or any regular moving things
Explanation:
Answer:
it allows users to trim the edges of the image,making the image smaller.
Explanation:
Cropping refers to removing unwanted parts of a graphic hence can facilitate to reducing the size
Answer:
Physical goods that can be manufactured, or produced are the major items among those can be marketed. Examples include refrigerators, computers, music systems, food products, etc. Such physical goods constitute the bulk of production and marketing efforts. And here are the types of marketing Traditional Marketing. Traditional marketing refers to brand promotion on any kind of channel that has been around since before the advent of the internet.
Answer:
nothing
Explanation:
Because the return type of the function is void. void means does not return any thing.
The syntax of the function:
type name( argument_1, argument_2,......)
{
statement;
}
in the declaration the type define the return type of the function.
it can be int, float, double, char, void etc.
For example:
int count( int index);
the return type of above function is int. So, it return integer.
similarly,
void count(int index);
it return type is void. So, it does not return any thing.