Answer: Switching packets function.
Explanation: while the main function of a router is to forward packets to their target destination, this can be actualised by adopting a switching packet function.
Switching packet function is the process which the router uses to accept a packet from one interface and passes it to another interface. The main function the switching packet plays is to encapsulate the packets in the right data link frame type for the data link meant to be sent out.
The switching is about moving the packet to the right destination without been mistaken with the layer 2 switch function.
Answer:
The mass of the vehicle is 1250kg
Explanation:
Given


Required
Determine the vehicle's mass
This question will be answered using Newton's second law which implies that:

In other words:

Substitute values for F and a

Make m the subject


<em>Hence, the mass of the vehicle is 1250kg</em>
Answer:
void reverse(char dest[], char source[], int size)
{
for(int i=0;i<size;i++)//using for loop.
{
dest[i]=source[i];//assigning each element of source array to dest array.
}
int s=0,e=size-1;//initializing two elements s with 0 and e with size -1.
while(s<e){
char t=des[s]; //SWAPPING
dest[s]=dest[e]; //SWAPPING
dest[e]=t; //SWAPPING
s++;
e--;
}
}
Explanation:
I have used while loop to reverse the array.I have initialize two integer variables s and e with 0 and size-1.Looping until s becomes greater than e.
It will work as follows:
first s=0 and e=0.
dest[0] will be swapped with dest[size-1]
then s=1 and e=size-2.
then des[1] will be swapped with dest[size-2]
and it will keep on going till s is less than e.
Matter is made up of extremely tiny particles called atoms and molecules. Atoms and molecules make up the three common states of matter on Earth—solids, liquids, and gases. The particles of a liquid are attracted to one another, are in motion, and are able to move past one another.
<em>-</em><em> </em><em>BRAINLIEST</em><em> answerer</em>