Megabytes gigabytes terabytes - from smallest to largest
Petabytes terabytes kilobytes - largest to smallest
Exabytes zettabytes megabytes - in no apparent order
Explanation:
Maddie from Liv and Maddie
Answer:
- You need to create a variable outside (before) the input loop.
- You need a variable inside your loop that temporarily holds the user input.
- In your loop, you will compare if the variable outside the loop is greater than (or less than) the new user input.
I don't know what program language you are using, but I will use python since it's easy to read and you will get the idea if you're using a different programming language.
<u>Code (Python)</u>
largestnum = 0
for x in range(6): <em>#loops 6 times</em>
newnum = int(input("Enter a number: ")) #ask user for input & converts to int.
if newnum > largestnum: <em>#if new number is greater than largest num </em>
largestnum = newnum <em>#make it the largest number</em>
<em> </em>print("Largest:", largestnum)
The reason why you need a variable outside of the loop is because after the loop is done all variables inside the loop are trashed and can no longer be accessed outside of the loop.
Based on the above, the technology that a person need to use is NAT.
<h3>What does
Network Address Translation means?</h3>
The term Network Address Translation (NAT) is said to be the act or the process by which a person uses in mapping an internet protocol (IP) address to a given place by altering the header of IP packets while in movement via a router.
Note that the Network Address Translation (NAT helps to boast as well as develop the security and lower the number of IP addresses an organization requires.
Hence, Based on the above, the technology that a person need to use is NAT.
Learn more about Network Address Translation from
brainly.com/question/24159022
#SPJ4
See full question below
You are connected to a router. To provide access to the internet, you need to create a rule that would hide private IP addresses behind one public IP address. Which technology should you use? (DHCP, Port forwarding, WPA, NAT)
Answer:
The Microsoft Windows Task Manager.