All practice questions

521 questions

Question 241Question

Match each remote access technology or protocol on the left with its primary operational security or network characteristic on the right.

Click a left item, then click its matching right item

Items

Remote Desktop Protocol (RDP)
Secure Shell (SSH)
Microsoft Remote Assistance (MSRA)
Telnet

Matches

Show answer & explanation

Answer

RDP matches with full graphical desktop access over TCP port 3389; SSH matches with encrypted CLI administration over TCP port 22; MSRA matches with invitation-based interactive desktop session sharing; Telnet matches with unencrypted plain text command-line access over TCP port 23.
Each technology is correctly paired with its specific security and operational characteristic: RDP provides full remote GUI access on TCP 3389; SSH delivers encrypted CLI access on TCP 22; MSRA enables user-invited session sharing; and Telnet sends unencrypted CLI traffic on TCP 23.

Step-by-Step Solution

1
Identify the protocol transport and port specifications for terminal protocols.
SSH uses TCP port 22 (encrypted CLI), whereas Telnet uses TCP port 23 (unencrypted CLI).
Security protocols separate encrypted management protocols like SSH from legacy plain text protocols like Telnet.
2
Differentiate Windows graphical remote management solutions.
RDP allows complete administrative login over TCP 3389, while MSRA requires user initiation and invitation for interactive assistance.
RDP is designed for independent desktop connectivity, whereas MSRA is structured for collaborative user assistance.

Key Concept

Remote Access Protocols, Port Numbers, and Security Boundaries
Question 242Question

Match each administrative scripting file extension to its primary execution environment or runtime host.

Click a left item, then click its matching right item

Items

.ps1
.bat
.sh
.py

Matches

Show answer & explanation

Answer

The .ps1 extension matches Windows PowerShell, .bat matches Windows Command Prompt (cmd.exe), .sh matches Linux/Unix Shell (Bash), and .py matches the Python Interpreter.
Each file extension maps directly to its intended execution host: .ps1 targets Windows PowerShell, .bat targets the Windows Command Prompt, .sh targets Unix/Linux shell interpreters like Bash, and .py targets the Python interpreter environment.

Step-by-Step Solution

1
Identify the primary interpreter or engine associated with each script file extension.
.ps1 associates with Windows PowerShell, .bat associates with Windows Command Prompt (cmd.exe), .sh associates with Unix/Linux Bash shell, and .py associates with the Python interpreter.
File extensions inform the operating system which shell environment or language interpreter must be invoked to parse and execute script commands.

Key Concept

Scripting Languages and Associated File Extensions
Estimated Time:45s
Question 243Question

A technician is reviewing network configuration settings and wireless features on corporate mobile devices. Match each mobile connectivity feature or setting to its primary technical function.

Click a left item, then click its matching right item

Items

SIM Lock
Bluetooth PAN
Cellular Data Roaming
Baseband Update

Matches

Show answer & explanation

Answer

SIM Lock matches restricting handset operation on unauthorized provider networks; Bluetooth PAN matches short-range wireless tethering to share internet access; Cellular Data Roaming matches maintaining data connectivity over partner networks outside primary service areas; Baseband Update matches applying software patches to modem hardware for radio performance and tower handoffs.
Each feature correctly corresponds to its primary mobile network role: SIM Lock restricts unauthorized carrier usage, Bluetooth PAN provides wireless internet tethering, Cellular Data Roaming permits partner network data connections, and Baseband Updates manage modem radio firmware.

Step-by-Step Solution

1
Evaluate the function of SIM Lock
Identified as carrier restriction enforced on device hardware/software
SIM locking restricts mobile devices from recognizing SIM cards issued by non-approved carriers.
2
Evaluate the function of Bluetooth PAN
Identified as a short-range wireless personal area network profile for data sharing
PAN profile provides IP routing over Bluetooth connections for tethering.
3
Evaluate the function of Cellular Data Roaming
Identified as enabling partner carrier data transmission outside native coverage area
Roaming configurations allow devices to switch to available partner cellular towers.
4
Evaluate the function of Baseband Update
Identified as updates applied to cellular modem radio firmware
Baseband firmware directly controls radio frequency communication and tower handoff logic.

Key Concept

Mobile device network settings, wireless profiles, and modem update functions
Question 244Question

An IT manager is constructing an enterprise regulatory compliance matrix for system administrators and technicians. Match each privacy regulation or compliance standard on the left with its corresponding technical safeguard or operational requirement on the right.

Click a left item, then click its matching right item

Items

General Data Protection Regulation (GDPR)
Health Insurance Portability and Accountability Act (HIPAA)
Payment Card Industry Data Security Standard (PCI-DSS)
Family Educational Rights and Privacy Act (FERPA)

Matches

Show answer & explanation

Answer

General Data Protection Regulation (GDPR) pairs with automated data erasure workflows and consent management; Health Insurance Portability and Accountability Act (HIPAA) pairs with access controls and audit logging for Protected Health Information; Payment Card Industry Data Security Standard (PCI-DSS) pairs with network isolation and encryption for cardholder data; Family Educational Rights and Privacy Act (FERPA) pairs with access restrictions on student academic records.
Each regulatory compliance framework imposes operational requirements targeted at specific types of regulated data: GDPR enforces consumer privacy rights such as explicit consent and right to erasure; HIPAA mandates technical access controls, logging, and encryption for Protected Health Information (PHI); PCI-DSS governs payment card handling by mandating network segmentation and prohibition of CVV storage; FERPA protects student academic records from unauthorized disclosure.

Step-by-Step Solution

1
Analyze GDPR requirements
Identified consumer privacy rights including data erasure (right to be forgotten) and explicit consent mechanisms for personal data collection.
GDPR focuses broadly on individual consumer data privacy rights within EU jurisdictions.
2
Analyze HIPAA requirements
Identified safeguards for Protected Health Information (PHI) such as patient logs, diagnostic files, and medical treatment records.
HIPAA technical safeguards dictate encryption, access restrictions, and detailed audit trails for healthcare records.
3
Analyze PCI-DSS requirements
Identified cardholder data environment (CDE) controls including network segmentation, AES encryption for PAN, and zero persistent storage for security codes.
PCI-DSS focuses strictly on merchant processing security and protecting credit/debit card financial transaction data.
4
Analyze FERPA requirements
Identified protection controls over student educational transcripts and academic performance data.
FERPA governs educational records privacy in academic settings.

Key Concept

Data Privacy Frameworks and Operational Technical Controls
Question 245Question

A systems administrator is reviewing multiple maintenance scripts used across Windows and Linux workstations to audit system environment variable access and execution commands. Match each scripting code snippet or construct to its corresponding scripting language environment.

Click a left item, then click its matching right item

Items

$env:COMPUTERNAME
echo $HOSTNAME
WScript.Echo WScript.Arguments(0)
import os; print(os.environ['COMPUTERNAME'])

Matches

Show answer & explanation

Answer

The construct 'env:COMPUTERNAMEmatchesWindowsPowerShell(.ps1);echoenv:COMPUTERNAME' matches Windows PowerShell (.ps1); 'echo HOSTNAME' matches Linux Bash (.sh); 'WScript.Echo WScript.Arguments(0)' matches VBScript (.vbs); and 'import os; print(os.environ["COMPUTERNAME"])' matches Python (.py).
Each script construct relies on unique syntactical elements characteristic of its underlying engine: PowerShell uses env:forenvironmentvariables,Bashusesstandardenv: for environment variables, Bash uses standard prefixes with shell built-in commands like echo, VBScript invokes WScript objects, and Python uses module imports (import os) paired with object/dictionary methods.

Step-by-Step Solution

1
Identify the environment variable drive syntax ($env:).
Recognize that $env: indicates a PowerShell environment drive reference.
PowerShell exposes environment variables through the Env: drive namespace.
2
Analyze standard shell variables and echo commands.
Link 'echo $HOSTNAME' to Unix/Linux Bash.
Bash scripts prepend variable names with '$' and utilize built-in shell commands like 'echo'.
3
Identify Windows Script Host object references.
Link 'WScript.Echo' and 'WScript.Arguments' to VBScript.
VBScript executes under WSH/CScript/WSCRIPT engines and accesses host objects via WScript.
4
Examine module import statements and dictionary access syntax.
Link 'import os; print(os.environ[...])' to Python.
Cross-platform scripting in Python relies on importing operating system modules such as 'os'.

Key Concept

Basic Scripting Languages and Constructs
Question 246Question

Match each data privacy framework or regulation on the left with its primary operational scope or data protection focus on the right.

Click a left item, then click its matching right item

Items

Payment Card Industry Data Security Standard (PCI-DSS)
Health Insurance Portability and Accountability Act (HIPAA)
General Data Protection Regulation (GDPR)
Family Educational Rights and Privacy Act (FERPA)

Matches

Show answer & explanation

Answer

Payment Card Industry Data Security Standard (PCI-DSS) matches credit cardholder data protection; Health Insurance Portability and Accountability Act (HIPAA) matches Protected Health Information (PHI); General Data Protection Regulation (GDPR) matches EU personal data privacy rights; Family Educational Rights and Privacy Act (FERPA) matches student educational record privacy.
Each regulation uniquely targets a specific domain: PCI-DSS covers payment cardholder data; HIPAA covers medical Protected Health Information (PHI); GDPR governs European Union personal privacy rights; and FERPA safeguards student educational records.

Step-by-Step Solution

1
Identify the primary regulation regulating financial and payment transactions.
PCI-DSS governs credit card and cardholder data security.
Payment processing systems must comply with PCI-DSS guidelines.
2
Identify the law protecting patient medical information.
HIPAA covers Protected Health Information (PHI).
Medical records, clinical notes, and healthcare billing are protected under HIPAA.
3
Identify international privacy laws protecting European Union citizens.
GDPR covers personal data and data subject rights in the EU.
GDPR defines strict requirements for collecting and processing EU personal data.
4
Identify the regulation covering academic institutions and student files.
FERPA protects student education records.
Educational institutions receiving federal funding must protect student records under FERPA.

Key Concept

Data Privacy and Compliance Regulations
Estimated Time:1m 0s
Question 247Question

A network technician is auditing network security documentation to verify default port filtering rules on an enterprise gateway. Match each networking protocol to its correct default port number and transport layer protocol.

Click a left item, then click its matching right item

Items

Telnet (Teletype Network)
POP3S (Post Office Protocol 3 Secure)
NTP (Network Time Protocol)
HTTPS (Hypertext Transfer Protocol Secure)

Matches

Show answer & explanation

Answer

Telnet matches with TCP 23, POP3S matches with TCP 995, NTP matches with UDP 123, and HTTPS matches with TCP 443.
Each protocol correctly pairs with its standardized port and transport layer assignment: Telnet requires TCP 23 for unencrypted remote command line sessions, POP3S uses TCP 995 for secure email retrieval, NTP uses UDP 123 for network clock synchronization, and HTTPS relies on TCP 443 for encrypted web browsing.

Step-by-Step Solution

1
Determine the default port and transport protocol for unencrypted terminal connectivity (Telnet).
Telnet operates on TCP port 23.
Legacy remote terminal management relies on connection-oriented TCP traffic on port 23.
2
Determine the default port for secure email retrieval (POP3S).
POP3S operates on TCP port 995.
While unencrypted POP3 uses TCP port 110, encrypted POP3S uses TCP port 995.
3
Determine the transport protocol and port for time synchronization (NTP).
NTP operates on UDP port 123.
Clock synchronization requires fast, low-overhead datagram transmission over UDP port 123.
4
Determine the default port for encrypted web communications (HTTPS).
HTTPS operates on TCP port 443.
Secure web traffic over SSL/TLS uses TCP port 443, unlike unencrypted HTTP on port 80.

Key Concept

Standard TCP/UDP Port Numbers and Protocols
Estimated Time:1m 30s
Question 248Question

A network technician is updating documentation for a company's wireless infrastructure. Match each IEEE 802.11 wireless standard to its defining frequency band, maximum theoretical throughput, and core technical feature.

Click a left item, then click its matching right item

Items

IEEE 802.11a
IEEE 802.11g
IEEE 802.11ac
IEEE 802.11ax

Matches

Show answer & explanation

Answer

IEEE 802.11a matches 5 GHz operation at 54 Mbps using OFDM; IEEE 802.11g matches 2.4 GHz operation at 54 Mbps with 802.11b compatibility; IEEE 802.11ac matches 5 GHz-only operation with downlink MU-MIMO and 160 MHz channel bonding; IEEE 802.11ax matches multi-band operation (2.4/5/6 GHz) utilizing OFDMA.
Each standard is accurately paired based on its operating frequencies, maximum theoretical data rates, and characteristic features such as OFDM, MU-MIMO, or OFDMA.

Step-by-Step Solution

1
Differentiate legacy 54 Mbps standards by frequency band and compatibility
IEEE 802.11a uses 5 GHz exclusively with OFDM, while IEEE 802.11g operates on 2.4 GHz and supports legacy 802.11b devices.
Identifying frequency constraints isolates 802.11a from 802.11g.
2
Compare modern high-performance Wi-Fi standards and key modulation technologies
IEEE 802.11ac is restricted to 5 GHz with downlink MU-MIMO, whereas IEEE 802.11ax operates across 2.4 GHz, 5 GHz, and 6 GHz using OFDMA.
Wi-Fi 5 (802.11ac) is exclusively 5 GHz, whereas Wi-Fi 6 (802.11ax) brings multi-band capabilities and subcarrier channel allocation via OFDMA.

Key Concept

Operating frequencies, maximum speeds, and core technologies of IEEE 802.11 wireless networking standards.
Question 249Question

Match each remote access technology or protocol on the left with its correct network specification and operational characteristic on the right.

Click a left item, then click its matching right item

Items

SSH (Secure Shell)
RDP (Remote Desktop Protocol)
Telnet
MSRA (Microsoft Remote Assistance)

Matches

Show answer & explanation

Answer

SSH matches with encrypted command-line administration on TCP port 22. RDP matches with graphical desktop access over TCP port 3389 requiring Windows Pro/Enterprise to host. Telnet matches with unencrypted cleartext management over TCP port 23. MSRA matches with interactive user-invited support sessions supported on Windows Home.
SSH provides encrypted CLI management on TCP port 22. RDP provides graphical access on TCP port 3389 and requires Windows Pro, Enterprise, or Server editions to accept inbound connections. Telnet uses TCP port 23 and sends data in cleartext. MSRA facilitates interactive remote assistance via user invitations and works on Windows Home edition.

Step-by-Step Solution

1
Identify the protocol transport ports for each tool.
SSH uses TCP 22, RDP uses TCP 3389, Telnet uses TCP 23, and MSRA uses dynamic ports with TCP 3389/PNRP for invitation handshakes.
Port numbers distinguish network communication channels for remote management tools.
2
Evaluate transport security and encryption levels.
SSH provides encrypted shell traffic; Telnet transmits data in unencrypted plain text.
Understanding security implications prevents cleartext credential exposure on untrusted networks.
3
Differentiate Windows edition hosting capabilities for RDP and MSRA.
Windows Home cannot host inbound RDP connections, but it supports MSRA session sharing when invited by an active user.
RDP host functionality is restricted to business and server editions of Windows, whereas MSRA is available across consumer and business editions.

Key Concept

Remote Access Technologies, Network Ports, and OS Edition Capabilities
Question 250Question

A mobile systems technician is documenting wireless connectivity features and security configurations for enterprise smartphones. Match each mobile network feature on the left with its corresponding technical function on the right.

Click a left item, then click its matching right item

Items

Near Field Communication (NFC)
Mobile Hotspot / Tethering
Bluetooth Pairing
Mobile VPN

Matches

Show answer & explanation

Answer

Near Field Communication (NFC) matches the short-range 13.56 MHz contactless payment capability. Mobile Hotspot / Tethering matches sharing cellular connectivity with surrounding client devices. Bluetooth Pairing matches establishing an authenticated PAN connection using a shared passkey. Mobile VPN matches providing an encrypted network tunnel over untrusted wireless links.
Each wireless technology corresponds directly to its standardized communication scope and role: Near Field Communication (NFC) provides 13.56 MHz short-range contactless interactions; Mobile Hotspot converts cellular data connections into local internet access points; Bluetooth Pairing connects local devices securely within a personal area network; and a Mobile VPN secures network transport via encrypted tunnels across public access networks.

Step-by-Step Solution

1
Analyze Near Field Communication (NFC)
Identify that NFC operates at 13.56 MHz within a 4 cm range for contactless services.
NFC is specialized for extremely close proximity interactions like tap-to-pay.
2
Analyze Mobile Hotspot / Tethering
Identify that hotspots redistribute a phone's cellular data access to laptops or tablets via Wi-Fi, Bluetooth, or USB.
Tethering acts as a cellular router function for adjacent client systems.
3
Analyze Bluetooth Pairing
Identify that Bluetooth creates short-range Personal Area Networks (PAN) through paired device authentication.
Pairing establishes trusted links between devices like headsets or smartwatches and the smartphone.
4
Analyze Mobile VPN
Identify that Virtual Private Networks create encrypted tunnels for secure transmission.
Mobile VPNs encapsulate and protect mobile data across public cellular or Wi-Fi channels.

Key Concept

Mobile Device Wireless Technologies and Security Protocols
Estimated Time:1m 30s
Question 251Question

An IT technician is auditing hardware specifications for several client systems and memory upgrades. Match each RAM component or configuration on the left with its corresponding technical characteristic or operational scenario on the right.

Click a left item, then click its matching right item

Items

DDR4 SO-DIMM
ECC UDIMM
Motherboard memory slots A1 and A2 populated
DDR5 DIMM

Matches

Show answer & explanation

Answer

DDR4 SO-DIMM matches the 260-pin compact laptop form factor; ECC UDIMM matches unbuffered single-bit error correction for workstations; populating slots A1 and A2 matches operating both modules on a single memory channel (64-bit total width); DDR5 DIMM matches 288-pin architecture with dual 32-bit subchannels and on-die ECC.
Matching each module and configuration with its standard specifications confirms: DDR4 SO-DIMMs use 260 pins for compact systems; ECC UDIMMs provide unbuffered error correction; installing memory into slots A1 and A2 limits system operation to single-channel mode (64-bit data path); DDR5 desktop modules utilize 288 pins with internal dual 32-bit subchannels.

Step-by-Step Solution

1
Identify form factor pin counts and physical packaging for laptop versus desktop memory.
DDR4 SO-DIMM is identified as the 260-pin small outline module for mobile/compact systems.
SO-DIMMs are physically smaller than full-size DIMMs to fit tight laptop spaces.
2
Evaluate memory module error checking capabilities.
ECC UDIMM provides unbuffered error checking that detects and corrects single-bit errors.
UDIMMs lack registered buffering but can still incorporate Error-Correcting Code functionality.
3
Analyze dual-channel motherboard slot population rules.
Populating slots A1 and A2 puts both modules on Channel A, keeping the system in single-channel (64-bit) operation.
Dual-channel operation requires placing modules across distinct channels (e.g., A1 and B1).
4
Examine DDR5 internal architecture improvements over DDR4.
DDR5 DIMM is matched with 288-pin modules featuring dual 32-bit subchannels and on-die ECC.
DDR5 introduces dual independent 32-bit memory channels per DIMM module to increase data efficiency.

Key Concept

RAM Types, Form Factors, and Channel Configurations
Question 252Question

Match each data privacy regulation or compliance framework on the left with its primary regulated data scope or operational requirement on the right.

Click a left item, then click its matching right item

Items

GDPR (General Data Protection Regulation)
HIPAA (Health Insurance Portability and Accountability Act)
PCI-DSS (Payment Card Industry Data Security Standard)
FERPA (Family Educational Rights and Privacy Act)

Matches

Show answer & explanation

Answer

GDPR matches with EU data subject rights and consent rules; HIPAA matches with Protected Health Information (PHI) safeguards; PCI-DSS matches with credit/debit Cardholder Data (CHD) security standards; FERPA matches with student education record privacy.
Each regulatory framework addresses a distinct data domain: GDPR regulates personal data privacy for EU individuals; HIPAA protects healthcare-related PHI; PCI-DSS establishes security controls for payment cardholder data (CHD); and FERPA restricts disclosure of student education records.

Step-by-Step Solution

1
Analyze GDPR requirements
GDPR applies specifically to personal data rights and protections for EU data subjects, including the right to data erasure.
GDPR is an international privacy standard enacted by the EU.
2
Analyze HIPAA requirements
HIPAA applies to medical records and healthcare-related Protected Health Information (PHI).
HIPAA establishes privacy and security rules for medical data.
3
Analyze PCI-DSS requirements
PCI-DSS regulates cardholder data (CHD) for credit card transaction processing.
PCI-DSS is mandated by payment card brands to secure card transactions.
4
Analyze FERPA requirements
FERPA governs access to and privacy of student education transcripts and institutional records.
FERPA is a United States federal law focused on educational records.

Key Concept

Data Privacy and Compliance Framework Scopes
Estimated Time:2m 0s
Question 253Question

A system administrator is organizing various administrative scripts used across an enterprise network. Match each script file extension to its corresponding default execution environment or interpreter.

Click a left item, then click its matching right item

Items

.ps1
.bat
.vbs
.sh

Matches

Show answer & explanation

Answer

The .ps1 extension matches the Windows PowerShell environment; .bat matches Windows Command Prompt; .vbs matches Windows Script Host; and .sh matches the Linux/Unix Shell terminal.
Each file extension maps directly to its native administrative execution environment: .ps1 relies on PowerShell, .bat uses cmd.exe, .vbs uses Windows Script Host, and .sh uses Unix-based shell environments like Bash or Zsh.

Step-by-Step Solution

1
Identify the scripting language associated with each file extension.
.ps1 corresponds to PowerShell, .bat to Windows Batch, .vbs to VBScript, and .sh to Shell script.
File extensions indicate the language and expected interpreter for execution.
2
Match each script extension to its native execution interpreter.
PowerShell scripts run in PowerShell, Batch files run in cmd.exe, VBScript runs in WSH (cscript/wscript), and Shell scripts run in Linux/macOS command shells.
Operating systems route script execution to specific binary interpreters based on file extensions.

Key Concept

Scripting File Extensions and Execution Environments
Estimated Time:1m 0s
Question 254Question

A network technician is troubleshooting connectivity problems across several client workstations on a corporate network. Match each observed IP network configuration diagnostic output or symptom on the left with its corresponding underlying root cause on the right.

Click a left item, then click its matching right item

Items

The host automatically receives an IP address of 169.254.42.81169.254.42.81 with a subnet mask of 255.255.0.0255.255.0.0 and can only communicate with local neighbors.
The host can successfully ping neighboring computers on 192.168.1.0/24192.168.1.0/24, but cannot access external resources on the internet.
The workstation can ping remote servers using public IPv4 addresses like 8.8.8.88.8.8.8, but cannot load web pages using domain names.
The network interface displays an IPv6 address beginning with `fe80::` and fails to communicate beyond the local broadcast domain.

Matches

Show answer & explanation

Answer

1. APIPA IP address (169.254.x.x169.254.x.x) matches DHCP server unreachable.
2. Local connectivity only matches default gateway misconfiguration.
3. Ping IP succeeds but domain name fails matches DNS server misconfiguration.
4. IPv6 `fe80::` address matches non-routable link-local address behavior.
Each diagnostic output maps to a distinct core IP addressing role: APIPA addresses (169.254.0.0/16169.254.0.0/16) indicate DHCP failure; local-only communication points to a missing or invalid default gateway; successful IP pings with failed domain resolution indicate DNS issues; and `fe80::` prefixes represent non-routable IPv6 link-local addresses.

Step-by-Step Solution

1
Analyze the APIPA symptom (169.254.42.81/16169.254.42.81/16).
Identify that APIPA is self-assigned when DHCP discovery fails.
Clients fall back to APIPA (169.254.0.0/16169.254.0.0/16) only when no DHCP server responds to requests.
2
Evaluate the local-only routing symptom.
Determine that traffic targeting external subnets requires a default gateway.
Subnet hosts communicate directly via layer 2 MAC addresses on the local link, but rely on the default gateway for any off-subnet destinations.
3
Evaluate numeric IP ping vs hostname failure.
Determine that domain name translation requires functioning DNS.
Ping by raw IP tests ICMP connectivity; failing to resolve domain names indicates domain name resolution failure.
4
Analyze the IPv6 prefix `fe80::`.
Confirm that `fe80::/10` is reserved for link-local scope.
Link-local addresses are self-configured on every IPv6 interface but routers drop link-local traffic crossing subnet boundaries.

Key Concept

IP Addressing Diagnostic Symptoms and Parameter Matching
Question 255Question

A system administrator is reviewing network infrastructure designs for a commercial facility upgrade. Match each cabling standard or connector specification on the left to its corresponding physical deployment requirement or operational environment on the right.

Click a left item, then click its matching right item

Items

Plenum-rated Category 6a (CMP)
Single-mode Fiber (SMF) with LC connector
Shielded Twisted Pair (STP) Category 6
RG-6 Coaxial Cable with F-type connector

Matches

Show answer & explanation

Answer

Plenum-rated Category 6a (CMP) matches with routing 10 Gbps Ethernet through drop-ceiling HVAC return air spaces; Single-mode Fiber with LC connector matches with linking inter-switch backbones across distances exceeding 1 kilometer; Shielded Twisted Pair Category 6 matches with running connections adjacent to high-voltage industrial motors; RG-6 Coaxial with F-type connector matches with connecting incoming cable broadband ISP feeds.
Each cabling standard meets specific operational criteria: CMP jacketing is mandated in air-handling drop ceilings, Single-mode fiber enables multi-kilometer laser backbones, STP foil shielding blocks industrial motor EMI, and RG-6 coaxial with F-type connectors delivers ISP cable broadband.

Step-by-Step Solution

1
Analyze safety and environmental constraints for ceiling runs
Cables installed in drop ceilings carrying air (plenum spaces) mandate CMP (Plenum-rated) fire retardant jackets, while 10 Gbps performance requires Cat 6a.
Standard PVC cabling emits toxic fumes when burning, violating safety codes for environmental air spaces.
2
Evaluate long-range inter-building backbone requirements
Distances over 550 meters require Single-mode Fiber (SMF) with small form-factor LC connectors.
Multimode fiber and copper cabling suffer high attenuation over multi-kilometer spans, whereas SMF lasers maintain signal integrity over long distances.
3
Determine noise mitigation requirements for factory environments
High-voltage machinery emits severe EMI, requiring Shielded Twisted Pair (STP) cabling.
Unshielded copper (UTP) allows electromagnetic noise to induce crosstalk and corruption into signal conductors.
4
Identify cable modem feed standards
ISP cable internet handoffs use RG-6 coaxial cable with threaded F-type connectors.
RG-6 provides heavy shielding and low signal loss for radio frequency signals used in cable broadband.

Key Concept

Matching copper, optical fiber, and coaxial cabling types to environmental, distance, EMI shielding, and safety rating specifications.
Estimated Time:1m 30s
Question 256Question

An IT technician is servicing high-performance desktop computers and reviewing thermal design features along with CPU socket mechanisms. Match each cooling technology or socket feature on the left with its corresponding technical operational characteristic on the right.

Click a left item, then click its matching right item

Items

Thermoelectric Cooler (Peltier Device)
Vapor Chamber Base
Zero Insertion Force (ZIF) Socket
Direct-Contact Heat Pipes

Matches

Show answer & explanation

Answer

Thermoelectric Cooler matches with the solid-state active heat pump mechanism using electrical current; Vapor Chamber Base matches with the planar vacuum-sealed liquid vaporization chamber; Zero Insertion Force (ZIF) Socket matches with the mechanical lever mechanism on PGA sockets; Direct-Contact Heat Pipes match with flattened copper heat pipes resting directly against the IHS.
Each component correctly aligns with its architectural or thermal design feature: Thermoelectric (Peltier) coolers utilize active electrical heat pumping; vapor chambers use a flat phase-change chamber for rapid thermal spreading; ZIF sockets use a lever mechanism to secure PGA pins without insertion force; and direct-contact heat pipes feature exposed copper tubing flush with the CPU heat spreader.

Step-by-Step Solution

1
Identify the operation of active solid-state thermal pumps.
Thermoelectric coolers (Peltier coolers) rely on current passing through semiconductor junctions to move heat actively between two plates.
Understanding solid-state active thermal transfer distinguishes thermoelectric cooling from passive or fluid-recirculation systems.
2
Analyze planar phase-change heat distribution mechanisms.
Vapor chambers operate similarly to heat pipes but spread heat across a flat, two-dimensional sealed vacuum plane rather than along a narrow pipe.
Vapor chambers are ideal for high heat density areas due to their broad surface contact.
3
Evaluate PGA motherboard socket retention systems.
Zero Insertion Force (ZIF) mechanisms lock PGA processor pins in place with a side lever to prevent pin bending during installation.
ZIF sockets allow technicians to drop a PGA CPU into place with zero resistance before locking.
4
Differentiate direct-contact heat pipe cooler designs from traditional metal baseplates.
Direct-contact heat pipes eliminate the intermediate solid metal baseplate, placing exposed copper heat pipes directly against the processor heat spreader.
Direct contact reduces the thermal interface layers between the CPU heat spreader and the cooling fins.

Key Concept

Advanced CPU Cooling Solutions and Socket Pin Retention Mechanisms
Question 257Question

A technician is inventorying server and workstation components during a hardware refresh. Match each storage interface or connector type on the left with its correct technical characteristic on the right.

Click a left item, then click its matching right item

Items

M.2 M-Key Connector
SATA III Interface
U.2 (SFF-8639) Interface
M.2 B-Key Connector

Matches

Show answer & explanation

Answer

M.2 M-Key Connector matches physical keying at pins 59–66 supporting up to four PCIe lanes for NVMe SSDs; SATA III Interface matches operation via AHCI protocol with a 6 Gbps maximum limit; U.2 (SFF-8639) Interface matches 2.5-inch form factor connector routed to four PCIe lanes for enterprise NVMe drives; M.2 B-Key Connector matches physical keying at pins 12–19 restricting PCIe support to two lanes.
Each storage interface correctly pairs with its physical layout, bus limit, or protocol standard. M.2 M-key supports four PCIe lanes for NVMe; SATA III limits throughput to 6 Gbps using AHCI; U.2 provides a 2.5-inch form factor connector with four PCIe lanes for enterprise NVMe; M.2 B-key restricts PCIe connections to two lanes.

Step-by-Step Solution

1
Identify the physical keying location and lane capabilities of M.2 M-key connectors.
M-key connectors use pins 59–66 for physical keying and support up to 4 PCIe lanes (PCIe x4) for NVMe drives.
M-key design maximizes PCIe bandwidth for high-performance M.2 NVMe storage.
2
Analyze standard SATA III interface constraints and communication protocols.
SATA III is limited to 6 Gbps bus throughput and uses the legacy AHCI protocol.
Physical SATA revisions cap maximum serial transfer throughput regardless of attached flash memory capabilities.
3
Examine enterprise hot-swappable NVMe drive connections.
U.2 connects 2.5-inch enterprise drives over 4 PCIe lanes via the SFF-8639 connector.
Enterprise storage systems require 2.5-inch drive bay compatibility with full NVMe PCIe performance.
4
Distinguish M.2 B-key physical keying and lane limits from M-key specifications.
B-key connectors place the notch at pins 12–19 and limit PCIe transfer to a maximum of 2 lanes (PCIe x2).
B-key pin allocations restrict lane routing compared to four-lane M-key slots.

Key Concept

Storage Devices and Interfaces
Question 258Question

A network technician is documenting standard firewall port rules for secure management and messaging applications. Match each network protocol on the left with its default port and primary operational role on the right.

Click a left item, then click its matching right item

Items

LDAPS
IMAPS
SNMP
SFTP

Matches

Show answer & explanation

Answer

LDAPS pairs with TCP Port 636; IMAPS pairs with TCP Port 993; SNMP pairs with UDP Port 161; SFTP pairs with TCP Port 22.
Each protocol correctly aligns with its standard port assignment and primary use case: LDAPS uses TCP 636 for secure directory services, IMAPS uses TCP 993 for secure email retrieval, SNMP uses UDP 161 for device monitoring, and SFTP uses TCP 22 for SSH-based file transfer.

Step-by-Step Solution

1
Identify the port and protocol for directory service access
LDAPS utilizes TCP port 636 to provide secure access to Active Directory and LDAP services.
Standard LDAP operates unencrypted on TCP port 389, whereas LDAPS secures communication over TCP port 636.
2
Identify the port and protocol for secure mail retrieval
IMAPS operates on TCP port 993.
Unencrypted IMAP uses TCP port 143, while IMAPS adds SSL/TLS encryption over TCP port 993.
3
Identify transport protocol and port for network device monitoring
SNMP uses UDP port 161 to poll network devices for status and telemetry.
SNMP communication relies on connectionless UDP transport on port 161 (with SNMP traps sent to UDP port 162).
4
Identify secure file transfer protocol operating over SSH
SFTP uses TCP port 22.
Unlike FTPS (TCP 989/990) or plain FTP (TCP 20/21), SFTP leverages Secure Shell on TCP port 22.

Key Concept

Standard TCP/UDP Port Numbers and Protocol Roles
Estimated Time:1m 30s
Question 259Question

Which operational specification or edition constraint correctly corresponds to each remote access technology listed on the left?

Click a left item, then click its matching right item

Items

RDP (Remote Desktop Protocol)
SSH (Secure Shell)
MSRA (Microsoft Remote Assistance)
Telnet

Matches

Show answer & explanation

Answer

Remote Desktop Protocol (RDP) pairs with TCP port 3389 and Windows Pro/Enterprise hosting requirements. Secure Shell (SSH) pairs with TCP port 22 for encrypted CLI access. Microsoft Remote Assistance (MSRA) pairs with invitation-based session screen sharing. Telnet pairs with unencrypted plain text traffic over TCP port 23.
Each remote access tool matches its standard CompTIA A+ specification: Remote Desktop Protocol uses TCP port 3389 and requires Windows Pro or higher to host sessions; Secure Shell uses TCP port 22 for encrypted CLI management; Microsoft Remote Assistance uses invitation-based screen sharing for collaborative user support; Telnet uses TCP port 23 and transmits data in unencrypted cleartext.

Step-by-Step Solution

1
Determine the network port and Windows edition requirement for Remote Desktop Protocol.
RDP listens on TCP port 3389 and can only host incoming connections on Windows Pro, Enterprise, or Education editions.
Windows Home edition lacks the inbound RDP host feature, though it can initiate connections to external RDP servers.
2
Identify the secure encrypted command-line remote access protocol.
SSH operates over TCP port 22 and encrypts all session data and credentials.
SSH is the standard replacement for legacy unencrypted terminal protocols when managing network equipment and remote servers.
3
Identify the tool designed for collaborative session assistance.
MSRA relies on session invitations to allow simultaneous viewing and shared control of a logged-in user's desktop.
MSRA allows the end user and technician to interact on the same desktop session, unlike RDP which locks the local desktop when a new session starts.
4
Identify the legacy unencrypted terminal protocol.
Telnet uses TCP port 23 and transmits data in unencrypted plain text.
Because Telnet does not encrypt passwords or commands, packet sniffers can intercept sensitive management traffic.

Key Concept

Remote Access Technologies and Specifications
Question 260Question

An IT technician is reviewing system administrative scripts used for environment management across Windows and Linux platforms. Match each script code snippet to the specific language construct or behavior it exhibits.

Click a left item, then click its matching right item

Items

for /f "tokens=1-2" %%a in (C:\logs\audit.txt) do ( echo %%a %%b )
Get-ChildItem -Path C:\Logs | Where-Object { $_.LastWriteTime -lt (Get-Date).AddDays(-30) }
Set objFSO = CreateObject("Scripting.FileSystemObject")
if [ -d "/var/log/backup" ]; then echo "Directory exists"; fi

Matches

Show answer & explanation

Answer

1. 'for /f "tokens=1-2" %%a in (...)' matches 'Windows Batch iteration construct parsing structured file tokens natively in cmd.exe'.
2. 'Get-ChildItem -Path ... | Where-Object { $_.LastWriteTime ... }' matches 'PowerShell pipeline construct passing object properties to perform conditionally filtered operations'.
3. 'Set objFSO = CreateObject("Scripting.FileSystemObject")' matches 'VBScript COM object instantiation construct using Windows Script Host (WSH)'.
4. 'if [ -d "/var/log/backup" ]; then echo "Directory exists"; fi' matches 'Bash shell conditional evaluation construct testing directory existence in POSIX environments'.
Each snippet represents a distinct script language's syntax: Batch uses 'for /f' for file parsing, PowerShell uses cmdlets with pipeline object parameters ('$_.'), VBScript uses 'CreateObject' to instantiate COM interfaces under WSH, and Bash uses square bracket conditional tests ('[ -d ... ]') closed with 'fi'.

Step-by-Step Solution

1
Analyze the syntax and constructs present in each script snippet.
Identified Batch token parsing ('for /f'), PowerShell pipeline object filtering ('Get-ChildItem | Where-Object'), VBScript COM creation ('CreateObject'), and Bash file test conditionals ('if [ -d ... ]').
Different administrative scripting environments rely on distinct construct syntax and runtime engines.
2
Map each snippet to its corresponding environment and execution behavior.
Paired each code construct with its matching functional definition.
Accurate identification of language-specific constructs ensures proper script maintenance and cross-platform automation.

Key Concept

Identification of scripting language constructs, execution environments, and basic control flows across Windows Batch, PowerShell, VBScript, and Bash.
PreviousPage 13 / 27Next
All practice questions — CompTIA A+ (Core 1 & Core 2) | Examkin