Answer:
#Declare the variables.
the_dict = {}
dictlist = []
#Begin the while loop.
while True:
#Prompt the user to enter the name
#and the number.
input_name = input("Name: ")
input_number = input("Number: ")
#Ask the user to continue or stop
#the program.
input_choice = input('More data (y/n)? ')
the_dict[input_name] = input_number
#Check the input.
if input_choice == 'n':
break
#If the user want to continue
#then append in the list.
for key, value in the_dict.items():
#Store the values in dictionary.
temp_val = (key,value)
dictlist.append(temp_val)
#Sort the list.
print(sorted(dictlist))
Answer:
Explanation: The following features will be implemented:
1) Guest networks,
2) Networked attached storage,
3) MAC filtering
A guest Wi-Fi network is essentially a separate access point on your router. All of your home gadgets are connected to one point and joined as a network, and the guest network is a different point that provides access to the Internet, but not to your home network. As the name implies, it's for guests to connect to.
Network Attached Storage
is dedicated file storage that enables multiple users and heterogeneous client devices to retrieve data from centralized disk capacity. Users on a local area network (LAN) access the shared storage via a standard Ethernet connection.
MAC address filtering allows you to define a list of devices and only allow those devices on your Wi-Fi network.
Answer:
A blog.
Explanation:
A blog can be defined as an informative or discussion-based website that is updated regularly and published over the internet. The informations that are posted on a blog are usually done chronologically and it includes pictures, videos, music, movies, novels, etc.
In this scenario, Kyra is teaching a photography class. She would like her students to share photos, be able to review other students' photos and offer feedback.
Hence, the technology Kyra should use is a blog because it would avail the users (students) to post photos, make comments on blog posts and review items posted by others.
Answer:
Advantages of Digital Multimeters:
1)They are more accurate than analog multimeters.
2)They reduce reading and interpolation errors.
3)The 'auto-polarity' function can prevent problems from connecting the meter to a test circuit with the wrong polarity.
4)Parallax errors are eliminated.
I hope this helps.