Answer:
The Session layer (Layer 5)
Explanation:
The OSI (Open Systems Interconnection) seven-layer model is a reference model that explains how devices (or applications) communicate over the network. The model consists basically of seven different layers which are;
i. Layer 1 or the physical layer
ii. Layer 2 or the data-link layer
iii. Layer 3 or the network layer
iv. Layer 4 or the transport layer
v. Layer 5 or the Session layer
vi. Layer 6 or the presentation layer
vii. Layer 7 or the application layer.
Out of the seven layers, the session layer (layer 5) keeps track of a system's connections to send the right response to the right computer by setting up, coordinating and managing these connections. It controls, establishes and maintains the connection between multiple computers or applications on a computer.
Answer:
electronic agent
Explanation:
Agents in computing are autonomous systems that initiate actions without human intervention.
Answer:
#here is code in python
#read the name
name=input("Enter your name:")
# read the age as integer
age=int(input("Enter your age:"))
#print the output in the required format
print("{} is {} years old.".format(name,age))
Explanation:
Read the name from user and assign it to variable "name".Then read the age from user and assign it to variable "age". In the next line print the output as required using the format function.
Output:
Enter your Sam
Enter your age:24
Sam is 24 years old.