Answer:You cant carry it around like a phone
Explanation:
Answer:
- letter_counts = {}
- string1 = "I have a dream"
-
- string1 = string1.lower()
-
- for x in string1:
- if(x == " "):
- continue
- if x not in letter_counts:
- letter_counts[x] = 1
- else:
- letter_counts[x] += 1
-
- print(letter_counts)
Explanation:
The solution is written in Python 3.
Firstly create a letter_count dictionary (Line 1)
Next, create a sample string and assign it to string1 variable and convert all the characters to lowercase using lower method (Line 4).
Create a for loop to traverse through each character in string1 and check if the current character is a single space, just skip to the next iteration (Line 7 -8). If the current character is not found in letter_counts dictionary, set the initial count value 1 to x property of letter_counts. Otherwise increment the x property value by one (Line 9 -12).
After completion of loop, print the letter_count dictionary. We shall get the sample output {'i': 1, 'h': 1, 'a': 3, 'v': 1, 'e': 2, 'd': 1, 'r': 1, 'm': 1}
Based on what I’m seeing, It seems like in the string of line 11 you’ve put “What is your first item?” When it should be “What is you second item”.
Word of advice: It’s would be best if you write your consent variables in camel case. It’s helps with debugging and over all helps a reader easily understand what your coding.
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: Active Directory database
Explanation:Active directory database works on ESE (Extensible storage engine) for the functioning.Indexed and sequential access method(ISAM)database persist in the ESE for the management of computer devices.
This functions for providing the quick accessing towards the records through database.The database files contain the data in the ESE indexes and is common to computer information and the user.