Which specific protocol is deployed over network lines to collect operational health statistics and performance data from managed network devices like routers and switches? MCQ with Answer and Explanation

Which specific protocol is deployed over network lines to collect operational health statistics and performance data from managed network devices like routers and switches?
A. SMTP
B. SNMP (Simple Network Management Protocol)
C. DHCP
D. IMAP
Answer: Option B
Solution (By JKExamLibrary)
SNMP (Simple Network Management Protocol) is used to monitor network devices, log performance metrics, and track system status updates across IP networks.

This question belongs to: Computer Internet and Web Technologies

Discuss this Question (0)

No comments yet. Be the first to start the discussion!

Practice More Internet and Web Technologies Questions

Question #1 Report Error
What is the purpose of the 'XMLHttpRequest' object in JavaScript?
A. To handle events
B. To parse XML documents
C. To style web pages
D. To send and receive data from a server asynchronously

Correct Answer: Option D


Explanation:
XMLHttpRequest is an API in JavaScript that allows web pages to make HTTP requests to servers asynchronously, enabling AJAX.

This question belongs to: Computer Internet and Web Technologies
Question #2 Report Error
Which of the following HTTP methods is used to retrieve data from a server without affecting the resource?
A. PUT
B. POST
C. DELETE
D. GET

Correct Answer: Option D


Explanation:
The GET method requests data from a specified resource and should not have any side effects (idempotent). POST is for sending data, PUT for updating, DELETE for removing.

This question belongs to: Computer Internet and Web Technologies
Question #3 Report Error
What does the 's' in HTTPS stand for?
A. Simple
B. Standard
C. System
D. Secure

Correct Answer: Option D


Explanation:
HTTPS stands for HyperText Transfer Protocol Secure, indicating that communication is encrypted using SSL/TLS.

This question belongs to: Computer Internet and Web Technologies