Which tool in Microsoft Windows is explicitly built to inspect historical system logs, error dumps, and software warnings? MCQ with Answer and Explanation

Which tool in Microsoft Windows is explicitly built to inspect historical system logs, error dumps, and software warnings?
A. Task Scheduler
B. Performance Monitor
C. Event Viewer
D. System Configuration (msconfig)
Answer: Option C
Solution (By JKExamLibrary)
Windows Event Viewer is an administrative utility that logs application events, security events, and system error logs for debugging purposes.

This question belongs to: Computer Operating Systems

Discuss this Question (0)

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

Practice More Operating Systems Questions

Question #1 Report Error
What is the purpose of the Android 'DownloadProvider'?
A. To store downloaded files
B. To manage download requests and provide access to downloaded files
C. To download files only
D. To manage download priority

Correct Answer: Option B


Explanation:
DownloadProvider is a content provider that handles download requests, storing metadata and files for apps.

This question belongs to: Computer Operating Systems
Question #2 Report Error
In an operating system, what is a 'Deadlock'?
A. The safe closing down procedure of the kernel during a reboot.
B. A situation where a process finishes its execution earlier than expected.
C. A condition where two or more processes are permanently blocked because each is waiting for a resource held by the other.
D. A software bug that permanently crashes the hardware system motherboard.

Correct Answer: Option C


Explanation:
A deadlock is a specific state where a set of processes are stalled because each process holds a resource and waits for another resource held by a different process.

This question belongs to: Computer Operating Systems
Question #3 Report Error
Which Linux command is used to stop a running service (e.g., Apache)?
A. systemctl stop service
B. kill -9 PID
C. service stop
D. pkill service

Correct Answer: Option A


Explanation:
On systemd-based Linux, systemctl stop is used to stop services; older sysvinit used service command.

This question belongs to: Computer Operating Systems