Answer:
I use the dictionary as my reference and the reference format I'd prefer is the internet because its quick and easy to access.
I used this in my journal for the prompt
Answer:
The solution code is written in Python:
- name = input("Enter your name: ")
-
- name_components = name.split(" ")
-
- first_name = name_components[0]
- middle_name = name_components[1]
- last_name = name_components[2]
-
- print(last_name + ", " + first_name[0] + "." + middle_name[0])
Explanation:
Firstly, prompt user to enter name (Line 1).
Next, use the string <em>split()</em> method and use space " " as separator to split the input string into individual component, first name, middle name, last name and assign to variable <em>first_name, middle_name </em>and<em> last_name </em>(Line 5-7).
Display the output as required by the question.
Answer:
Star Topology
Explanation:
Star network topologies are common in home networks, where the central connection point may be a router, switch, or network hub. Unshielded Twisted Pair (UTP) Ethernet cabling is typically used to connect devices to the hub, though coaxial cable or optical fiber may also be employed.
Answer:
Transport mode
Explanation:
The host-to-host transport mode of internet protocol security (IPsec) is mostly used between two host devices or between a user and a server. When you go online and Google something, what you have done is send a packet request to a server. The IPsec’s transport mode offers secure protection to parts of this IP packet. The packet consists of the original IP header and an IP payload (TCP header and data). In transport mode, only the IP payload is encrypted. The original IP header is not.