All practice questions

3551 questions

Question 781Question

A tier 1 help desk technician is troubleshooting a Windows 11 client computer that cannot access internal intranet resources using domain names (such as http://intranet.company.local), although reaching resources via IP address works correctly. The technician verifies that the DHCP server was recently updated with new DNS server addresses, but the client system is still retaining outdated network parameters. Which of the following command sequences should the technician execute in an elevated Command Prompt to obtain the updated DNS server addresses from DHCP and clear stale host resolution entries?

Show answer & explanation

Answer: Run ipconfig /release followed by ipconfig /renew and ipconfig /flushdns

Answer

The correct action is to run ipconfig /release followed by ipconfig /renew and ipconfig /flushdns in an elevated Command Prompt.
Releasing and renewing the IP lease via ipconfig /release and ipconfig /renew forces the Windows client to contact the DHCP server and retrieve updated option scope parameters, including the new DNS server IP addresses. Following this with ipconfig /flushdns purges the local DNS resolver cache, removing any stale hostname-to-IP mappings so the client can successfully resolve domain names through the updated DNS infrastructure.

Step-by-Step Solution

1
Identify the cause of stale DNS network settings on the Windows client
Recognize that the client is holding onto an existing DHCP lease containing outdated DNS server IP addresses and cached host resolution records.
When network options change on a DHCP server, active client leases retain old configuration parameters until renewed or re-initialized.
2
Select the appropriate CLI utility switches to request updated DHCP lease information
Executing ipconfig /release drops the current DHCP lease, and ipconfig /renew requests a fresh lease containing the updated DNS server IP addresses.
The renew command queries the DHCP server for all current options, including primary and secondary DNS server addresses.
3
Clear local client name resolution cache
Executing ipconfig /flushdns purges cached DNS resolver entries.
Purging the DNS cache ensures that subsequent FQDN queries reach the newly designated DNS servers rather than relying on stale local entries.

Key Concept

Windows Client DHCP Lease Renewal and DNS Resolver Cache Flushing
Estimated Time:1m 15s
Question 782Question

A desktop technician is deploying computers for a newly established branch office. Corporate security policy mandates that all client endpoints must support Active Directory Domain Join, incoming Remote Desktop (RDP) hosting, and Local Group Policy Management (gpedit.msc). The workstations currently have Windows 11 Home installed. Which operating system edition upgrade is the minimum required to fulfill all specified technical and policy requirements?

Show answer & explanation

Answer: Upgrade to Windows 11 Pro

Answer

Upgrading to Windows 11 Pro provides the minimum edition required to support Active Directory Domain Join, Remote Desktop hosting, and Local Group Policy management.
Upgrading to Windows 11 Pro is correct because Pro is the baseline edition that includes core management features such as Active Directory Domain Join, Remote Desktop server capability, BitLocker, and Local Group Policy Editor access.

Step-by-Step Solution

1
Analyze the technical requirements specified in the corporate policy.
Identified three key required features: Active Directory Domain Join, incoming Remote Desktop (RDP) server/hosting capability, and Local Group Policy (gpedit.msc).
Determining the required feature set helps establish the lower edition boundary for Windows.
2
Compare feature availability across Windows 11 editions starting from the current edition (Home).
Windows 11 Home lacks native Domain Join, RDP server hosting, and Local Group Policy capabilities. Windows 11 Pro includes all three features natively.
Windows 11 Pro serves as the baseline business edition containing essential corporate management and security tools.
3
Evaluate higher-tier editions against the minimum cost and licensing constraints.
While Windows 11 Enterprise and Pro for Workstations also contain these features, they are designed for specialized enterprise volume licensing or high-performance hardware environments.
The prompt asks for the minimum required edition, making Windows 11 Pro the correct selection.

Key Concept

Windows 11 Edition Feature Availability
Question 783Question

A field technician is troubleshooting a Windows 11 workstation on a corporate network. The workstation can access public websites on the Internet, but it fails to connect to internal network shares using their hostnames (for example, `\\fileserver.corp.local`). Running `ipconfig /all` shows that the network adapter received a valid IPv4 address of 10.1.20.10510.1.20.105 and subnet mask 255.255.255.0255.255.255.0 via DHCP, but its DNS servers are manually specified as 1.1.1.11.1.1.1 and 1.0.0.11.0.0.1. Pinging internal resources by their local IP address (10.1.20.1010.1.20.10) succeeds. Which of the following actions should the technician take to resolve the internal name resolution issue?

Show answer & explanation

Answer: Configure the TCP/IPv4 properties on the Ethernet adapter to obtain DNS server addresses automatically.

Answer

Configure the TCP/IPv4 properties on the Ethernet adapter to obtain DNS server addresses automatically from DHCP.
Configuring TCP/IPv4 properties to 'Obtain DNS server address automatically' allows the client workstation to receive internal corporate DNS server IP addresses via DHCP options. Internal DNS servers maintain the zone records required to resolve local domain names like `fileserver.corp.local`, while still forwarding external requests to public DNS servers.

Step-by-Step Solution

1
Analyze the reported symptoms and diagnostic output.
External connectivity and IP pinging work (10.1.20.1010.1.20.10), confirming physical and IP layer connectivity. Internal hostname resolution fails because the DNS servers are statically set to public addresses (1.1.1.11.1.1.1 and 1.0.0.11.0.0.1) that do not hold records for `corp.local`.
Public DNS servers cannot resolve private corporate Active Directory domain names.
2
Identify the proper client network configuration fix.
Reverting the IPv4 DNS setting to 'Obtain DNS server address automatically' allows the adapter to retrieve internal DNS server IP addresses provided by the local DHCP server.
Internal DHCP servers deliver the IP addresses of local DNS servers that host the internal domain zone files.

Key Concept

Windows TCP/IPv4 Client Properties & DHCP DNS Assignment
Question 784Question

A network technician is diagnosing several network connectivity issues across different client workstations. Match each diagnostic symptom or command output on the left with its primary underlying network configuration cause on the right.

Click a left item, then click its matching right item

Items

A workstation receives an IPv4 address of 169.254.43.88 with a subnet mask of 255.255.0.0 upon startup, resulting in loss of connectivity to corporate servers.
A host can successfully ping other devices on its local subnet (10.10.4.0/24), but all traffic destined for remote subnets or the internet fails immediately.
A user can reach external resources using direct IPv4 addresses (e.g., pinging 1.1.1.1 works), but browser requests using domain names fail to load.
A dual-stack interface automatically generates an address starting with fe80::/10 and can only communicate with devices on the local link without manual setup.

Matches

Show answer & explanation

Answer

1. 169.254.x.x assignment correlates with APIPA self-assignment due to DHCP server unreachability.
2. Local-only subnet communication failures correlate with a missing or misconfigured default gateway.
3. IP ping success with FQDN failure correlates with a DNS server misconfiguration.
4. fe80::/10 address generation correlates with IPv6 Link-Local auto-configuration.
Each symptom precisely maps to a standard TCP/IP configuration component: APIPA (169.254.0.0/16) results from failed DHCP acquisition; Default Gateway failure restricts traffic exclusively to the local broadcast domain; DNS failures prevent resolving domain names despite working IP routing; and fe80::/10 represents non-routable IPv6 link-local auto-addressing.

Step-by-Step Solution

1
Analyze the 169.254.43.88 IP address symptom.
Identify 169.254.0.0/16 as the APIPA address block.
When a DHCP client fails to obtain a lease, operating systems auto-assign an APIPA address.
2
Analyze local vs. remote connectivity symptoms.
Determine that local ARP and switching work, but routing fails.
Traffic bound for foreign subnets must be forwarded to the default gateway; missing this entry breaks cross-subnet communication.
3
Analyze direct IP success versus domain name failure.
Isolate the issue to name resolution.
DNS translates human-readable hostnames into IP addresses; if IP connectivity works, layer 3 routing is intact while name resolution is faulty.
4
Analyze the fe80:: IPv6 prefix.
Identify the standard IPv6 Link-Local scope.
IPv6 interfaces automatically generate link-local addresses within fe80::/10 for immediate local segment operation.

Key Concept

Network configuration parameter diagnostics including APIPA, Default Gateway routing, DNS resolution, and IPv6 Link-Local addressing.
Question 785Question

A network infrastructure technician is auditing cabling deployments across an enterprise campus facility. Match each network cable type and connector specification on the left to its correct physical characteristic or deployment requirement on the right.

Click a left item, then click its matching right item

Items

Category 6a (Cat 6a) Plenum-rated (CMP) UTP/STP
Single-mode Fiber (SMF) with LC Connectors
Multi-mode Fiber (MMF) with ST Connectors
Coaxial RG-6 with F-Type Connectors

Matches

Show answer & explanation

Answer

The cable and connector specifications match their corresponding physical characteristics and deployment environments as follows: Cat 6a CMP matches the 10 Gbps 100m plenum-rated specification; Single-mode fiber with LC matches the narrow-core multi-kilometer laser specification; Multi-mode fiber with ST matches the wider-core legacy bayonet specification; RG-6 coaxial with F-type matches the 18 AWG threaded broadband specification.
Each cable specification correctly pairs with its unique electrical, optical, and mechanical properties. Cat 6a CMP satisfies 10GBASE-T up to 100 meters in plenum spaces; Single-mode fiber with LC handles long-distance laser transmission through a narrow core; Multi-mode fiber with ST utilizes a wider core with legacy bayonet connectors; and RG-6 coaxial with F-type connectors provides shielded 18 AWG RF signaling for broadband links.

Step-by-Step Solution

1
Analyze Category 6a CMP requirements
Identified Cat 6a capabilities (10 Gbps up to 100 meters at 500 MHz) and CMP (Plenum) fire-safety requirements for air-handling spaces.
Plenum cable is mandatory in ducts/plenums due to low-smoke Teflon/fluorinated ethylene polymer jacketing.
2
Evaluate Single-mode Fiber (SMF) parameters
Matched SMF to the small core (8.310 μm8.3-10\ \mu\text{m}) using laser transmitters for long-distance inter-building runs.
Single-mode fiber eliminates modal dispersion, allowing light to travel many kilometers over a narrow core.
3
Evaluate Multi-mode Fiber (MMF) with ST connectors
Matched MMF to the larger core (5062.5 μm50-62.5\ \mu\text{m}) and ST bayonet twist-and-lock connectors.
ST connectors use a BNC-like push-and-twist bayonet lock, distinct from push-pull LC/SC connectors.
4
Verify RG-6 Coaxial and F-Type characteristics
Matched RG-6 with F-type to 18 AWG copper cable with threaded screw-on connectors used in broadband ISP deployments.
RG-6 is thicker than RG-59 and uses F-type connectors for cable television and modem feeds.

Key Concept

Network Cable Specifications, Physical Media Characteristics, and Connector Identification
Question 786Question

A desktop technician receives a helpdesk ticket regarding a graphic design workstation that has suddenly suffered severe write latency. Upon opening the system storage utility, the technician notes that a two-drive software RAID 1 array configured for project files has entered a degraded state due to a S.M.A.R.T. attribute failure notification on drive 1. What is the most appropriate action for the technician to take to restore array fault tolerance?

Show answer & explanation

Answer: Replace the failing drive with a new drive of identical or larger capacity and rebuild the mirror.

Answer

Replace the failing drive with a new drive of identical or larger capacity and rebuild the mirror.
In a RAID 1 mirrored configuration, when one drive fails or experiences a S.M.A.R.T. threshold error, the array enters a degraded state but continues to function using the remaining healthy drive. The standard operational procedure to restore fault tolerance is to remove the faulty drive, insert a replacement drive of equal or greater capacity, and rebuild the mirror.

Step-by-Step Solution

1
Identify the reported degraded disk state
Determine that drive 1 in the RAID 1 mirror has triggered S.M.A.R.T. warnings causing array degradation.
RAID 1 provides 1-to-1 data mirroring, meaning data remains intact on the surviving drive.
2
Remove the failing drive and install a compatible replacement disk
The physical hardware error is isolated and removed from the system.
S.M.A.R.T. errors indicate impending physical hardware failure that software reformatting cannot resolve.
3
Initiate an array rebuild operation to duplicate data onto the new replacement drive
The RAID 1 array returns to an Optimal/Healthy state with full fault tolerance restored.
Rebuilding synchronizes data from the healthy surviving drive to the newly added drive.

Key Concept

RAID 1 Degraded Recovery and Drive Replacement
Question 787Question

A desktop support technician is troubleshooting a Windows 11 workstation experiencing persistent network stack corruption and invalid socket bindings that prevent all web traffic. Standard GUI troubleshooter fixes have failed. The technician opens an administrative Command Prompt to perform a complete CLI-based network stack reset and system reboot. Place the command execution steps in the correct operational sequence to resolve the issue.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct operational sequence begins with flushing the DNS resolver cache (ipconfig /flushdns), followed by resetting the Winsock API catalog (netsh winsock reset), then resetting the TCP/IP protocol stack registry state (netsh int ip reset), and finally performing an immediate system restart (shutdown /r /t 0).
Resolving severe CLI network transport failures requires systematically clearing stored DNS records, resetting corrupt socket API layers via netsh winsock reset, restoring TCP/IP protocol registry keys via netsh int ip reset, and finally executing shutdown /r /t 0 to reload system kernel drivers.

Step-by-Step Solution

1
Execute ipconfig /flushdns in elevated Command Prompt.
Purges all local DNS cache entries from memory.
Clears invalid address resolutions before altering underlying protocol layers.
2
Execute netsh winsock reset.
Restores the Windows Sockets catalog to default operational state.
Fixes socket binding errors and removes corrupted network interface hooks.
3
Execute netsh int ip reset.
Overwrites IPv4 and IPv6 registry parameters with default values.
Ensures core TCP/IP stack configuration parameters are completely restored.
4
Execute shutdown /r /t 0.
Reboots the operating system immediately without delay.
Commits Winsock and TCP/IP kernel driver modifications upon system initialization.

Key Concept

Windows Network Stack Remediation CLI Workflow
Question 788Question

Match each wired or wireless network troubleshooting symptom to its most likely underlying root cause.

Click a left item, then click its matching right item

Items

A workstation receives an IP address starting with 169.254.x.x and cannot communicate beyond the local subnet.
A Gigabit Ethernet network adapter links at only 100 Mbps when connected to a newly punched-down Cat 6 wall jack.
Wireless clients on a 2.4 GHz network in a multi-tenant office building experience severe latency spikes and packet loss.
A user can access internal file servers using their IP addresses, but web browsers fail to load sites using domain names.

Matches

Show answer & explanation

Answer

The correct pairings match each network symptom to its root cause: APIPA (169.254.x.x) matches unreachable DHCP; Cat 6 linking at 100 Mbps matches damaged wire pairs preventing 4-pair Gigabit signaling; 2.4 GHz latency/loss matches co-channel interference; and IP access working without domain name loading matches DNS resolution failure.
Correctly diagnosing network issues requires matching observable Layer 1 through Layer 7 symptoms with their specific technical root causes: APIPA addresses result from failed DHCP acquisition; 100 Mbps negotiation on Gigabit links points to cable/pair defects; 2.4 GHz performance degradation stems from channel overlap; and functional IP routing paired with domain failure isolates DNS issues.

Step-by-Step Solution

1
Analyze the APIPA address symptom (169.254.x.x).
Identify missing DHCP server responses as the trigger for client APIPA self-assignment.
Clients assign an APIPA address only when DHCP discover messages time out.
2
Analyze the physical speed degradation from 1 Gbps to 100 Mbps on Cat 6 cabling.
Identify partial physical layer pair failure.
1000BASE-T requires all four conductor pairs, while 100BASE-TX operates on two pairs.
3
Analyze high latency and packet loss on 2.4 GHz Wi-Fi in high-density environments.
Identify RF co-channel overlap as the root cause.
Congested 2.4 GHz spectrum with improper channel reuse causes excessive signal collisions and retransmissions.
4
Analyze successful IP-based connectivity combined with failed domain name resolution.
Identify DNS server failure or misconfiguration.
Direct IP reachability verifies Layer 1 through Layer 4 routing, pinpointing Layer 7 name resolution as the culprit.

Key Concept

Diagnosing common wired and wireless troubleshooting symptoms across physical, network, and service layers.
Question 789Question

A technician is setting up a newly connected LCD monitor for an office workstation. The user reports that text and desktop icons appear blurry and stretched, despite the monitor displaying normal colors and brightness. Upon reviewing the system settings, the technician notices that the operating system display resolution is set to 1280×7201280 \times 720, while the monitor manufacturer lists a physical panel specification of 1920×10801920 \times 1080. Which of the following is the BEST action to resolve the image quality issue?

Show answer & explanation

Answer: Adjust the operating system display settings to match the monitor's native resolution of 1920×10801920 \times 1080.

Answer

Adjust the operating system display settings to match the monitor's native resolution of 1920×10801920 \times 1080.
LCD monitors possess a fixed matrix of physical pixels known as native resolution. When the operating system outputs a non-native resolution (such as 1280×7201280 \times 720 on a 1920×10801920 \times 1080 panel), the display hardware must interpolate pixel data across multiple physical pixels, resulting in blurry text and distorted graphics. Adjusting the OS display settings to match the monitor's native resolution restores crisp, clear visual output.

Step-by-Step Solution

1
Identify the physical specifications of the monitor display panel.
The monitor has a native hardware resolution of 1920×10801920 \times 1080.
LCD panels are engineered with a fixed physical matrix of pixels.
2
Compare the configured operating system output resolution with the monitor specifications.
The OS resolution (1280×7201280 \times 720) does not match the monitor's native resolution (1920×10801920 \times 1080).
Non-native resolutions require scaling (interpolation) across physical pixels, creating a fuzzy, stretched image.
3
Reconfigure the operating system display settings to 1920×10801920 \times 1080.
Text, icons, and graphics map 1:1 with physical pixels, rendering crisp and clear images.
1:1 pixel mapping eliminates interpolation artifacts and restores sharp visual quality.

Key Concept

LCD Native Resolution Mismatch
Estimated Time:45s
Question 790Question

A systems technician is configuring a workstation running Windows 11 Home edition. The technician attempts to open the Local Users and Groups MMC snap-in (lusrmgr.msc) to modify local group memberships, but receives an error message indicating that the snap-in cannot be used with this edition of Windows. Which of the following explains why this error occurs?

Show answer & explanation

Answer: The Local Users and Groups snap-in is unavailable on Windows Home editions and requires Windows Pro, Enterprise, or Education.

Answer

The Local Users and Groups snap-in is unavailable on Windows Home editions and requires Windows Pro, Enterprise, or Education.
The correct answer states that the snap-in is restricted to Windows Pro, Enterprise, and Education editions. Microsoft limits advanced administrative MMC snap-ins such as Local Users and Groups (lusrmgr.msc), Local Security Policy (secpol.msc), and Group Policy Editor (gpedit.msc) to commercial and business editions of Windows. Windows Home edition users must manage accounts through the Settings app or command-line utilities like net user.

Step-by-Step Solution

1
Identify the requested action and administrative tool
The technician is attempting to use the Local Users and Groups snap-in (lusrmgr.msc).
This tool is used to manage local users, groups, and permissions on Windows systems.
2
Evaluate edition-specific management feature constraints
Windows 11 Home edition excludes advanced administration tools such as Local Users and Groups (lusrmgr.msc), Group Policy Editor (gpedit.msc), and Local Security Policy (secpol.msc).
Microsoft restricts these MMC snap-ins to business and enterprise editions (Pro, Enterprise, and Education).
3
Determine the root cause of the snap-in error
The error occurs because the installed operating system edition lacks support for the lusrmgr.msc management snap-in.
Managing local accounts on Home edition requires using basic interfaces like the Settings app or net user CLI tools.

Key Concept

Windows Edition Management Feature Constraints
Estimated Time:1m 0s
Question 791Question

A desktop PC in a graphic design studio unexpectedly shuts down and refuses to power on normally following a localized electrical surge. When the technician presses the chassis power button, the power supply unit (PSU) fan spins for a fraction of a second and immediately shuts off with an audible click. The system will not attempt to spin up again on subsequent button presses until the AC power cord is unplugged and reinserted. Which TWO of the following diagnostic steps should the technician take to isolate the root cause? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Test the PSU output voltages with a dedicated power supply tester to check if internal over-current or short-circuit protection is latching.; Disconnect all non-essential component power cables and expansion cards to determine if a short circuit on a peripheral rail is tripping the power supply.

Answer

The technician should test the power supply with a dedicated PSU tester to check for protective circuit latching, and disconnect non-essential components and expansion cards to verify if a short circuit on a peripheral rail is causing the PSU to trip.
When a power supply momentarily activates and immediately shuts down until AC power is toggled, its internal short-circuit or over-current protection circuit has been tripped. To troubleshoot this state, the technician must test the PSU directly with a power tester or multimeter and perform component isolation by removing non-essential power cables and expansion cards to identify any short-circuited component rail.

Step-by-Step Solution

1
Analyze the reported physical symptoms.
The PSU fan spins briefly and cuts out immediately, requiring an AC power reset before retrying.
This behavior indicates that the PSU safety protection mechanism (Over-Current Protection or Short-Circuit Protection) has latched off to prevent hardware damage.
2
Test power supply integrity independently.
Determine if the PSU can maintain proper DC voltage rails (+3.3V, +5V, +12V) without latching off.
A standalone PSU tester or multimeter provides direct verification of power supply functionality under clear test conditions.
3
Isolate internal short circuits on component rails.
Disconnect drives, GPU, peripheral power cables, and auxiliary expansion cards to test bare motherboard power-on.
If a peripheral component or card has a shorted capacitor or trace, removing it allows the PSU to start normally, identifying the faulty line.

Key Concept

PSU Protective Latching and Component Short-Circuit Isolation
Question 792Question

A user working on a corporate network needs to manage offline network files and review synchronization status on their Windows computer. Which of the following tasks can be performed directly using the Sync Center Control Panel utility? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: View and resolve file synchronization conflicts; Manage schedule rules for offline file synchronization partnerships

Answer

The tasks that can be performed using Sync Center are viewing and resolving file synchronization conflicts, and managing schedule rules for offline file synchronization partnerships.
Sync Center allows users to keep network files synchronized with local copies, view current sync status, configure automated sync schedules, and resolve file conflicts when changes are made offline.

Step-by-Step Solution

1
Identify the primary purpose of the Sync Center utility in Windows Control Panel.
Sync Center is designed to synchronize data between a computer and network folders or mobile devices.
Understanding the utility's core role isolates offline file management and conflict resolution as its primary functions.
2
Evaluate each task against the features of Sync Center.
Viewing sync conflicts and configuring sync partnership schedules are native features of Sync Center. IP configuration and optional features belong to other Control Panel applets.
Differentiating utility capabilities prevents confusing Sync Center with Network and Sharing Center or Programs and Features.

Key Concept

Windows Sync Center Utility Capabilities
Question 793Question

A support technician replaces a roll of paper in a point-of-sale thermal receipt printer. When issuing a test receipt, the paper feeds through the printer correctly, but the output is completely blank. What is the most likely cause of this issue?

Show answer & explanation

Answer: The thermal paper roll was installed backward, placing the chemically coated side away from the printhead.

Answer

The thermal paper roll was installed backward, placing the chemically coated side away from the thermal printhead.
Direct thermal printers use specialized paper treated with a heat-sensitive chemical coating on one side. When the thermal printhead heats up, it creates marks on this reactive coating. If the paper roll is loaded upside down or backward, the heated printhead presses against the non-coated back side of the paper, resulting in paper feeding normally but producing entirely blank output.

Step-by-Step Solution

1
Analyze the printer technology and reported symptom.
Direct thermal printing uses heat-sensitive paper rather than ink or toner. The paper feeds fine, indicating the feed motor operates normally.
Identifying the thermal printing process narrows the potential causes to thermal paper characteristics.
2
Evaluate the impact of paper orientation in thermal printing.
Thermal paper is coated with heat-reactive dye on only one side. Installing the roll upside down prevents the heating elements on the printhead from contacting the reactive chemical layer.
Reversing the paper roll orientation is a very common cause of completely blank output immediately following a paper replacement.

Key Concept

Direct Thermal Printing Mechanics and Media Orientation
Question 794Question

A network administrator is hardening the network settings on a fleet of Windows 11 Pro workstations. Corporate security policy dictates that clients must properly resolve short, single-label hostnames across multiple internal subdomains without relying on unauthenticated broadcast name resolution protocols if DNS queries fail. Which TWO configuration settings or administrative policies must be implemented on the Windows clients to satisfy these requirements?

Select all that apply

Show answer & explanation

Answer: Configure the DNS suffix search list in Advanced TCP/IP Settings to append parent and specific domain suffixes in order.; Disable Link-Local Multicast Name Resolution (LLMNR) using Local Group Policy or Registry settings.

Answer

The technician must configure the DNS suffix search list under Advanced TCP/IP Settings and disable Link-Local Multicast Name Resolution (LLMNR) via Group Policy.
Configuring the DNS suffix search list allows the client to automatically append defined domain suffixes to single-label queries, ensuring successful DNS lookup across complex internal subdomains. Disabling Link-Local Multicast Name Resolution (LLMNR) ensures that if DNS fails, the client will not send unauthenticated UDP multicast broadcasts across the local subnet, protecting against local name-spoofing attacks.

Step-by-Step Solution

1
Identify the requirement for resolving single-label hostnames across multiple domain trees.
Determined that an explicit DNS suffix search list must be configured in Advanced TCP/IP Properties so the operating system automatically appends domain extensions during host lookup.
Without a DNS suffix search list, single-label queries will only append the primary connection-specific suffix, failing to resolve hosts located in sibling or child subdomains.
2
Identify the requirement to prevent unauthenticated broadcast name resolution fallback.
Determined that Link-Local Multicast Name Resolution (LLMNR) must be disabled via Local Group Policy ('Turn off Link-Local Multicast Name Resolution') or Registry modifications.
LLMNR operates on UDP port 5355 to resolve local names when DNS fails, leaving clients vulnerable to spoofing and poisoned responses (e.g., via Responder tools).

Key Concept

Advanced Windows DNS Suffix Configuration and LLMNR Disablement
Question 795Question

A technician suspects that corrupted protected Windows system files are causing system instability on a desktop computer. Which command-line utility should the technician run from an elevated Command Prompt to scan all protected system files and immediately replace corrupted files with cached copies?

Show answer & explanation

Answer: sfc /scannow

Answer

sfc /scannow
The option specifying 'sfc /scannow' is correct because the System File Checker (SFC) utility scans protected Windows system files for corruption and replaces damaged files with clean copies from the Windows component cache.

Step-by-Step Solution

1
Identify the primary requirement
The goal is to inspect and repair corrupted Windows system files.
System file corruption requires a dedicated command-line verification and integrity repair tool.
2
Select the correct command-line utility
Choose System File Checker with the automatic scan and repair flag.
Running 'sfc /scannow' initiates an immediate scan of protected OS files and restores corrupted files from %WinDir%\System32\dllcache.

Key Concept

Windows System File Checker (SFC)
Question 796Question

A technician needs to manually assign a static IPv4 address and DNS server on a Windows client workstation using the legacy Network Connections applet. In what sequence should the technician perform the following steps from start to finish?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence starts by opening Network Connections using ncpa.cpl, opening the Ethernet adapter properties, selecting TCP/IPv4 properties, specifying the static IP address details, and finally entering the DNS server address before saving.
Configuring a static IPv4 address on Windows using ncpa.cpl requires a logical progression: first open Network Connections using the run command ncpa.cpl, open the network adapter properties menu, select Internet Protocol Version 4 (TCP/IPv4) properties, change the selection to manually enter the IP address parameters (IP, Subnet Mask, Default Gateway), and finally set the DNS server address and save the settings.

Step-by-Step Solution

1
Launch the Network Connections control panel applet
Network adapters installed on the Windows system are displayed
Opening ncpa.cpl quickly navigates directly to network interfaces without navigating through Windows Settings.
2
Open adapter properties
The network interface properties dialog opens showing configured network components
Component properties must be accessed to modify specific network protocol bindings.
3
Open IPv4 properties
The IPv4 address configuration window opens
TCP/IPv4 controls the IP addressing schema utilized for local and remote network communication.
4
Configure static IP parameters
Manual fields for IP Address, Subnet Mask, and Default Gateway are populated
Switching from 'Obtain an IP address automatically' enables static field entry.
5
Configure DNS settings and apply changes
Static IP settings and name resolution servers are saved to the interface
Domain name resolution relies on configured DNS server addresses to translate hostnames to IP addresses.

Key Concept

Windows TCP/IPv4 Manual Client Configuration via Network Connections Applet
Question 797Question

A systems administrator needs to create an automated alert in Windows 11 Pro that monitors system CPU utilization and automatically executes a maintenance script whenever CPU usage exceeds 90%90\%. Place the administrative configuration steps in Performance Monitor (`perfmon.msc`) into the correct chronological order from first to last.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence starts by opening Performance Monitor and creating a manual User Defined Data Collector Set, selecting Performance Counter Alert to configure the % Processor Time counter and 90% threshold, configuring the Alert Action properties to trigger the maintenance task, and finally starting the Data Collector Set.
To build an automated alert-driven workflow in Windows Performance Monitor, an administrator must first create a User Defined Data Collector Set manually (`perfmon.msc`). Next, the collector type must be set to 'Performance Counter Alert' with the specific counter (`% Processor Time`) and threshold (`90%`). After creation, opening the alert properties allows configuring the 'Alert Action' to launch a pre-created task from Task Scheduler. Finally, the Data Collector Set must be started so Windows active monitoring begins.

Step-by-Step Solution

1
Launch Performance Monitor (`perfmon.msc`) and create a manual User Defined Data Collector Set.
Establishes a custom container for performance tracking rules.
Custom alerts cannot be added directly to default system templates without creating a User Defined set first.
2
Configure the collector type as a Performance Counter Alert with the % Processor Time counter set to exceed 90%.
Defines the specific metric and quantitative threshold that constitutes an alert condition.
Performance Monitor requires an Alert-type collector rather than a Data Log collector when monitoring for threshold breaches.
3
Configure the Alert Action properties of the created alert collector to run a defined Task Scheduler task.
Associates the threshold breach event with an automated action (the maintenance script).
The Alert Action tab within the collector properties is where Windows binds event triggers to automated Task Scheduler actions.
4
Start the User Defined Data Collector Set.
Activates background monitoring.
Newly created Data Collector Sets remain in a stopped state until explicitly started.

Key Concept

Performance Monitor Data Collector Sets and Alert Actions
Estimated Time:2m 0s
Question 798Question

A systems administrator is configuring a critical line-of-business daemon operating as a background process on a Windows 11 Workstation. The organization requires that if the service process crashes, the operating system must automatically attempt to restart the service on the first failure, execute a custom PowerShell remediation script on the second failure, and trigger a computer reboot on any subsequent failures. Which administrative tool should the administrator use to configure these tiered failure response actions?

Show answer & explanation

Answer: Services console (services.msc)

Answer

The Services console (services.msc) is the correct tool because its Recovery tab provides native configuration for multi-stage service failure responses, such as restarting the service, running an external program or script, or restarting the computer.
The Services console (services.msc) includes a Recovery tab in the properties window of any installed service. This tab allows administrators to specify independent actions for the first failure, second failure, and subsequent failures, including restarting the service, running an external program or script, or initiating a system reboot.

Step-by-Step Solution

1
Identify the target system component and requirement
The requirement specifies configuring automated recovery actions for a Windows background service based on crash frequency (first, second, and subsequent failures).
Windows service lifecycle and failure recovery policies are managed directly by the Service Control Manager.
2
Evaluate candidate Windows administrative utilities
The Services console (services.msc) contains the Recovery tab under service properties specifically tailored for configuring First failure, Second failure, and Subsequent failure responses (Restart the Service, Run a Program, Restart the Computer).
Other utilities like Task Scheduler or Performance Monitor serve different administrative functions and lack native service recovery policy controls.

Key Concept

Windows Services Recovery configuration settings
Question 799Question

A technician is troubleshooting a mobile 2-in-1 convertible laptop equipped with an organic light-emitting diode (OLED) display. The system powers on, operating system audio plays, and an external monitor connected via HDMI displays video properly. However, the internal screen remains completely black. A junior technician suggests ordering a replacement backlight inverter board to fix the internal screen illumination. Which of the following best explains why this suggestion is incorrect?

Show answer & explanation

Answer: OLED displays generate illumination at the individual pixel level and do not utilize a backlight or inverter board.

Answer

OLED displays generate illumination at the individual pixel level and do not utilize a backlight or inverter board.
OLED displays feature self-emissive pixels that light up individually when electric current is applied. Because there is no separate background lighting layer or cold cathode fluorescent lamp (CCFL), OLED laptops do not contain inverter boards.

Step-by-Step Solution

1
Analyze the mobile device display technology mentioned in the scenario.
The device utilizes an Organic Light-Emitting Diode (OLED) display panel.
Display components and illumination mechanisms vary significantly between legacy CCFL-backed LCDs, LED-backlit LCDs, and OLED panels.
2
Evaluate the illumination hardware requirements of OLED technology.
OLED pixels produce their own light (self-emissive), eliminating the requirement for any external backlighting array or high-voltage inverter board.
Inverter boards were specifically required in older cold cathode fluorescent lamp (CCFL) LCD screens to convert DC power to high-voltage AC power.
3
Determine the proper diagnostic path for a completely black OLED display with working external output.
The issue is likely caused by a failed OLED display panel, damaged display ribbon cable, or loose connector.
Since external video works, the GPU is functioning; replacing non-existent inverter hardware will not resolve the failure.

Key Concept

OLED Display Architecture vs CCFL/LCD Backlighting
Estimated Time:1m 15s
Question 800Question

A shipping warehouse technician receives a report that a high-volume monochrome laser printer is producing documents with faint, repeating double images (ghosting) of previously printed text farther down every page. The technician measures the distance between the top edge of the original text and the top edge of its faint ghost image, finding an exact repeating interval of 3.75 inches3.75\text{ inches} (95 mm95\text{ mm}). Specifications for the printer's internal rollers list the following circumferences:

- Transfer Roller: 1.25 inches1.25\text{ inches} (32 mm32\text{ mm})
- Developer Roller: 1.85 inches1.85\text{ inches} (47 mm47\text{ mm})
- Photosensitive Organic Photoconductor (OPC) Drum: 3.75 inches3.75\text{ inches} (95 mm95\text{ mm})
- Fuser Pressure Roller: 4.50 inches4.50\text{ inches} (114 mm114\text{ mm})

Which of the following components is the primary root cause of this repeating image defect?

Show answer & explanation

Answer: Photosensitive drum, due to incomplete electrical discharge or a damaged wiper blade failing to clear residual toner

Answer

Photosensitive drum, due to incomplete electrical discharge or a damaged wiper blade failing to clear residual toner
In electrophotographic (laser) printers, repeating visual defects occur at regular intervals equal to the circumference of the specific rotating component causing the defect. Because the measured distance between repeating ghost images is 3.75 inches3.75\text{ inches}, matching the photosensitive drum's specified circumference of 3.75 inches3.75\text{ inches}, the photosensitive drum (or its cleaning mechanism/erase lamp within the drum assembly) is the root cause.

Step-by-Step Solution

1
Identify the defect type and measured interval
The defect is a repeating ghost image occurring every 3.75 inches3.75\text{ inches} (95 mm95\text{ mm}).
In laser printing, cyclical defects repeat at a frequency corresponding directly to the circumference of the failing rotating component (C=πdC = \pi d).
2
Correlate the measured interval to the hardware component specifications
The 3.75 inch3.75\text{ inch} measurement matches the photosensitive drum circumference (3.75 inches3.75\text{ inches}).
Matching the defect spacing to component circumference isolates the drum as the physical source of the artifact.
3
Determine the underlying failure mechanism for ghosting at drum frequency
Ghosting occurs during the cleaning or conditioning phase of the electrophotographic process when the erase lamp/cleaning blade fails to neutralize or clear residual latent charge and toner.
When residual charge or toner remains on the drum surface through a full revolution (3.75 inches3.75\text{ inches}), it re-transfers onto the paper during subsequent turns, creating a secondary faint ghost image.

Key Concept

Laser Printer Cyclical Defect Diagnosis & Electrophotographic Process
PreviousPage 40 / 178Next
All practice questions — CompTIA A+ (Core 1 & Core 2) | Examkin