Your while statement is in error
<span>while (wage = 0) assigns 0 to wage.
What you want is to compare wage to 0, ie.:
while (wage == 0).
However, comparing double's to some value is very bad practice due to rounding errors. Much safer is to always have a < or > in there:
while (wage < 0.0001)
If you confuse assignment (=) and comparison (==) often, and you don't have a compiler to warn you for this, you can adopt the coding style to put the constant first:
while(0 == x)</span>
The data link layer software would replace the MAC address of the next hop or gateway when the destination address of a network packet is to a remote network.
<h3>What is a
data link layer?</h3>
The data link layer is the second layer of the OSI model and it can be defined as an interface between the network and physical layer. Also, it comprises two (2) main sublayers and these include the following:
- Logical link control (LLC) layer.
- Media access control (MAC) layer.
In Computer networking, the data link layer software would replace the MAC address of the next hop or gateway when the destination address of a network packet is to a remote network.
Read more on data link layer here: brainly.com/question/13131540
#SPJ1
Answer:
All of the above.
Explanation:
Thrashing or drive or disk thrashing occurs when the hard drive is stressed with transferring information between the system memory and virtual machine excessively. In thrashing, there is a large number of processes running in the system and the system memory is too small to handle all processes. Thrashing leads to decreased system performance and hard disk failure.
To stop the impact of thrashing, install more RAM, end unimportant progam processes etc.
HTTP or HTTPS is most likely the answer you are looking for.