Answer:
Explanation:
Error-correcting code memory (ECC memory) these kinds of memories can detect and correct errors but only in single bit of the byte, in this case, if there is more than one bit, for example, two bits, the ECC memory can detect the error but cannot fix it, there are some memories without ECC can detect errors but not correct it.
I believe your answer would be:
1: Open the command prompt window. Do this by clicking the "Start" button, and then selecting "Run." In the window that appears, type "cmd" into the text box and click the "OK" button.
2: Release the computer's current IP address. To do this, type "ipconfig /release" into the command prompt window and press Enter.
3: Acquire a new IP address. Do this by typing "ipconfig /renew" into the command prompt window and pressing Enter. This should assign the computer a new IP address, which will be different from the previous address.
4: Cycle your modem's power. If the above steps don't work, you can try renewing your IP address by cycling your modem's power. Turn off both your computer and your modem (and your router, if you have one). Wait at least 5 minutes, then turn everything back on. If your computer is set to receive an IP address dynamically (the most likely configuration), you should be assigned a new IP address automatically.
5: Check to make sure your IP address has changed. To do this, you can log on to a number of different websites that tell you your IP address.
Hope I helped, if so may I get brainliest and a thanks?
Thank you, Have a good day! =)
Answer:
The answer is a on edge2020.
:D have a great day and stay safe <3.
Your loop is iterating too many times.
You're creating a list that can hold 5 objects,
and then you're going through your loop 6 times.
for loop in range(5):
The word that you used, "loop" is the index value that counts from 0 to 5 (iterates over the first 6 values starting from 0).
loop = 0 the first time through, then
loop = 1 the next time,
... up to
loop = 5.
So one option is to use this word loop to find each location in your list,
people[loop] = name
(for the fourth line)
Also, I don't think this sorted will sort the list "in place".
I think you need to save it.
people = sorted(people)
I could be wrong though, I'm still a little new to Python :D