All practice questions

3551 questions

Question 901Question

A help desk technician is troubleshooting a network resolution issue on a Windows client computer. The workstation successfully resolves fully qualified domain names (FQDNs) such as server1.corp.example.com, but attempts to connect using short hostnames such as server1 fail. Which setting in the Advanced TCP/IP Settings dialog box of the network adapter's IPv4 properties should the technician configure to automatically append the required domain suffix?

Show answer & explanation

Answer: Add the domain name to the DNS suffix search list on the DNS tab.

Answer

Add the domain name to the DNS suffix search list on the DNS tab.
Configuring the DNS domain suffix search list on the DNS tab of Advanced TCP/IP Settings tells Windows which domain suffixes to append automatically when a user inputs a single-label hostname (such as 'server1'). This allows the DNS client to resolve 'server1.corp.example.com' without requiring the user to type the full domain name.

Step-by-Step Solution

1
Identify the cause of single-label hostname resolution failure.
The client queries DNS for 'server1' without a domain suffix, causing the lookup to fail because the DNS zone stores host records as FQDNs (e.g., 'server1.corp.example.com').
DNS requires domain suffixes to match host records in active domain zones when short hostnames are queried.
2
Locate the network adapter properties in Windows.
In Network Connections (ncpa.cpl), open the IPv4 Properties dialog and select Advanced to access the DNS tab settings.
The DNS tab contains configuration controls for DNS server addresses and domain suffix search behaviors.
3
Configure the DNS suffix search behavior.
Add 'corp.example.com' to the DNS suffix search list so Windows automatically appends it to short name queries.
This allows queries for short names like 'server1' to be sent as 'server1.corp.example.com'.

Key Concept

Windows TCP/IP Advanced DNS Suffix Search Configuration
Question 902Question

A senior systems administrator is standardizing desktop configuration protocols across a mixed Windows environment. Match each specific administrative requirement to its corresponding Windows Control Panel applet.

Click a left item, then click its matching right item

Items

Configure Data Source Names (DSNs) and database driver interfaces for legacy accounting applications requiring SQL connectivity.
Set system locale settings for non-Unicode legacy software and customize currency and date format display standards.
Enable offline file synchronization between a corporate file server and non-domain-joined mobile devices over HTTPS.
Define telephony dialing rules, area code handling, and TAPI driver properties for integrated fax hardware.

Matches

Show answer & explanation

Answer

Data Source Names (DSNs) match with Administrative Tools / Data Sources (ODBC); system locale and non-Unicode settings match with Region; HTTPS-based file synchronization for non-domain-joined devices matches with Work Folders; telephony dialing rules and TAPI properties match with Phone and Modem.
Each task directly corresponds to its specialized Windows Control Panel utility: Data Sources (ODBC) handles database DSN configurations; Region manages system locale and date/currency formatting; Work Folders handles secure file synchronization over HTTPS for work devices; Phone and Modem manages telephony locations and TAPI dialing rules.

Step-by-Step Solution

1
Analyze the requirement for configuring DSNs and database driver interfaces for legacy accounting software.
Identify that Database connectivity interfaces in Windows Control Panel are managed via Data Sources (ODBC) located under Administrative Tools.
ODBC (Open Database Connectivity) is the standard Windows utility for managing database connections and DSN creation.
2
Analyze the requirement for changing system locale settings and currency/date formatting.
Identify that locale settings, non-Unicode language options, and regional format standards are managed in the Region applet.
The Region Control Panel utility controls system-wide locale settings and measurement/date formats.
3
Analyze the requirement for HTTPS offline file synchronization on non-domain devices.
Identify that Work Folders provides SSL/HTTPS-based file synchronization for mobile and non-domain devices.
Unlike traditional Offline Files (Sync Center), Work Folders operates over HTTPS and works across personal/non-domain devices.
4
Analyze the requirement for defining telephony rules and TAPI driver properties.
Identify that dialing parameters and TAPI hardware properties are configured in Phone and Modem.
Phone and Modem is the dedicated legacy Control Panel utility for managing telephony locations, dialing rules, and modem hardware drivers.

Key Concept

Selecting proper Windows Control Panel utilities for specific system management tasks.
Question 903Question

A systems administrator wants to automate a troubleshooting script so that it executes immediately whenever a custom application writes a critical error with Event ID 404 to the Windows System log. Which administrative tool provides the built-in capability to attach a task directly to a specific logged event?

Show answer & explanation

Answer: Event Viewer (eventvwr.msc)

Answer

Event Viewer (eventvwr.msc) is the administrative tool that allows attaching an automated task directly to a specific logged event ID.
Event Viewer (eventvwr.msc) allows administrators to right-click any event entry in a log and choose 'Attach Task To This Event'. This launches a wizard in Task Scheduler that configures a trigger whenever that specific event source and Event ID occur.

Step-by-Step Solution

1
Identify the trigger requirement.
The requirement calls for executing a script automatically when a specific Event ID (404) is written to the System log.
This is an event-driven task trigger mechanism within Windows administration.
2
Evaluate the administrative tool capable of binding tasks to log entries.
Event Viewer (eventvwr.msc) provides the 'Attach Task To This Event' feature in its Actions pane, creating an automated Task Scheduler trigger linked directly to that event log entry.
Event Viewer natively integrates with Task Scheduler to automate responses to log events.

Key Concept

Attaching automated tasks to Windows Event Log entries using Event Viewer
Question 904Question

A desktop support technician is tasked with upgrading an existing workstation running 64-bit Windows 10 Pro to Windows 11 Pro. The system currently uses Legacy BIOS boot mode with a Master Boot Record (MBR) disk layout. To meet Windows 11 system requirements, the technician must convert the system disk to GUID Partition Table (GPT) and enable UEFI mode with Secure Boot before performing an in-place upgrade, all while preserving user files and applications. Place the required steps in the correct sequential order from first to last.

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence begins with validating the disk layout using `mbr2gpt /validate`, followed by executing the disk conversion with `mbr2gpt /convert`, updating system firmware from Legacy BIOS to UEFI with Secure Boot enabled, and finally executing the Windows 11 installation setup to complete the in-place upgrade.
The disk must first be validated using `mbr2gpt /validate /allowFullOS` to verify layout compliance. Next, `mbr2gpt /convert /allowFullOS` changes the partition table from MBR to GPT. Immediately after conversion, the system must be rebooted into firmware to switch from Legacy BIOS/CSM mode to native UEFI with Secure Boot. Finally, with UEFI mode active and GPT established, the technician boots Windows and launches Windows 11 setup to perform the in-place upgrade.

Step-by-Step Solution

1
Run validation tool in Windows
The `mbr2gpt /validate /allowFullOS` command checks the disk layout and confirms system eligibility without modifying data.
Validation prevents failed conversion attempts that could corrupt partition structures.
2
Convert partition table to GPT
The `mbr2gpt /convert /allowFullOS` command reconfigures the partition structure to GPT and creates the required EFI System Partition.
Windows 11 mandates a GPT disk layout to boot under UEFI mode.
3
Reconfigure system firmware
Restarting into system setup, turning off Compatibility Support Module (CSM)/Legacy mode, and turning on UEFI Boot and Secure Boot aligns hardware settings with the new disk partition layout.
The converted disk can no longer boot under Legacy BIOS mode; it requires UEFI mode.
4
Run Windows 11 Setup
Launching the Windows 11 installer allows the system to verify TPM 2.0, Secure Boot, and UEFI requirements, completing the in-place upgrade.
The OS upgrade can only proceed once all hardware and partition prerequisites are satisfied.

Key Concept

Converting MBR to GPT using `mbr2gpt.exe` before enabling UEFI and performing a Windows 11 upgrade
Question 905Question

A technician is tasked with upgrading a workstation from a 32-bit edition of Windows 10 Home to a 64-bit edition of Windows 10 Pro. The user requests an in-place upgrade to preserve all existing applications, settings, and personal files without performing a reinstallation of installed programs. Which of the following statements should the technician convey to the user?

Show answer & explanation

Answer: Direct in-place upgrades between 32-bit and 64-bit architectures are not supported, so a clean installation must be performed.

Answer

Direct in-place upgrades between 32-bit and 64-bit architectures are not supported, so a clean installation must be performed.
Microsoft Windows operating systems do not support in-place upgrades when changing system architecture from 32-bit to 64-bit. Upgrading across architectures requires backing up data, performing a clean installation of the target OS, and reinstalling all user applications.

Step-by-Step Solution

1
Analyze the starting operating system configuration and target upgrade request.
Source system is 32-bit Windows 10 Home; target system is 64-bit Windows 10 Pro.
Identifying both the edition and processor architecture is critical to determine supported upgrade paths.
2
Evaluate Windows operating system architecture upgrade rules.
An in-place upgrade across architecture types (32-bit to 64-bit) is impossible.
System kernel, registry structures, system drivers, and application libraries differ completely between 32-bit and 64-bit operating systems.
3
Formulate the required installation procedure.
Advise the user that user files must be backed up and a clean installation executed.
A clean installation formats or overwrites the partition, wiping existing applications and settings.

Key Concept

OS Architecture Upgrade Constraints and Clean Installation Requirements
Question 906Question

A technician is preparing to perform a clean operating system installation on a user's workstation. In what order should the technician execute the following steps to ensure a successful deployment without data loss?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence for a clean OS installation is: Back up critical user files, configure UEFI/BIOS boot settings, partition and format the target drive, complete OOBE account setup, and install system drivers and updates.
A clean OS installation must begin with backing up data to protect user files. Next, configuring the boot order in UEFI/BIOS ensures the system starts from installer media. Partitioning and formatting disk space prepares the drive to receive OS files. Completing OOBE establishes initial login credentials and preferences. Finally, updating hardware drivers and applying security patches ensures full operational readiness.

Step-by-Step Solution

1
Preserve existing user data.
User files are safely backed up to an external medium.
Prevents permanent data destruction during storage formatting.
2
Adjust system boot sequence in firmware.
Computer boots directly from the installation USB or optical disc.
Allows the installation wizard to launch instead of booting into the primary storage drive.
3
Prepare target storage drive in setup program.
Target disk is partitioned and formatted with the designated file system.
Creates a clean structure for the operating system system files.
4
Configure Out-of-Box Experience (OOBE).
Initial user accounts, network connectivity, and privacy settings are established.
Finalizes the initial interactive setup sequence of the new OS environment.
5
Perform post-installation system servicing.
All hardware components operate properly with official vendor drivers and patches.
Ensures system security, hardware stability, and full functionality.

Key Concept

Clean OS Installation Sequence
Estimated Time:1m 0s
Question 907Question

A network technician needs to reset a Windows workstation's dynamic IP address assignment and verify the updated network configuration using the command line. In what order should the technician execute the following steps?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence begins with opening an elevated Command Prompt, executing 'ipconfig /release' to release the active IP lease, running 'ipconfig /renew' to acquire a new IP configuration from the DHCP server, and finally executing 'ipconfig /all' to verify the new settings.
To reset and verify a Windows client's DHCP configuration, an elevated Command Prompt must first be opened. Next, executing 'ipconfig /release' releases the current IP address. Following that, 'ipconfig /renew' requests a new IP configuration from the DHCP server. Finally, running 'ipconfig /all' confirms that the client received valid network settings.

Step-by-Step Solution

1
Open an elevated Command Prompt window
Access to administrative network utilities is granted.
Administrative rights are necessary to modify network adapter settings via command line.
2
Release existing DHCP lease
The current IP address configuration is cleared from the network adapter.
Clearing the existing IP configuration allows the interface to request fresh addressing parameters.
3
Request a new DHCP lease
A new IP address, subnet mask, default gateway, and DNS configuration are provided by the DHCP server.
Running the renewal switch broadcasts a request for a fresh IP lease.
4
Verify settings using ipconfig /all
Detailed TCP/IP configuration parameters are displayed in the command output.
Inspecting the full network details confirms the workstation successfully obtained valid addressing parameters.

Key Concept

DHCP Release and Renewal Command Sequence
Question 908Question

A desktop support technician is troubleshooting a workstation that displays a "No boot device available" error on startup following a physical office relocation. The technician interviewed the user, reviewed system logs, and established a theory that the internal storage drive cable became loose during transit. The technician opened the workstation chassis, discovered an unseated SATA data cable, reconnected it securely, and confirmed that the operating system now boots successfully to the desktop login screen. Which of the following actions should the technician take NEXT according to the CompTIA 6-step troubleshooting methodology?

Show answer & explanation

Answer: Verify full system functionality and implement preventive measures to prevent future occurrences.

Answer

Verify full system functionality and implement preventive measures to prevent future occurrences.
The CompTIA troubleshooting methodology follows a strict sequence: 1. Identify the problem, 2. Establish a theory of probable cause, 3. Test the theory to determine cause, 4. Establish a plan of action and implement the solution, 5. Verify full system functionality and implement preventive measures, 6. Document findings, actions, and outcomes. Because the technician has successfully reconnected the physical cable and confirmed basic system booting, the immediate next action is Step 5: verifying complete system functionality and applying preventive measures.

Step-by-Step Solution

1
Analyze the troubleshooting actions performed so far.
The technician completed Step 1 (Identify the problem), Step 2 (Establish a theory of probable cause), and Step 3/4 (Test the theory and implement the fix by reconnecting the loose cable).
Identifying the current phase in the CompTIA 6-step troubleshooting methodology determines the mandatory next action.
2
Determine the next sequential step in the CompTIA 6-step methodology.
Step 5 dictates verifying full system functionality and, if applicable, implementing preventive measures.
System verification ensures that no secondary issues were introduced during repair, and preventive measures prevent repeat failures.

Key Concept

CompTIA 6-Step Troubleshooting Methodology Order
Question 909Question

A systems technician is diagnosing an enterprise desktop workstation that fails to complete POST. The motherboard status LEDs halt consistently at the DRAM indicator. The system is equipped with two identical 16 GB memory modules. During diagnostic isolation, the technician verifies that both memory modules function correctly and boot when tested individually in slot A2. However, whenever any memory module is installed into slot B2—either individually or paired with slot A2—the system immediately fails POST at the DRAM indicator. Which of the following is the most likely root cause of this failure?

Show answer & explanation

Answer: Bent CPU socket pins or damaged motherboard circuit traces connecting to memory Channel B.

Answer

Bent CPU socket pins or damaged motherboard circuit traces connecting to memory Channel B.
Because both memory modules passed POST when tested individually in slot A2, the memory sticks themselves are fully functional. The POST DRAM halt occurring specifically when slot B2 is populated isolates the issue to memory Channel B. Because modern CPUs integrate the memory controller directly on the die, bent CPU socket pins or cracked motherboard trace lines between the CPU socket and slot B2 disrupt electrical continuity, preventing Channel B from initializing during POST.

Step-by-Step Solution

1
Analyze diagnostic isolation results for the memory modules
Both memory modules successfully complete POST when installed individually in slot A2.
This confirms both RAM modules are known-good components and eliminates RAM stick failure as the root cause.
2
Isolate the failure domain based on slot behavior
The failure occurs exclusively when slot B2 is populated, stopping hardware initialization at the DRAM POST stage.
The symptom isolates the fault to the physical communication path of memory Channel B.
3
Identify the underlying hardware failure
Bent pins inside the CPU socket or fractured motherboard traces interrupt electrical continuity between the CPU integrated memory controller and DIMM slot B2.
The CPU memory controller communicates directly with DIMM slots through LGA/PGA pin contacts and motherboard trace lines. Physical damage along this pathway causes memory initialization failure during POST.

Key Concept

RAM Channel Isolation and Socket Pin Diagnostics
Question 910Question

Match each network symptom described on the left with its most likely root cause on the right.

Click a left item, then click its matching right item

Items

A workstation receives an IP address starting with 169.254.50.12 and cannot access external internet resources.
A user can successfully ping an external IP address (8.8.8.8) but receives a host unreachable error when attempting to ping www.comptia.org.
A wireless client experiences severe latency and dropped packets in an office suite where adjacent access points are all set to 2.4 GHz Channel 3.
A wired desktop reports no network connection, and the Ethernet port LED link indicators on the back of the PC remain completely unlit.

Matches

Show answer & explanation

Answer

169.254.x.x IP matches DHCP unreachability (APIPA); Ping by IP working but domain name failing matches DNS misconfiguration; 2.4 GHz Channel 3 usage matches channel interference; Unlit NIC link lights match physical layer cable fault.
Each symptom maps directly to standard networking layer troubleshooting principles: APIPA (169.254.x.x) signals DHCP unreachability; successful IP communication with failed FQDN resolution indicates DNS failure; 2.4 GHz Channel 3 causes wireless interference; and completely unlit NIC LEDs confirm a Layer 1 physical link failure.

Step-by-Step Solution

1
Analyze the 169.254.x.x symptom
Identify that 169.254.0.0/16 is the APIPA address block reserved for DHCP failure.
When a DHCP client fails to obtain an IP address lease, it assigns itself an APIPA address.
2
Analyze IP vs domain ping testing
Identify that IP routing is functional but name resolution is broken.
Pinging by IP tests Layer 3 connectivity, while pinging by name tests DNS resolution.
3
Analyze 2.4 GHz channel assignment on Channel 3
Identify wireless channel overlap/interference.
The only non-overlapping 2.4 GHz channels are 1, 6, and 11. Channel 3 overlaps with channels 1 and 6 causing severe signal degradation.
4
Analyze unlit link lights on Ethernet NIC
Identify physical connection failure.
Link lights reflect physical Layer 1 signal detection between the NIC transceiver and switch.

Key Concept

Wired and Wireless Network Troubleshooting Symptoms and Diagnoses
Question 911Question

A desktop support technician is requested to perform an upgrade on a workstation currently running a 32-bit version of Windows 10 Home. The user wants to retain all installed applications and user settings while migrating to 64-bit Windows 11 Pro to access domain joining and encryption capabilities. What should the technician communicate to the user regarding the required installation procedure?

Show answer & explanation

Answer: An in-place upgrade cannot be performed when changing CPU architecture from 32-bit to 64-bit; a clean installation must be executed after backing up user files.

Answer

An in-place upgrade cannot be performed when changing CPU architecture from 32-bit to 64-bit; a clean installation must be executed after backing up user files.
Moving from a 32-bit operating system architecture to a 64-bit architecture cannot be achieved via an in-place upgrade. Windows setup requires booting from installation media and executing a clean install, which formats the target partition. User files must be backed up externally prior to installation, and applications must be manually reinstalled afterward.

Step-by-Step Solution

1
Analyze the upgrade request parameters.
Identified source OS as 32-bit Windows 10 Home and target OS as 64-bit Windows 11 Pro.
Determining architectural and edition differences is mandatory before selecting an installation path.
2
Evaluate Windows OS architecture upgrade rules.
Confirmed that cross-architecture upgrades (32-bit to 64-bit) are unsupported as in-place upgrades in Windows.
System files, kernel structures, and registry entries differ fundamentally between 32-bit and 64-bit operating systems.
3
Select the correct deployment method based on architectural constraints.
Concluded that a clean installation is required, necessitating data backup and application reinstallation.
A clean installation is the only technical method to transition a system from a 32-bit OS to a 64-bit OS.

Key Concept

Windows OS Architecture Upgrade Constraints (32-bit vs. 64-bit)
Question 912Question

A user's custom database client application on a Windows 11 workstation has become completely unresponsive. A systems administrator needs to determine if the application is experiencing a thread deadlock, terminate the blocking process, and inspect the system logs for the application hang event. In what chronological order should the administrator perform the steps below?

Drag items to arrange them in the correct order

Show answer & explanation

Answer

The correct sequence begins by launching Resource Monitor and selecting the CPU tab, right-clicking the hung process to Analyze Wait Chain, terminating the identified blocking process thread, and finally checking the Application log in Event Viewer for event details.
The correct workflow starts by opening Resource Monitor (resmon.exe) to evaluate live CPU processes. Using 'Analyze Wait Chain' on the frozen process allows the administrator to pinpoint the exact blocking PID causing the deadlock. Ending that specific blocking process clears the lock. Finally, opening Event Viewer (eventvwr.msc) to examine the Application log allows the administrator to review the Application Hang event for underlying faulting modules.

Step-by-Step Solution

1
Open Resource Monitor and navigate to CPU process listings.
Active processes and thread data are displayed.
Resource Monitor provides advanced process interaction, including thread wait chain diagnostics that standard Task Manager views do not offer.
2
Execute the Analyze Wait Chain feature on the target process.
A window opens illustrating which child or external thread is delaying execution.
This identifies whether the application is waiting on another process PID or an external resource.
3
Terminate the blocking PID listed in the Wait Chain view.
The resource lock is released, restoring application responsiveness.
Ending only the blocking thread clears the deadlock without needing a full system reboot.
4
Open Event Viewer and check the Application log.
Event ID details regarding the Application Hang are retrieved.
Event Viewer records official system events and error codes essential for root-cause analysis and documentation.

Key Concept

Windows Resource Monitor Analyze Wait Chain and Event Viewer Application Log Diagnostics
Estimated Time:1m 30s
Question 913Question

Match each physical security control to its primary protective function.

Click a left item, then click its matching right item

Items

Biometric scanner
Physical port lock
Faraday enclosure
Smart card reader

Matches

Show answer & explanation

Answer

Biometric scanner matches physiological identity verification; Physical port lock matches blocking unauthorized external drive insertion; Faraday enclosure matches blocking electromagnetic and radio frequency signals; Smart card reader matches authenticating badges with embedded microchips.
Each physical security control serves a targeted protective function: Biometric scanners analyze physiological traits (fingerprints, retina); Physical port locks obstruct physical interface ports to prevent unauthorized USB flash drives; Faraday enclosures shield electronics against wireless and RF signals; Smart card readers process credentials stored on badge microchips.

Step-by-Step Solution

1
Identify the primary mechanism of Biometric scanner.
Matches verification of physiological traits such as fingerprints or iris scans.
Biometrics specifically rely on biological measurement.
2
Identify the function of Physical port locks.
Matches preventing unauthorized insertion of USB drives.
Port locks physically obstruct interface slots on workstation hardware.
3
Identify the purpose of Faraday enclosures.
Matches blocking electromagnetic signals and RF emissions.
Faraday shielding creates a conductive cage that attenuates external RF signals.
4
Identify the role of Smart card readers.
Matches authenticating embedded microchips on ID badges.
Smart cards utilize embedded integrated circuits to prove identity.

Key Concept

Physical Security Controls
Question 914Question

A desktop support technician is auditing newly purchased laptops running Windows 11 Home to verify whether they can meet corporate endpoint requirements. Organizational policy mandates central configuration management via Local Group Policy and data protection via full BitLocker Drive Encryption. Which of the following statements correctly explain why Windows 11 Home fails these compliance requirements? (Select TWO.)

Select all that apply

Show answer & explanation

Answer: Windows 11 Home lacks the Local Group Policy Editor (gpedit.msc) management administrative utility.; Windows 11 Home does not support full BitLocker Drive Encryption management.

Answer

Windows 11 Home fails corporate requirements because it does not include the Local Group Policy Editor (gpedit.msc) and does not support full BitLocker Drive Encryption.
Windows 11 Home is designed for personal computing and excludes business management utilities. Specifically, the Local Group Policy Editor (gpedit.msc) and full BitLocker Drive Encryption management are absent in Home and require an upgrade to Windows 11 Pro or Enterprise.

Step-by-Step Solution

1
Analyze corporate requirements against Windows 11 Home features.
Identify that Group Policy management and BitLocker Drive Encryption are required.
Windows 11 Home is aimed at consumer users and lacks enterprise management features.
2
Verify feature presence in Windows 11 Home edition.
Confirm that gpedit.msc is omitted and full BitLocker management is reserved for Pro/Enterprise editions.
These features are edition-exclusive capabilities of Windows 11 Pro, Enterprise, and Education.

Key Concept

Windows Edition Feature Boundaries
Estimated Time:1m 30s
Question 915Question

A network administrator is setting up an Alternate IP Configuration on a Windows 11 laptop for a field technician who frequently alternates between a DHCP-enabled corporate network and an isolated static-only testing lab. After entering the static parameters for the lab under the Alternate Configuration tab in TCP/IPv4 properties, the laptop is connected to the lab network but receives an APIPA address (169.254.x.x169.254.x.x) instead of applying the 10.0.5.0/2410.0.5.0/24 alternate static configuration. Which of the following is the root cause of this issue?

Show answer & explanation

Answer: The General tab of the IPv4 properties is manually set to a static IP address rather than configured to obtain an IP address automatically.

Answer

The General tab of the IPv4 properties is manually set to a static IP address rather than configured to obtain an IP address automatically.
In Windows client networking, the Alternate IP Configuration tab allows a user to specify static IP settings (such as IP address, subnet mask, default gateway, and DNS servers) that are automatically applied only when a DHCP server fails to respond on the network. For this mechanism to function, the main General tab under TCP/IPv4 properties must be set to 'Obtain an IP address automatically'. If the General tab is configured with static IP properties, Windows will never initiate a DHCP request, and the Alternate Configuration tab is completely ignored.

Step-by-Step Solution

1
Analyze the problem symptoms and Windows Alternate IP Configuration requirements.
Recognize that Alternate IP Configuration is designed as a fallback mechanism when DHCP discovery fails on a network.
Windows only evaluates the Alternate Configuration tab when the main General tab is set to dynamic DHCP assignment ('Obtain an IP address automatically').
2
Evaluate the current configuration state.
Determine that if static IP settings are manually configured on the General tab, the system will not send DHCP requests or trigger Alternate Configuration settings.
Explicit static settings on the General tab override DHCP discovery and prevent fallback triggers.
3
Identify the corrective action.
Set the General tab of TCP/IPv4 properties to 'Obtain an IP address automatically' while leaving the static parameters under the Alternate Configuration tab.
This enables DHCP discovery on the corporate network and automatic fallback to the alternate static configuration when connected to the lab network.

Key Concept

Windows TCP/IPv4 Alternate IP Configuration Prerequisites
Question 916Question

A field technician is registering a batch of newly issued enterprise smartphones with a cellular carrier for device tracking and inventory management. The carrier requires the unique 15-digit physical hardware serial number hardcoded into each mobile device's cellular modem to track the physical device hardware on their network. Which of the following identifiers should the technician retrieve and document from the devices?

Show answer & explanation

Answer: International Mobile Equipment Identity (IMEI)

Answer

The International Mobile Equipment Identity (IMEI)
The International Mobile Equipment Identity (IMEI) is a unique 15-digit code built into cellular mobile hardware that identifies the physical device to cellular networks.

Step-by-Step Solution

1
Analyze the carrier requirement in the scenario.
The requirement calls for a 15-digit hardware identifier tied specifically to the physical mobile device transceiver.
Tracking physical equipment hardware on cellular networks requires a unique global hardware identifier.
2
Differentiate between device hardware identifiers and subscriber identification.
The International Mobile Equipment Identity (IMEI) uniquely identifies the physical mobile handset handset hardware, whereas the International Mobile Subscriber Identity (IMSI) identifies the subscriber account on the SIM card.
Swapping a SIM card changes the IMSI associated with the subscriber account, but the physical device's IMEI remains fixed to the hardware.

Key Concept

Distinguishing between mobile device hardware identifiers (IMEI) and subscriber identity module identifiers (IMSI) during mobile provisioning.
Question 917Question

As a Windows network administrator troubleshooting client connectivity issues, you frequently use command-line utilities to inspect networking state. Match each Windows networking CLI tool or switch on the left with its primary diagnostic function on the right.

Click a left item, then click its matching right item

Items

ipconfig /all
nslookup
netsh wlan show profile
route print

Matches

Show answer & explanation

Answer

ipconfig /all pairs with displaying detailed TCP/IP configuration including MAC address, DHCP server, lease times, and DNS servers; nslookup pairs with querying name servers to diagnose DNS hostname resolution; netsh wlan show profile pairs with listing saved Wi-Fi network SSID profiles; route print pairs with displaying active IPv4 and IPv6 routing table entries.
Each tool directly corresponds to its dedicated Windows networking subsystem: ipconfig /all provides full adapter parameters including MAC and DHCP details; nslookup provides direct DNS record lookup; netsh wlan show profile reads wireless configuration profiles; and route print reveals the IPv4 and IPv6 routing tables.

Step-by-Step Solution

1
Analyze each command-line tool listed on the left.
Identify that ipconfig /all extended switch shows full network interface details, nslookup is used for DNS testing, netsh wlan inspects wireless configuration, and route print displays routing tables.
Matching each CLI utility requires recognizing its specific parameter set and operational scope within Windows client networking.
2
Pair each command with its corresponding function.
Match ipconfig /all to full TCP/IP properties, nslookup to DNS name server queries, netsh wlan show profile to saved Wi-Fi profiles, and route print to IPv4/IPv6 routing table output.
Accurate diagnostic tool selection ensures effective troubleshooting of physical, network, and application-layer connectivity issues.

Key Concept

Windows Command-Line Networking Diagnostics
Question 918Question

A computer technician needs to change a desktop computer's operating system from a 32-bit version of Windows 10 to a 64-bit version of Windows 10. Which of the following installation methods must the technician use to complete this upgrade?

Show answer & explanation

Answer: A clean installation after backing up all user data and settings

Answer

A clean installation after backing up user data is required to switch from a 32-bit architecture to a 64-bit architecture.
Direct in-place upgrades between 32-bit (x86) and 64-bit (x64) architectures are not supported by Microsoft Windows. Transitioning to a 64-bit OS requires backing up user data and performing a clean installation from bootable 64-bit installation media.

Step-by-Step Solution

1
Identify the migration requirement
The target requirement is changing OS architecture from 32-bit (x86) to 64-bit (x64).
Windows does not support direct in-place architecture upgrades.
2
Determine valid upgrade path
A clean installation (custom setup) must be selected.
System files, registry structures, and driver models are fundamentally different between 32-bit and 64-bit architectures.

Key Concept

Upgrading from a 32-bit OS to a 64-bit OS always requires a clean installation. User files and applications must be backed up and restored manually or via migration tools.
Estimated Time:45s
Question 919Question

A desktop technician is configuring a dedicated financial workstation running Windows 11 Enterprise. The workstation requires two specific adjustments: first, the technician must expose hidden system file extensions and protected operating system files to troubleshoot a localized database path; second, the technician needs to clear cached domain authentication tokens that are causing single sign-on failures for a legacy line-of-business application. Which combination of Windows Control Panel applets should the technician use to accomplish these tasks?

Show answer & explanation

Answer: File Explorer Options and Credential Manager

Answer

The technician must use File Explorer Options to unhide protected operating system files and display file extensions, and Credential Manager to clear stored authentication tokens.
The option specifying File Explorer Options and Credential Manager is correct. File Explorer Options contains the View tab where users can unhide protected system files and show file extensions. Credential Manager manages saved vault credentials for applications and network shares, allowing technicians to delete cached domain authentication tokens.

Step-by-Step Solution

1
Identify the Control Panel applet required for altering file visibility and extension settings.
File Explorer Options (View tab) contains settings for 'Show hidden files, folders, and drives' and 'Hide extensions for known file types'.
This applet centrally controls how files and system items are presented in Windows Explorer.
2
Identify the Control Panel applet required for managing stored domain and web credentials.
Credential Manager allows users and technicians to view, edit, and delete stored Windows and Web Credentials.
Corrupt or outdated single sign-on tokens cached by Windows are cleared via Credential Manager.
3
Combine the identified applets to select the correct option.
File Explorer Options and Credential Manager directly fulfill both requirements.
No other Control Panel applet pair addresses both hidden file attributes and cached authentication credentials.

Key Concept

Windows Control Panel Utility Capabilities
Estimated Time:1m 30s
Question 920Question

A user contacts the helpdesk because an installer for a business productivity software suite fails with an 'Access Denied' error when attempting to copy files into the C:\Program Files directory. The user is logged into Windows with a standard domain user account. Which of the following actions should the technician take first to successfully install the application?

Show answer & explanation

Answer: Launch the application setup file using administrative privileges.

Answer

Launch the application setup file using administrative privileges.
Installing software into protected system directories like C:\Program Files requires administrative privileges. Standard user accounts are restricted from modifying these directories to protect system integrity. Launching the installer with administrative elevation allows the installation to complete successfully.

Step-by-Step Solution

1
Identify the cause of the installation failure.
The 'Access Denied' error occurs because standard user accounts cannot write to protected system paths such as C:\Program Files.
Windows protects system directories using User Account Control (UAC) and NTFS permission boundaries.
2
Elevate permissions for the installation process.
Right-click the executable setup file and select 'Run as administrator', supplying administrator credentials when prompted.
Elevating administrative privileges allows the setup process to write files to protected folders and configure system settings.

Key Concept

Administrative Permissions for Application Installation
Estimated Time:45s
PreviousPage 46 / 178Next
All practice questions — CompTIA A+ (Core 1 & Core 2) | Examkin