Answer:
The router will purposefully drop messages if message traffic exceeds its capacity.
Explanation:
As we know that the router and the switch are the connecting devices. The router works at the network layer and used for determining the shortest path
On the other hand the switch work is to connected many devices that are available in the network.
Therefore the correct option is second as the router also depicts when there is the purpose of the messaged drop[ed if the traffic of message exceeds than its capacity
Answer:
The complete "if statement" is given below;
<u>1st Method:</u>
<u>using if else statement</u>
If (amount1>10 && amount2<100)
{
If(amount1>amount2)
system.out.println(amount1);
}
else
{
system.out.println(amount2);
}
}
<u>2nd Method:</u>
<u>using conditional statement</u>
if(amount1 > 10 && amount2 < 100)
{
System.out.println(amount1 > amount2 ? amount1 : amount2);
\\conditional statement shows if amount1 is greater than amount2 it means the statement is true so it will show the true value i.e. amount1. But if amount1 is less than amount2 then the statement is false so it will show the false value i.e. amount2
}
<u></u>
Answer:
Firstly if that device is allowed in that country. Going to another country can be cool, provided that the restrictions are known. Certain countries don't allow the sale or use of certain digital products. To be sure of that digital device is allowed, Michael and Ryan should check the custom services of that country
Secondly, is the setup of the didgital devices. For example, Michael wants to use a GPS in the event. Then he needs to be sure whether the GPS is compatible with the new country or not. There can be varius problems in the GPS, most notably the time and the location.
Lastly, if they are relaxing, say watching funny videos on TV language shouldn't be a barrier.
Explanation:
Hope this helps... pls vote as brainliest
Answer:
50*8/2
The asterisk is the multiplication sign and the parenthesis is the division.
I've never used an apostrophe for a multiplication sign before, but I'm guessing multiplication is what it stands for.
Explanation: