CompTIA ITF+ FC0-U61 (FC0-U61) — Questions 226300

512 questions total · 7pages · All types, answers revealed

Page 3

Page 4 of 7

Page 5
226
MCQeasy

A small business wants to set up a wireless network. Which of the following is the BEST security method to use?

A.WEP
B.WPA2
C.MAC address filtering
D.Disable SSID broadcast
AnswerB

WPA2 provides strong encryption.

Why this answer

WPA2 (Wi-Fi Protected Access 2) is the best security method among the options because it uses AES (Advanced Encryption Standard) with CCMP (Counter Mode CBC-MAC Protocol), providing strong encryption and integrity protection. WEP is outdated and easily cracked, while MAC filtering and disabling SSID broadcast are not encryption methods and offer minimal security against determined attackers.

Exam trap

The trap here is that candidates often confuse security features like MAC filtering or hiding the SSID with actual encryption, thinking they provide strong protection, when in fact they are easily bypassed and do not secure the data in transit.

How to eliminate wrong answers

Option A is wrong because WEP (Wired Equivalent Privacy) uses the flawed RC4 cipher with a static 40- or 104-bit key, making it vulnerable to cracking in minutes with tools like aircrack-ng. Option C is wrong because MAC address filtering only checks the hardware address of the network interface, which can be easily spoofed by an attacker using tools like macchanger, and it does not encrypt traffic. Option D is wrong because disabling SSID broadcast only hides the network name from beacon frames, but the SSID is still transmitted in probe requests and responses, and can be discovered with passive sniffing tools like Kismet.

227
Drag & Dropmedium

Drag and drop the steps to connect a laptop to a Wi-Fi network in Windows 10 into the correct order.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order

Why this order

Connecting to Wi-Fi involves selecting the network, entering the password, and optionally saving it.

228
MCQmedium

A company needs to ensure that all employees can collaborate on documents in real time. Which type of software should the company choose?

A.Word processor with local file saving.
B.Cloud-based document editing suite.
C.Version control system like Git.
D.Email attachment sharing.
AnswerB

Cloud suites are designed for real-time collaboration, allowing multiple users to edit simultaneously.

Why this answer

Cloud-based document editing suites (e.g., Google Workspace, Microsoft 365) enable simultaneous real-time collaboration, unlike local-only applications, email attachments, or version control systems.

229
MCQmedium

A team of developers is collaborating on a mobile app using Git. One developer, Alice, is working on a new feature in a branch called "new-feature". Bob, another developer, has pushed several bug fixes to the main branch. Alice now wants to incorporate Bob's bug fixes into her feature branch. Which sequence of Git commands should Alice use to achieve this with minimal disruption?

A.git fetch, git rebase new-feature onto origin/main, then force push.
B.git checkout new-feature, git merge main, then resolve conflicts if any.
C.git checkout -b new-feature, git push.
D.git checkout main, git pull, git merge new-feature, then push.
AnswerB

This merges the latest main (with bug fixes) into the feature branch, keeping the work isolated.

Why this answer

Merging the main branch into the feature branch (git checkout new-feature, git merge main) brings the fixes into Alice's branch. The opposite (merging feature into main) would add unfinished work to main. Rebasing with force push is dangerous.

Creating a new branch doesn't bring in fixes.

230
MCQmedium

A developer writes a query: SELECT * FROM Employees WHERE Department = 'Sales'. Which statement about this query is true?

A.It sorts results by Department
B.It returns all columns for employees in Sales
C.It returns only the Department column
D.It returns all rows from the Employees table
AnswerB

SELECT * returns all columns, and the WHERE clause filters for Sales department.

Why this answer

The SELECT * clause retrieves all columns from the specified table, and the WHERE Department = 'Sales' filter restricts the result set to only those rows where the Department column has the value 'Sales'. Therefore, the query returns every column for employees in the Sales department, making option B correct.

Exam trap

The trap here is that candidates confuse the SELECT clause with the WHERE clause, mistakenly thinking SELECT * returns all rows (option D) or only a specific column (option C), when in fact SELECT * returns all columns and WHERE filters rows.

How to eliminate wrong answers

Option A is wrong because the query contains no ORDER BY clause, so results are not sorted by Department or any other column; sorting requires an explicit ORDER BY. Option C is wrong because SELECT * returns all columns, not just the Department column; to return only the Department column, the query would need to specify SELECT Department. Option D is wrong because the WHERE clause filters rows to only those where Department = 'Sales', so it does not return all rows from the Employees table.

231
MCQhard

Based on the exhibit, which type of attack is most likely occurring?

A.Denial-of-service attack
B.Phishing attack
C.Brute force attack
D.Man-in-the-middle attack
AnswerC

Repeated failed logon attempts from a remote IP suggest a brute force attack.

Why this answer

The exhibit shows repeated login attempts with different passwords (e.g., 'password1', 'password2', 'password3') against a single user account. This pattern of systematically trying many passwords to guess credentials is the hallmark of a brute force attack. Unlike a denial-of-service or phishing attack, the goal here is to gain unauthorized access by exhausting possible password combinations.

Exam trap

CompTIA often tests the distinction between a brute force attack and a dictionary attack; the trap here is that candidates may confuse the systematic password guessing shown in the exhibit with a phishing or man-in-the-middle attack because they see repeated login attempts but fail to recognize the direct, automated guessing pattern.

How to eliminate wrong answers

Option A is wrong because a denial-of-service attack aims to overwhelm a system with traffic to disrupt service, not to guess passwords through repeated login attempts. Option B is wrong because phishing involves tricking users into revealing credentials via deceptive messages or websites, not by directly submitting password guesses to a login form. Option D is wrong because a man-in-the-middle attack intercepts and potentially alters communications between two parties, whereas the exhibit shows direct, repeated authentication attempts against a single endpoint.

232
MCQmedium

A company is developing a mobile app and wants to ensure it works on both iOS and Android without writing separate codebases. Which approach should be used?

A.Cross-platform development
B.Native development
C.Web-based development
D.Cloud-based development
AnswerA

Cross-platform frameworks like React Native allow one codebase for multiple platforms.

Why this answer

Option A is correct because cross-platform development allows a single codebase to run on multiple platforms. Option B (native) requires separate code; Option C (web-based) may not provide native features; Option D (cloud-based) offloads processing but isn't about platform independence.

233
MCQmedium

During the software development life cycle, which phase directly follows the coding phase?

A.Maintenance
B.Testing
C.Deployment
D.Requirements gathering
AnswerB

Testing is the phase after coding to verify functionality.

Why this answer

The correct answer is B: Testing. After coding, the software is tested to identify defects. Requirements (A) come before coding.

Deployment (C) and maintenance (D) occur after testing.

234
Multi-Selectmedium

Which TWO of the following are examples of volatile memory?

Select 2 answers
A.RAM
B.Cache
C.Hard Drive
D.SSD
E.ROM
AnswersA, B

RAM is volatile memory.

Why this answer

RAM (Random Access Memory) is volatile because it requires constant electrical power to retain data; once the system is powered off, all stored information is lost. This characteristic makes RAM ideal for temporary storage of actively used data and program instructions during operation.

Exam trap

Cisco often tests the distinction between volatile and non-volatile memory by including storage devices like SSDs and hard drives as distractors, exploiting the common misconception that 'memory' and 'storage' are interchangeable terms.

235
MCQhard

An e-commerce application experiences a data anomaly where an order is partially recorded: the order header is saved but some order line items are missing due to a system crash. Which property of database transactions is violated?

A.Consistency
B.Isolation
C.Atomicity
D.Durability
AnswerC

Atomicity requires all operations in a transaction to complete or none; a partial commit breaks this.

Why this answer

Atomicity ensures that a transaction is treated as a single, indivisible unit of work: either all operations (e.g., saving the order header and all line items) complete successfully, or none are applied. In this scenario, the system crash caused a partial write, leaving the order header committed while line items were lost, which directly violates atomicity. The database should have rolled back the entire transaction upon crash recovery, preventing the partial state.

Exam trap

The trap here is that candidates confuse 'consistency' (which relates to data integrity rules) with the all-or-nothing requirement of atomicity, especially when the partial data appears to violate business logic rather than the transaction boundary.

How to eliminate wrong answers

Option A is wrong because consistency ensures that a transaction transforms the database from one valid state to another, respecting all defined rules (e.g., constraints, triggers); a partially recorded order could still be consistent if the missing line items are allowed by schema, but the core issue is the incomplete unit of work. Option B is wrong because isolation deals with concurrent transaction visibility (e.g., preventing dirty reads or lost updates via locking or MVCC), not with the all-or-nothing completion of a single transaction. Option D is wrong because durability guarantees that once a transaction is committed, its changes survive system failures (e.g., via write-ahead logging); here the header was saved but the line items were not, so the transaction was never fully committed, and durability is not violated.

236
MCQhard

A company has a server that hosts a critical database. The server uses RAID 5 with three disks. One disk fails. What is the immediate impact on data availability?

A.Data is available only after replacing the disk
B.The server will shut down
C.All data on the array is lost
D.Data is still available, but performance may degrade
AnswerD

RAID 5 uses parity; with one disk missing, reads are slower.

Why this answer

RAID 5 uses block-level striping with distributed parity. With three disks, the array can tolerate a single disk failure without data loss because the parity information on the remaining two disks can reconstruct the missing data on the fly. Therefore, data remains fully available immediately after one disk fails, though read and write performance may degrade due to the overhead of parity calculation and reconstruction.

Exam trap

The trap here is that candidates often confuse RAID 5 with RAID 0, assuming any disk failure causes total data loss, or they mistakenly think the array becomes completely unavailable until the disk is replaced.

How to eliminate wrong answers

Option A is wrong because RAID 5 does not require a replacement disk to maintain data availability; the array continues to operate in a degraded state using parity. Option B is wrong because RAID 5 is designed to survive a single disk failure without shutting down; the server remains operational. Option C is wrong because RAID 5 with three disks provides fault tolerance for one disk failure; data is not lost unless a second disk fails before the first is replaced.

237
Multi-Selectmedium

Which TWO of the following are types of cloud computing service models?

Select 2 answers
A.Platform as a Service (PaaS)
B.Virtual Private Network (VPN)
C.Local Area Network (LAN)
D.Infrastructure as a Service (IaaS)
E.On-Premises
AnswersA, D

PaaS provides a platform for developing and deploying applications.

Why this answer

Platform as a Service (PaaS) is a cloud computing service model that provides a platform allowing customers to develop, run, and manage applications without the complexity of building and maintaining the underlying infrastructure. It includes operating systems, middleware, development tools, and database management, enabling developers to focus solely on coding and deploying applications.

Exam trap

Cisco often tests the distinction between cloud service models (IaaS, PaaS, SaaS) and network technologies (VPN, LAN) or deployment models (On-Premises), so candidates mistakenly select VPN or On-Premises because they are familiar terms but not cloud service models.

238
MCQhard

A data center administrator is considering virtualization to consolidate multiple physical servers. Which of the following is the PRIMARY benefit of using virtual machines in this environment?

A.Reduction in the total amount of physical hardware needed
B.Increased performance for each application
C.Improved security by isolating applications
D.Better utilization of physical hardware resources
AnswerD

Consolidation allows multiple workloads on one server, improving resource usage.

Why this answer

The primary benefit of virtualization in a data center is better utilization of physical hardware resources. By running multiple virtual machines on a single physical host, the hypervisor allows the underlying CPU, memory, and storage to be shared efficiently, reducing idle capacity and maximizing the return on hardware investment.

Exam trap

The trap here is that candidates often mistake a desirable outcome (reduced hardware count) for the primary technical benefit, when the exam expects the underlying principle of resource utilization efficiency.

How to eliminate wrong answers

Option A is wrong because while virtualization often leads to a reduction in the total amount of physical hardware needed, that is a secondary outcome of better resource utilization, not the primary technical benefit. Option B is wrong because virtual machines typically introduce a slight performance overhead due to hypervisor abstraction, so they do not increase performance for each application; in fact, performance may be slightly lower than bare-metal. Option C is wrong because while hypervisors provide isolation between VMs, improved security is a secondary advantage, not the primary driver for consolidation; the main goal is resource efficiency.

239
MCQeasy

A technician runs the commands shown in the exhibit. Based on the output, which of the following can the technician conclude?

A.The computer has internet access
B.The DNS server is reachable
C.The computer can communicate on the local network
D.The default gateway is not configured
AnswerC

Successful ping to gateway indicates local connectivity.

Why this answer

The output shows the computer has an IP address of 192.168.1.10 and a subnet mask of 255.255.255.0, which means it is on the 192.168.1.0/24 local network. The fact that the computer has a valid IP address and subnet mask configured indicates it can communicate with other devices on the same local network segment, as no gateway or external connectivity is required for local link-layer communication.

Exam trap

The trap here is that candidates see the default gateway is present and assume internet access is confirmed, but the gateway's reachability or the presence of a route to the internet is not tested by the given output.

How to eliminate wrong answers

Option A is wrong because the output does not show any successful ping or traceroute to an external IP address or domain, so internet access cannot be confirmed. Option B is wrong because the output does not display any DNS server address or a successful nslookup/dig query, so DNS reachability is not verified. Option D is wrong because the output shows a default gateway of 192.168.1.1, which is configured; the question asks what can be concluded, and the gateway is present, not missing.

240
Multi-Selecthard

Which THREE of the following are common file formats for images?

Select 3 answers
A..mp3
B..docx
C..gif
D..png
E..jpg
AnswersC, D, E

GIF is an image format supporting animation.

Why this answer

The .gif (Graphics Interchange Format) is a common image file format that supports both static and animated images using lossless compression. It is widely used for simple graphics, logos, and animations on the web due to its support for up to 256 colors and transparency.

Exam trap

The trap here is that candidates may confuse file extensions based on common usage (e.g., .mp3 for music or .docx for documents) rather than recognizing them as non-image formats, leading them to select these incorrect options.

241
MCQeasy

A user is unable to insert a new record into a database table because a required field is missing. Which database concept enforces that a field must have a value?

A.NOT NULL constraint
B.Primary key
C.Index
D.Foreign key
AnswerA

A NOT NULL constraint prevents NULL values in a column, making it required.

Why this answer

A NOT NULL constraint is a database rule that prevents a field from containing a NULL value, ensuring that a value must be provided for that column when inserting or updating a record. In this scenario, the user cannot insert a new record because the required field is missing, which directly violates the NOT NULL constraint. This constraint is enforced at the database engine level, typically during the INSERT or UPDATE operation, and will raise an error if the field is omitted or set to NULL.

Exam trap

The trap here is that candidates often confuse the NOT NULL constraint with the primary key, thinking that a primary key's uniqueness property is what enforces a required value, but the primary key's NOT NULL behavior is a side effect, not its defining purpose.

How to eliminate wrong answers

Option B (Primary key) is wrong because a primary key uniquely identifies each row in a table and implicitly enforces NOT NULL and uniqueness, but the question specifically asks about a constraint that enforces a field must have a value—a primary key's primary role is uniqueness, not just requiring a value. Option C (Index) is wrong because an index is a data structure that improves query performance by allowing faster data retrieval; it does not enforce any requirement for a field to have a value. Option D (Foreign key) is wrong because a foreign key enforces referential integrity between two tables, ensuring that a value in one table matches a value in another table's primary key; it does not require that a field itself must have a value.

242
Multi-Selectmedium

Which THREE of the following are common file extensions for image files?

Select 3 answers
A..mp3
B..png
C..jpg
D..xlsx
E..gif
AnswersB, C, E

PNG is a common image format.

Why this answer

The .png (Portable Network Graphics) extension is a common image file format that uses lossless compression, supporting transparency and a wide color palette. It is widely used for web graphics and images requiring high quality without compression artifacts.

Exam trap

The trap here is that candidates may confuse common file extensions by their general usage (e.g., thinking .mp3 is an image because it's a common file type) rather than recognizing the specific category (audio vs. image vs. document).

243
Multi-Selecteasy

Which TWO data types are considered unstructured? (Select exactly two.)

Select 2 answers
A.Email messages
B.Video files
C.Spreadsheet cells
D.Database records
E.Relational data
AnswersA, B

Email content is unstructured, though headers may have some structure.

Why this answer

Email messages are considered unstructured data because they contain free-form text, attachments, and metadata that do not conform to a predefined data model or schema. Unlike structured data stored in rows and columns, email content lacks a fixed format, making it difficult to query directly using traditional database tools.

Exam trap

The trap here is that candidates often confuse 'unstructured' with 'unorganized' and incorrectly assume that email messages are structured because they have fields like To, From, and Subject, but the core content (body and attachments) is free-form and lacks a fixed schema.

244
MCQeasy

A user is unable to open a .docx file. The user has the correct application installed. Which of the following is the MOST likely cause?

A.The hard drive is full.
B.The operating system is outdated.
C.The network is down.
D.The file is corrupted.
AnswerD

File corruption is a common cause of inability to open a document, even with the correct application.

Why this answer

The .docx file is a compressed XML-based format used by Microsoft Word. Even with the correct application installed, if the file's internal structure is damaged (e.g., due to incomplete download, bad sectors, or software crash), the application cannot parse it and will fail to open. File corruption is the most direct cause of an application being unable to open a specific file when the application itself is functional.

Exam trap

The trap here is that candidates may confuse file corruption with environmental issues like disk space or network connectivity, but the question specifies the user has the correct application, so the problem must be with the file itself, not the system or network.

How to eliminate wrong answers

Option A is wrong because a full hard drive would prevent saving new files or cause system instability, but it does not prevent opening an existing .docx file that is already stored. Option B is wrong because an outdated operating system might lack compatibility with newer software versions, but the user has the correct application installed and the .docx format is supported by Word 2007 and later on any supported OS. Option C is wrong because the network being down affects access to remote files or online services, but opening a locally stored .docx file does not require network connectivity.

245
MCQmedium

A company wants to ensure that if one hard drive fails, no data is lost. Which RAID level should be implemented?

A.RAID 5
B.RAID 1
C.JBOD
D.RAID 0
AnswerB

RAID 1 mirrors data, so one drive can fail without loss.

Why this answer

RAID 1 (mirroring) writes identical data to two or more drives simultaneously, so if one drive fails, the other contains a complete copy of all data, resulting in zero data loss. This directly meets the requirement that no data is lost upon a single hard drive failure.

Exam trap

The trap here is that candidates often confuse RAID 5 as the 'standard' fault-tolerant RAID and forget that RAID 1 is the simplest and most direct solution for zero data loss with a single drive failure, especially when the question does not specify a minimum number of drives or performance requirements.

How to eliminate wrong answers

Option A is wrong because RAID 5 uses distributed parity across all drives and can tolerate a single drive failure without data loss, but it requires a minimum of three drives and involves parity calculations that can impact write performance; however, the question asks for the simplest and most direct answer for zero data loss with a single drive failure, and RAID 1 is the classic choice. Option C is wrong because JBOD (Just a Bunch Of Disks) provides no redundancy or fault tolerance; if one drive fails, all data on that drive is lost. Option D is wrong because RAID 0 (striping) offers no redundancy; it actually increases the risk of data loss because a single drive failure destroys all data in the array.

246
MCQeasy

A junior developer is tasked with fixing a bug where a variable is unexpectedly undefined. The developer suspects the variable is not within scope. Which programming concept describes where a variable can be accessed?

A.Loop
B.Scope
C.Data type
D.Function
AnswerB

Scope determines the visibility and lifetime of a variable within a program.

Why this answer

Scope is the programming concept that defines the region of code where a variable is accessible. If a variable is unexpectedly undefined, it is often because it was declared outside the current block or function, making it out of scope. In JavaScript, for example, variables declared with `let` or `const` inside a block are not accessible outside that block.

Exam trap

The trap here is that candidates confuse 'function' (a code block) with 'scope' (the accessibility region), thinking that simply being inside a function guarantees access, when in reality scope is determined by declaration location and keyword (e.g., `var` vs `let`).

How to eliminate wrong answers

Option A is wrong because a loop is a control structure for repeating code, not a concept that determines variable accessibility. Option C is wrong because a data type defines what kind of value a variable holds (e.g., string, number), not where it can be accessed. Option D is wrong because a function is a reusable block of code, but scope is the broader concept that includes function scope, block scope, and global scope.

247
MCQhard

Refer to the exhibit. PC1 (192.168.1.10) cannot communicate with PC2 (192.168.2.10). What is the most likely cause?

A.PC2 has an incorrect default gateway
B.Router1 lacks a route to the 192.168.2.0/24 network
C.Switch1 is not routing between VLANs
D.PC1 has an incorrect subnet mask
AnswerB

Without a route to the 192.168.2.0 network, Router1 cannot forward packets to PC2.

Why this answer

Router1 lacks a route to the 192.168.2.0/24 network, so when PC1 sends traffic to PC2, Router1 does not have a destination network entry in its routing table to forward the packets. Without a route, the router drops the packets and may send an ICMP Destination Unreachable message back to PC1. This is the most likely cause because PC1 can reach its default gateway (Router1), but Router1 cannot forward traffic to the remote subnet.

Exam trap

The trap here is that candidates often assume a router automatically knows all networks in a topology, but routers only know directly connected networks unless routes are explicitly configured or learned via a routing protocol.

How to eliminate wrong answers

Option A is wrong because PC2's default gateway is only used when PC2 sends traffic to a different subnet; it does not affect PC1's ability to reach PC2. Option C is wrong because Switch1 is a Layer 2 switch and does not perform routing between VLANs; routing between subnets requires a Layer 3 device like a router. Option D is wrong because if PC1 had an incorrect subnet mask, it would not be able to communicate with its own default gateway or any host on its local subnet, but the problem states PC1 cannot communicate specifically with PC2 on a different subnet, not with its local network.

248
MCQeasy

Which of the following best describes the function of a DNS server?

A.Hosts web pages
B.Forwards traffic between networks
C.Resolves domain names to IP addresses
D.Assigns IP addresses to devices
AnswerC

DNS performs name resolution.

Why this answer

A DNS (Domain Name System) server translates human-readable domain names (e.g., www.example.com) into machine-readable IP addresses (e.g., 192.0.2.1). This resolution process is fundamental to network communication, as applications rely on IP addresses to locate and connect to servers. Without DNS, users would need to memorize numeric IP addresses for every website or service.

Exam trap

CompTIA often tests the distinction between DNS and DHCP, as candidates frequently confuse 'resolving names' with 'assigning addresses' — both are critical network services but serve entirely different purposes.

How to eliminate wrong answers

Option A is wrong because hosting web pages is the function of a web server (e.g., Apache, Nginx), not a DNS server. Option B is wrong because forwarding traffic between networks is the role of a router (operating at Layer 3 of the OSI model), not a DNS server. Option D is wrong because assigning IP addresses to devices is the function of a DHCP (Dynamic Host Configuration Protocol) server, which uses UDP ports 67 and 68.

249
Multi-Selecteasy

Which TWO of the following are characteristics of a client-server network?

Select 2 answers
A.No dedicated server required
B.Resources are shared from servers
C.Centralized management
D.All devices are equal
E.Typically used in small offices with few computers
AnswersB, C

Servers host shared resources.

Why this answer

In a client-server network, resources such as files, printers, and applications are hosted on dedicated servers and shared with client devices. This centralized resource sharing is a defining characteristic, as servers are designed to provide services to multiple clients, unlike peer-to-peer networks where each device shares its own resources directly.

Exam trap

CompTIA often tests the misconception that client-server networks can function without a dedicated server, confusing them with peer-to-peer networks where all devices are equal and share resources directly.

250
MCQmedium

Based on the exhibit, what is the most likely cause of the error?

A.Network outage
B.Power supply failure
C.Bad memory stick
D.Disk error
AnswerD

The error states a disk write failure.

Why this answer

The exhibit shows a 'Disk Boot Failure' or similar error, which indicates the system cannot find a valid boot sector on the hard drive. This is most commonly caused by a disk error, such as a corrupted master boot record (MBR), bad sectors, or a disconnected data cable. Option D is correct because the error message directly points to a storage device issue, not a network, power, or memory problem.

Exam trap

The trap here is that candidates may confuse a 'Disk Boot Failure' with a memory or power issue because they all can cause the system to fail to start, but the specific error message isolates the problem to the storage device.

How to eliminate wrong answers

Option A is wrong because a network outage would cause connectivity errors (e.g., 'Network Unreachable'), not a boot failure, as booting is a local process independent of network availability. Option B is wrong because a power supply failure would result in the system not powering on at all or sudden shutdowns, not a specific disk-related error message. Option C is wrong because a bad memory stick typically causes system crashes, blue screens (BSOD), or POST beep codes, not a 'Disk Boot Failure' message, which is specific to the storage subsystem.

251
MCQeasy

A user installed a new photo editing application. After opening it, the user receives an error that the application cannot find a required DLL file. Which of the following is the MOST likely cause?

A.The application did not install all necessary components.
B.The application configuration file is corrupted.
C.The computer does not have enough RAM to run the application.
D.The graphics driver is outdated.
AnswerA

A missing DLL often results from an incomplete installation or missing runtime components.

Why this answer

Option B is correct because a missing DLL file commonly indicates that the application was not installed properly or is missing a required component. Option A is wrong because the file extension is .dll, not a configuration file; Option C is wrong because insufficient RAM would cause performance issues, not a missing file error; Option D is wrong because an outdated driver would typically cause hardware-related errors, not a DLL missing error.

252
MCQhard

An employee receives a phone call from someone claiming to be from the IT department. The caller states there is a security issue and requests the employee's login credentials to 'fix the problem'. What should the employee do?

A.Give a temporary password to see if the issue resolves.
B.Provide the credentials because the caller sounds knowledgeable.
C.Hang up and call the IT department using the official number.
D.Ask for a call-back number and verify the caller's identity later.
AnswerC

Verifying through official channels prevents credential theft.

Why this answer

Option A is correct because hanging up and calling the official number ensures the request is legitimate. Option B is wrong because providing any information is risky. Option C is wrong because calling back a number provided by the caller could go to the attacker.

Option D is wrong because even a temporary password could be exploited.

253
MCQeasy

A user needs to store customer information including name, address, and order history. Which database type is most appropriate?

A.Hierarchical database
B.Flat-file database
C.NoSQL database
D.Relational database
AnswerD

Relational databases use tables, keys, and relationships to efficiently store and query structured data like customer info and orders.

Why this answer

A relational database is the most appropriate choice because it organizes data into tables with rows and columns, allowing efficient storage and retrieval of structured customer information (name, address) while supporting relationships to order history via foreign keys. This structure enables ACID compliance and complex queries using SQL, which is ideal for transactional data with clear schema requirements.

Exam trap

The trap here is that candidates often choose NoSQL databases (Option C) because they assume 'order history' implies large-scale or flexible data, but the question specifies structured customer information with clear relationships, making relational databases the correct fit for ACID-compliant transactional integrity.

How to eliminate wrong answers

Option A is wrong because hierarchical databases organize data in a tree-like structure with parent-child relationships, which is inflexible for modeling many-to-many relationships between customers and orders without redundancy. Option B is wrong because flat-file databases store all data in a single table or file, leading to data duplication and difficulty managing related entities like order history without manual normalization. Option C is wrong because NoSQL databases are designed for unstructured or semi-structured data and horizontal scaling, but they lack the strict schema enforcement and relational integrity needed for consistent customer-order associations.

254
MCQmedium

Refer to the exhibit. The user is unable to browse the internet using domain names but can access websites by IP address. Which configuration is most likely incorrect?

A.IPv4 address
B.Subnet mask
C.DNS server addresses
D.DHCP enabled
AnswerC

Public DNS may be blocked or not resolve internal names.

Why this answer

The user can access websites by IP address but not by domain name, which indicates that DNS resolution is failing. The DNS server addresses configuration is most likely incorrect, as the client cannot translate domain names to IP addresses without a valid DNS server. This is a classic symptom of a misconfigured or missing DNS server setting.

Exam trap

The trap here is that candidates often confuse DNS failure with general connectivity issues, but the ability to browse by IP address proves that routing and IP configuration are correct, isolating the problem to DNS server settings.

How to eliminate wrong answers

Option A is wrong because an incorrect IPv4 address would prevent all network communication, including accessing websites by IP address. Option B is wrong because an incorrect subnet mask would cause local network connectivity issues but would not specifically break DNS resolution while allowing direct IP access. Option D is wrong because DHCP being enabled or disabled does not directly cause DNS failure; even with static IP configuration, DNS servers can be manually set correctly.

255
MCQmedium

A user reports that their computer is running slowly. Which of the following is the FIRST troubleshooting step the technician should perform?

A.Update device drivers
B.Reinstall the operating system
C.Restart the computer
D.Run a virus scan
AnswerC

Restarting resets the system and often fixes performance issues without risk.

Why this answer

Option A is correct because restarting the computer is a basic first step that clears temporary memory and resolves many software issues. Option B (update drivers) is not the first step. Option C (run virus scan) is a later step.

Option D (reinstall OS) is drastic and premature.

256
MCQhard

A server has four hard drives configured in RAID 5. One drive fails. What must the technician do to restore full redundancy?

A.Replace all drives and reconfigure RAID
B.Simply replace the drive with a larger capacity drive
C.Replace the failed drive and rebuild the array
D.Replace the failed drive and restore from backup
AnswerC

RAID 5 can rebuild from parity; replacing the failed drive and initiating rebuild restores fault tolerance.

Why this answer

RAID 5 uses distributed parity across all drives, allowing the array to tolerate a single drive failure without data loss. When a drive fails, the technician must replace the failed drive and then rebuild the array, during which the RAID controller reconstructs the missing data from the parity information on the remaining drives. This restores full redundancy by returning the array to a fault-tolerant state.

Exam trap

The trap here is that candidates may think a simple drive replacement automatically restores redundancy, but they must understand that the array must be explicitly rebuilt (either automatically or manually) to regenerate the missing data from parity.

How to eliminate wrong answers

Option A is wrong because replacing all drives and reconfiguring RAID is unnecessary and causes data loss; RAID 5 can recover from a single drive failure by rebuilding onto a new drive. Option B is wrong because simply replacing the failed drive with a larger capacity drive does not automatically trigger a rebuild, and RAID 5 typically requires drives of the same size; the array must be explicitly rebuilt to restore redundancy. Option D is wrong because restoring from backup is an extreme measure that is not required; RAID 5's parity mechanism allows direct rebuild without backup, and backup should only be used if multiple drives fail or the rebuild fails.

257
MCQeasy

A user wants to ensure data confidentiality. Which action is most appropriate?

A.Encrypt files
B.Change password
C.Share with everyone
D.Delete files
AnswerA

Encryption transforms data into an unreadable format without a key, ensuring confidentiality.

Why this answer

Encrypting files using algorithms like AES-256 ensures that even if unauthorized users gain access to the data, they cannot read it without the decryption key. This directly addresses the goal of data confidentiality by transforming plaintext into ciphertext that is unreadable without the proper key.

Exam trap

The trap here is that candidates often confuse authentication (changing a password) with confidentiality (encryption), assuming that restricting access alone is sufficient to keep data secret, but encryption is the only mechanism that protects data at rest from unauthorized viewing.

How to eliminate wrong answers

Option B is wrong because changing a password controls access but does not protect the confidentiality of data already stored; an attacker who bypasses authentication can still read unencrypted files. Option C is wrong because sharing with everyone explicitly violates confidentiality by granting unauthorized access to the data. Option D is wrong because deleting files removes the data but does not protect confidentiality during its lifecycle; deleted files can often be recovered from disk using forensic tools, and deletion does not prevent exposure before deletion.

258
MCQmedium

Refer to the exhibit. What is the purpose of the 'no shutdown' command in this router configuration?

A.Remove the IP address
B.Reset the interface configuration
C.Disable the interface
D.Enable the interface
AnswerD

'No shutdown' activates the interface.

Why this answer

The 'no shutdown' command is used in Cisco IOS to administratively bring an interface from the 'administratively down' state to an operational 'up/up' state. By default, many router interfaces are placed in a shutdown state upon initial configuration, and issuing 'no shutdown' enables the interface to send and receive traffic.

Exam trap

CompTIA often tests the misconception that 'no shutdown' is used to remove a configuration or reset an interface, when in fact it specifically toggles the administrative state from disabled to enabled.

How to eliminate wrong answers

Option A is wrong because 'no shutdown' does not remove the IP address; the 'no ip address' command is used to remove an IP address from an interface. Option B is wrong because 'no shutdown' does not reset the interface configuration; the 'default interface' command resets an interface to its factory defaults. Option C is wrong because 'no shutdown' is the opposite of disabling an interface; the 'shutdown' command disables the interface, while 'no shutdown' enables it.

259
MCQhard

A web application uses a JavaScript function to validate user input on a registration form. The function checks that the password is at least 8 characters long and contains a number. When a user submits the form with a password "abc123", the validation passes even though the password has only 6 characters. The developer examines the code and finds that the function uses the condition: if (password.length >= 8 || /\d/.test(password)). Which logical error is causing this bug?

A.The condition uses OR instead of AND.
B.The function is not called.
C.The regular expression is incorrect.
D.The length check is incorrect because it uses >= instead of >.
AnswerA

Using OR means only one condition needs to be true; with AND both must be true.

Why this answer

The condition uses OR (||) instead of AND (&&), so the validation passes if either condition is true. "abc123" has a number, so it passes. The regular expression is correct, length check is appropriate, and the function is called.

260
MCQmedium

An application is displaying an error message: "Cannot write to file. The file may be read-only or in use by another application." Which of the following is the LEAST likely cause?

A.The file has been deleted.
B.The file system is full.
C.The file is open in another program.
D.The user does not have write permissions.
AnswerA

A deleted file would result in a 'file not found' error, not the one given.

Why this answer

Option A is correct because if the file has been deleted, the error message would typically be 'File not found' or 'The system cannot find the file specified,' not a write failure related to read-only status or another application's lock. The error specifically indicates a write conflict or permission issue, not a missing file. Therefore, a deleted file is the least likely cause among the options.

Exam trap

The trap here is that candidates may assume a deleted file could cause a write error, but the specific wording 'read-only or in use' points to permission or locking issues, not a missing file, which would produce a distinct error message.

How to eliminate wrong answers

Option B is wrong because a full file system prevents new data from being written, which can produce an error about being unable to write to the file, often with messages like 'Disk full' or 'No space left on device.' Option C is wrong because if the file is open in another program, the operating system (e.g., Windows with exclusive locks) will deny write access, generating exactly this type of error. Option D is wrong because lacking write permissions (e.g., NTFS ACLs or Unix file mode bits) will cause a write denial, often reported as 'Access denied' or 'Cannot write to file' depending on the application.

261
MCQeasy

Which device is used to connect multiple devices within the same network segment and forward data based on MAC addresses?

A.Hub
B.Modem
C.Switch
D.Router
AnswerC

Switches use MAC addresses to forward frames.

Why this answer

A switch operates at Layer 2 (Data Link Layer) of the OSI model and uses MAC addresses to make forwarding decisions. It maintains a MAC address table (CAM table) to learn which port each device is connected to, allowing it to forward frames only to the intended destination port, reducing collisions and improving network efficiency.

Exam trap

The trap here is that candidates often confuse a switch with a hub because both connect multiple devices, but the key distinction is that a switch forwards based on MAC addresses while a hub simply repeats signals without any addressing logic.

How to eliminate wrong answers

Option A is wrong because a hub operates at Layer 1 (Physical Layer) and simply repeats electrical signals out all ports, without any intelligence to read or forward based on MAC addresses. Option B is wrong because a modem (modulator-demodulator) converts digital signals to analog for transmission over telephone or cable lines and does not forward data within a local network segment based on MAC addresses. Option D is wrong because a router operates at Layer 3 (Network Layer) and forwards packets based on IP addresses, not MAC addresses, and is used to connect different network segments or subnets.

262
MCQmedium

A company requires all employees to use strong passwords. Which of the following password policies best aligns with security best practices?

A.Passwords must be changed every 30 days but can be simple.
B.Passwords must be at least 8 characters and include uppercase, lowercase, numbers, and symbols.
C.Passwords must be the same across all corporate accounts for consistency.
D.Passwords must be a minimum of 6 characters and contain only letters.
AnswerB

Complexity and length make passwords more secure.

Why this answer

Option B is correct because it enforces complexity requirements (uppercase, lowercase, numbers, symbols) and a minimum length of 8 characters, which aligns with NIST SP 800-63B guidelines and modern security best practices. Complex passwords resist brute-force and dictionary attacks by increasing the keyspace exponentially. Simple passwords, even if changed frequently, remain vulnerable to guessing and credential stuffing.

Exam trap

The trap here is that candidates often think frequent password changes (Option A) are more secure than complexity, but the FC0-U61 exam emphasizes that strong, complex passwords are more effective against attacks than short, simple passwords changed often.

How to eliminate wrong answers

Option A is wrong because requiring a password change every 30 days with no complexity allows users to choose weak, easily guessable passwords (e.g., 'Password1'), which are vulnerable to brute-force and dictionary attacks; NIST SP 800-63B advises against arbitrary periodic changes without complexity. Option C is wrong because reusing the same password across all corporate accounts creates a single point of failure—if one account is compromised (e.g., via phishing or a data breach), all accounts become accessible; this violates the principle of least privilege and credential isolation. Option D is wrong because a minimum of 6 characters with only letters provides a very small keyspace (26^6 ≈ 308 million combinations), which can be cracked in minutes with modern GPU-based tools like Hashcat; it lacks the entropy from mixed character types.

263
MCQeasy

A home user wants to connect a desktop computer to the internet using a wireless connection. The computer does not have built-in Wi-Fi. What is the simplest and most cost-effective solution? The user has a wireless router already installed and working.

A.Install a wireless network adapter (USB or PCIe)
B.Use a powerline adapter to extend the network
C.Replace the computer with a laptop that has Wi-Fi
D.Run an Ethernet cable from the router to the computer
AnswerA

This directly adds Wi-Fi capability to the desktop at low cost.

Why this answer

A wireless network adapter (USB or PCIe) adds Wi-Fi capability to a desktop that lacks it, directly connecting to the existing wireless router. This is the simplest and most cost-effective solution because it requires no new infrastructure or cabling, and USB adapters are plug-and-play with minimal setup.

Exam trap

The trap here is that candidates may overthink the solution and choose a more complex option like powerline adapters or Ethernet, missing that the simplest fix is a low-cost wireless adapter that directly addresses the missing Wi-Fi hardware.

How to eliminate wrong answers

Option B is wrong because a powerline adapter extends the network over electrical wiring, which is more expensive and complex than adding a simple wireless adapter, and still requires a wired connection to the computer. Option C is wrong because replacing the entire computer is far more costly and unnecessary when a $20–$30 adapter solves the problem. Option D is wrong because running an Ethernet cable is a viable solution but is not the simplest or most cost-effective—it involves physical cabling, potential drilling, and is less convenient than a wireless adapter.

264
MCQeasy

A user needs to edit a video file for a presentation. Which type of application is most suitable?

A.Spreadsheet software
B.Database software
C.Video editing software
D.Audio editing software
AnswerC

Video editors allow cutting, effects, and timeline editing.

Why this answer

Video editing software is specifically designed to manipulate video files, offering features like trimming, transitions, effects, and timeline-based editing. For editing a video file for a presentation, this type of application provides the necessary tools to adjust the video content, add text overlays, and synchronize audio, making it the most suitable choice.

Exam trap

The trap here is that candidates may confuse audio editing software with video editing software, assuming that because video contains audio, an audio editor can handle the entire task, but it lacks the visual timeline and frame-level controls required for video manipulation.

How to eliminate wrong answers

Option A is wrong because spreadsheet software (e.g., Microsoft Excel) is used for numerical data analysis, calculations, and charting, not for manipulating video files. Option B is wrong because database software (e.g., Microsoft Access) is designed for storing, querying, and managing structured data, not for editing multimedia content. Option D is wrong because audio editing software (e.g., Audacity) focuses on sound waveforms, effects, and mixing, lacking the timeline and visual track capabilities required to edit video frames and sequences.

265
MCQeasy

A developer sees the above error message. What type of error is this?

A.Syntax error
B.Compile error
C.Logic error
D.Runtime error
AnswerD

NullReferenceException occurs at runtime when an object is null.

Why this answer

The correct answer is C: Runtime error. NullReferenceException occurs during program execution when trying to access an object that is null. Syntax errors (A) are caught at compile time.

Compile errors (B) prevent compilation. Logic errors (D) produce wrong results but no exception.

266
Multi-Selecteasy

Which TWO of the following are examples of operating systems?

Select 2 answers
A.Windows 10
B.Adobe Photoshop
C.Google Chrome
D.Linux
E.Microsoft Office
AnswersA, D

Windows 10 is a Microsoft operating system.

Why this answer

Windows 10 is a graphical operating system developed by Microsoft that manages hardware resources, runs applications, and provides a user interface. It is classified as an operating system because it handles process scheduling, memory management, and device I/O operations, which are core OS functions.

Exam trap

The trap here is that candidates often confuse application software (like browsers or office suites) with operating systems because they are commonly used and bundled with the OS, but the exam tests the fundamental distinction that an OS manages system resources while applications perform specific user tasks.

267
MCQhard

A company wants to protect against data loss if a single hard drive fails. They have three identical drives. Which RAID configuration provides fault tolerance while maximizing storage capacity?

A.RAID 0
B.JBOD
C.RAID 1
D.RAID 5
AnswerD

RAID 5 stripes data with parity, allowing one drive to fail without data loss.

Why this answer

RAID 5 uses block-level striping with distributed parity, so if one of the three drives fails, the data can be rebuilt from the remaining drives plus the parity information. With three drives, RAID 5 provides fault tolerance for a single drive failure while using only one drive's worth of capacity for parity, maximizing usable storage (2/3 of total raw capacity).

Exam trap

The trap here is that candidates often confuse RAID 5 with RAID 0 or RAID 1, mistakenly thinking striping alone (RAID 0) provides redundancy or that mirroring (RAID 1) maximizes capacity, when in fact RAID 5 is the only option among these that balances fault tolerance and storage efficiency with three drives.

How to eliminate wrong answers

Option A is wrong because RAID 0 (striping) offers no fault tolerance; if any single drive fails, all data is lost. Option B is wrong because JBOD (Just a Bunch Of Disks) simply concatenates drives without any redundancy or parity, providing no protection against data loss from a single drive failure. Option C is wrong because RAID 1 (mirroring) with three drives would require at least two drives to mirror the same data, wasting capacity (only 1/3 usable) and not maximizing storage; it also typically operates with an even number of drives.

268
Multi-Selecteasy

Which TWO of the following are features of productivity software?

Select 2 answers
A.Disk defragmentation
B.Spell check
C.Network firewall
D.Virus scanning
E.Conditional formatting
AnswersB, E

Spell check is a common feature in word processors.

Why this answer

Spell check is a core feature of productivity software such as word processors and office suites. It automatically compares words against a built-in dictionary to identify and suggest corrections for misspellings, enhancing document accuracy and user efficiency.

Exam trap

CompTIA often tests the distinction between system utilities (defragmentation, firewall, antivirus) and application-level features (spell check, conditional formatting) to see if candidates confuse operating system tools with productivity software capabilities.

269
MCQeasy

A user reports that their computer is unable to connect to the internet, but other devices on the same network work fine. Which of the following is the MOST likely cause?

A.Router firewall blocking traffic
B.DHCP server failure
C.DNS server misconfiguration
D.Faulty network cable
AnswerD

A faulty cable can cause connectivity loss for a single device.

Why this answer

A faulty network cable can prevent a single computer from connecting to the internet while other devices on the same network work fine. This is because the cable physically connects the computer to the network switch or router, and if it is damaged, the link may fail entirely or cause excessive packet loss, isolating only that device.

Exam trap

The trap here is that candidates often assume network issues are always logical (e.g., DNS or DHCP) and overlook the physical layer, but CompTIA tests the principle that a single-device failure with others working points to a local physical or configuration problem, not a shared infrastructure fault.

How to eliminate wrong answers

Option A is wrong because a router firewall blocking traffic would affect all devices behind the router, not just a single computer, unless specific MAC or IP filtering is configured, which is less common than a physical cable issue. Option B is wrong because a DHCP server failure would prevent all devices from obtaining IP addresses, causing a network-wide connectivity failure, not an isolated one. Option C is wrong because a DNS server misconfiguration would allow the computer to connect to the network and reach IP addresses directly, but domain name resolution would fail; the user reports no internet connectivity at all, not just name resolution issues.

270
MCQmedium

A network administrator wants to automatically assign IP addresses to all devices on the network. Which service should be configured on the server?

A.DNS
B.DHCP
C.HTTP
D.NAT
AnswerB

DHCP dynamically assigns IP addresses and other configuration to devices.

Why this answer

Dynamic Host Configuration Protocol (DHCP) is the correct service because it automatically assigns IP addresses, subnet masks, default gateways, and other network configuration parameters to devices on a network. This eliminates the need for manual static IP configuration and ensures each device receives a unique IP address from a defined pool, preventing address conflicts.

Exam trap

The trap here is that candidates often confuse DHCP with DNS because both are network services, but DNS resolves names to IPs while DHCP assigns IPs to devices.

How to eliminate wrong answers

Option A is wrong because DNS (Domain Name System) resolves human-readable domain names (e.g., www.example.com) to IP addresses; it does not assign IP addresses to devices. Option C is wrong because HTTP (Hypertext Transfer Protocol) is used for transferring web content between clients and servers; it has no role in IP address assignment. Option D is wrong because NAT (Network Address Translation) translates private IP addresses to a public IP address for internet access; it does not automatically assign IP addresses to devices on the local network.

271
MCQhard

An IT manager is evaluating a cloud storage service for backup of critical company data. The manager is concerned about data security and availability. The service offers encryption at rest and in transit, 99.9% uptime SLA, and geo-redundancy. However, the service uses multi-tenancy. Which of the following is a potential concern the manager should address?

A.The uptime SLA is not sufficient
B.The encryption might slow down data transfers
C.The geo-redundancy might cause latency
D.The data might be accessible by other tenants
AnswerD

Multi-tenancy increases the risk of data leakage if proper isolation fails.

Why this answer

The primary concern with multi-tenancy in a cloud storage service is the risk of data isolation failure, where a vulnerability or misconfiguration could allow one tenant to access another tenant's data. Even with strong encryption at rest and in transit, the data must be decrypted for processing, and if the hypervisor or storage layer has a flaw, other tenants could potentially read the decrypted data. This is a well-known security risk in shared infrastructure models like IaaS and PaaS.

Exam trap

The trap here is that candidates may focus on encryption or SLA metrics as the main security concern, overlooking the fundamental risk of data leakage in a shared multi-tenant architecture, which is a core concept in cloud computing security models.

How to eliminate wrong answers

Option A is wrong because a 99.9% uptime SLA (approximately 8.76 hours of downtime per year) is generally considered sufficient for most critical data backup scenarios, and the question does not specify a higher requirement. Option B is wrong because encryption overhead from AES-256 or TLS 1.3 is negligible on modern hardware and does not typically cause noticeable slowdowns for backup data transfers. Option C is wrong because geo-redundancy replicates data asynchronously to a secondary region, and while it may introduce slight write latency, it does not affect read latency for the primary copy and is a standard feature for disaster recovery.

272
MCQmedium

A user reports that a spreadsheet application crashes whenever they try to use a specific macro. The technician needs to identify the cause. Which of the following should the technician check first?

A.The macro code for errors.
B.The version of the operating system.
C.The file format of the spreadsheet.
D.The amount of RAM available.
AnswerA

A bug or error in the macro code can cause the application to crash when executed.

Why this answer

The macro code is the most direct cause of the crash because macros are custom scripts (often VBA) that execute within the application. If the code contains syntax errors, infinite loops, or attempts to access invalid objects, it will cause the application to terminate unexpectedly. Checking the code first follows the principle of isolating the specific change or action that triggers the fault.

Exam trap

The trap here is that candidates may assume a hardware or system-level issue (like RAM or OS version) is the root cause, when the problem is specifically tied to the execution of a single macro, making the macro code the most logical first check.

How to eliminate wrong answers

Option B is wrong because the operating system version is a broad environmental factor that would affect all applications and macros, not just a specific macro in a single spreadsheet. Option C is wrong because the file format (e.g., .xls vs .xlsm) might affect macro enablement or compatibility, but a crash triggered only when running a specific macro points to the macro logic, not the file container. Option D is wrong because insufficient RAM would cause system-wide slowdowns or out-of-memory errors across multiple applications, not a crash isolated to one macro in one spreadsheet.

273
Multi-Selecteasy

Which TWO of the following are examples of database management systems (DBMS)?

Select 2 answers
A.Microsoft SQL Server
B.Python
C.MySQL
D.HTML
E.Linux
AnswersA, C

Microsoft SQL Server is a relational DBMS.

Why this answer

Microsoft SQL Server is a relational database management system (RDBMS) developed by Microsoft. It uses Structured Query Language (SQL) to store, retrieve, and manage data in a structured format, making it a core example of a DBMS.

Exam trap

The trap here is that candidates may confuse programming languages or operating systems with database management systems because they are often used together in development stacks, but only software specifically designed to manage databases qualifies as a DBMS.

274
MCQhard

Refer to the exhibit. A technician sees an established connection to an external IP on port 443 from PID 3400. What is the most likely purpose of this connection?

A.File sharing over SMB
B.Remote Desktop Protocol (RDP) session
C.Email submission (SMTP)
D.Secure web browsing (HTTPS)
AnswerD

HTTPS uses port 443.

Why this answer

Port 443 is the default port for HTTPS (HTTP over TLS/SSL), which is used for secure web browsing. PID 3400 indicates a specific process, likely a web browser or an application making an encrypted HTTPS connection to an external IP. This matches the purpose of secure web browsing.

Exam trap

The trap here is that candidates may confuse port 443 with other common services like SMB or RDP, or assume any encrypted connection is SSH (port 22), but the question specifically ties port 443 to HTTPS, which is the standard for secure web traffic.

How to eliminate wrong answers

Option A is wrong because SMB (Server Message Block) uses ports 445 (direct SMB over TCP) or 139 (NetBIOS), not port 443. Option B is wrong because RDP uses port 3389 by default, not port 443. Option C is wrong because SMTP (email submission) typically uses port 25 (or 587 for submission), not port 443.

275
Multi-Selectmedium

Which THREE of the following are common methods to acquire software? (Select THREE).

Select 3 answers
A.Install from a USB drive
B.Use software-as-a-service (SaaS)
C.Purchase from a retail store
D.Obtain from an open-source repository
E.Download from a vendor's website
AnswersC, D, E

Retail purchase is a common method to acquire commercial software.

Why this answer

Purchasing software from a retail store is a traditional method of acquiring software, where the user buys a physical copy (e.g., on a DVD or CD-ROM) containing the installation files and a license key. This method provides a tangible medium and often includes a license agreement that grants the user the right to install and use the software on a specified number of devices. It is a common acquisition method, especially for commercial off-the-shelf (COTS) software.

Exam trap

The trap here is confusing the method of software delivery or deployment (e.g., USB drive) with the method of acquisition (how you first obtain the software), leading candidates to incorrectly select 'Install from a USB drive' as a valid acquisition method.

276
Multi-Selectmedium

Which THREE of the following are common types of computer networks? (Select three.)

Select 3 answers
A.LAN
B.WAN
C.HDMI
D.USB
E.MAN
AnswersA, B, E

Local Area Network connects devices in a small area.

Why this answer

A LAN (Local Area Network) connects computers within a limited geographic area, such as a home, office, or school, using Ethernet or Wi-Fi. It is one of the most fundamental network types, typically operating at Layer 2 of the OSI model with high data transfer rates and low latency.

Exam trap

The trap here is that candidates confuse physical connectors or cables (HDMI, USB) with network types, but CompTIA tests the distinction between network topologies (LAN, WAN, MAN) and peripheral interfaces.

277
Multi-Selecthard

Which THREE of the following are common features of word processing applications?

Select 3 answers
A.Creating slide shows
B.Spell check
C.Inserting tables into documents
D.Tracking financial transactions
E.Mail merge capability
AnswersB, C, E

Spell check is a standard word processor feature.

Why this answer

Option B is correct because spell check is a standard feature in word processing applications like Microsoft Word or Google Docs. It automatically scans text for spelling errors against a built-in dictionary and often provides suggestions for corrections, helping users produce error-free documents.

Exam trap

The trap here is that candidates may confuse the general productivity software categories, mistakenly associating slide shows or financial tracking with word processing because they are common in office suites, but each belongs to a distinct application type.

278
MCQmedium

A user receives an error message indicating 'insufficient memory' when opening several applications. Which action will most likely resolve the issue?

A.Install more RAM
B.Clear the browser cache
C.Increase virtual memory
D.Defragment the hard drive
AnswerA

Installing additional RAM directly increases the memory available to run applications.

Why this answer

The error message 'insufficient memory' indicates that the system has exhausted its physical RAM capacity while trying to load multiple applications. Installing more RAM directly increases the amount of physical memory available, allowing the operating system to keep more application data in memory without resorting to slower paging. This is the most effective long-term solution for resolving memory exhaustion caused by running several applications simultaneously.

Exam trap

The trap here is that candidates confuse 'insufficient memory' with 'low disk space' or 'slow performance,' leading them to choose clearing the cache or defragmenting the drive, when the error specifically refers to a shortage of RAM (volatile memory) needed to run applications.

How to eliminate wrong answers

Option B is wrong because clearing the browser cache frees disk space used for temporary web files, not system memory (RAM), and does not address the 'insufficient memory' error which is a RAM shortage. Option C is wrong because increasing virtual memory expands the pagefile on disk, which can temporarily alleviate low RAM but relies on much slower disk I/O and does not resolve the underlying physical memory deficit; it may even increase thrashing. Option D is wrong because defragmenting the hard drive reorganizes file fragments to improve disk read/write performance but has no effect on the amount of available RAM or the 'insufficient memory' error.

279
MCQeasy

A user reports that a spreadsheet application crashes every time they try to open a specific file. The file was created in a newer version of the software. What is the most likely cause?

A.The computer does not have enough RAM.
B.The file was saved in a format incompatible with the installed version.
C.The file is corrupted.
D.The user does not have permission to access the file.
AnswerB

Newer file formats may cause crashes in older versions due to unsupported features.

Why this answer

Option B is correct because the most likely cause of a crash when opening a file created in a newer version of the software is a format incompatibility. Newer versions often use updated file formats (e.g., .xlsx vs. .xls in Excel) that older versions cannot parse correctly, leading to application instability or crashes. This is a common scenario in backward compatibility issues, where the installed software lacks the necessary codecs or schema to interpret the file's structure.

Exam trap

The trap here is that candidates often assume file corruption (Option C) is the cause, but the key clue is that the file was created in a newer version, pointing to a format incompatibility rather than data corruption.

How to eliminate wrong answers

Option A is wrong because insufficient RAM typically causes system-wide slowdowns or out-of-memory errors, not a crash specific to opening one particular file; the issue is isolated to that file, not a resource shortage. Option C is wrong because file corruption usually results in error messages like 'file is corrupt and cannot be opened' or data loss, not a consistent crash on every open attempt; the file opens in the newer version, indicating it is structurally valid. Option D is wrong because permission errors generate a specific access-denied message (e.g., 'You do not have permission to open this file') and do not cause the application to crash; the user can open other files, ruling out a permissions issue.

280
Multi-Selecteasy

Which TWO of the following are examples of social engineering attacks?

Select 2 answers
A.Adware
B.Spoofing
C.Tailgating
D.Phishing
E.Shoulder surfing
AnswersC, D

Tailgating is a social engineering attack where an unauthorized person follows an authorized individual into a restricted area.

Why this answer

Tailgating (option C) is a social engineering attack where an unauthorized person physically follows an authorized individual into a restricted area, bypassing access controls such as card readers or biometric scanners. This exploits human courtesy or inattention rather than technical vulnerabilities, making it a classic social engineering technique.

Exam trap

The trap here is that candidates often confuse shoulder surfing (a direct observation method) with social engineering, but CompTIA categorizes shoulder surfing as a physical security threat, not a social engineering attack, because it does not involve psychological manipulation or deception of the victim.

281
MCQmedium

A technician is troubleshooting a desktop that does not power on. The power supply fan spins, but there is no display and no beep codes. Which component should the technician check first?

A.RAM
B.Motherboard
C.CPU
D.Power supply
AnswerA

Faulty or loose RAM often prevents booting and can be fixed by reseating.

Why this answer

When the power supply fan spins but there is no display and no beep codes, the system is likely failing the Power-On Self-Test (POST) before it can initialize the video subsystem. RAM is the most common cause of a 'no POST' condition because if the memory is faulty, loose, or incompatible, the motherboard cannot complete the memory initialization step, halting the boot process silently without beeps or display.

Exam trap

Cisco often tests the misconception that a spinning power supply fan guarantees the PSU is fully functional, leading candidates to overlook RAM as the first component to check in a no-POST scenario.

How to eliminate wrong answers

Option B (Motherboard) is wrong because a completely dead motherboard would typically prevent the power supply fan from spinning or cause continuous beep codes, not a silent no-POST state; the fan spinning indicates the motherboard is receiving power and the PSU is functional. Option C (CPU) is wrong because a failed CPU usually results in a specific beep code pattern (e.g., continuous short beeps on AMI BIOS) or the system may power on with fans but no POST, but RAM is far more likely to be the first check due to its higher failure rate and ease of reseating. Option D (Power supply) is wrong because the fan spinning confirms the PSU is delivering at least some power; a faulty PSU would typically cause no fan movement or intermittent power, not a clean spin with no POST.

282
MCQeasy

A user reports that their computer is running slowly and the hard drive activity light is constantly on. The technician checks Task Manager and sees that disk usage is at 100%. What is the most likely cause?

A.Malware infection that is encrypting files in the background
B.Insufficient RAM causing the system to use the hard drive as virtual memory excessively
C.A failing hard drive that needs to be replaced immediately
D.The hard drive is almost full and needs to be defragmented
AnswerB

High disk usage with constant activity often indicates insufficient RAM causing excessive paging.

Why this answer

When RAM is insufficient, the operating system compensates by using a portion of the hard drive as virtual memory (the page file). This causes constant swapping of data between RAM and the disk, resulting in 100% disk usage and a continuously active hard drive light. Task Manager would show high disk usage even if the CPU and memory percentages appear moderate.

Exam trap

The trap here is that candidates often associate 100% disk usage with malware or a failing drive, overlooking the classic symptom of insufficient RAM causing excessive paging to the page file.

How to eliminate wrong answers

Option A is wrong because while a malware encrypting files could cause disk activity, it would typically also show high CPU usage and unusual process names, not consistently 100% disk usage with normal CPU. Option C is wrong because a failing hard drive usually produces clicking noises, bad sectors, or file corruption errors, not sustained 100% disk usage with the drive light constantly on. Option D is wrong because a nearly full hard drive does not inherently cause 100% disk usage; defragmentation is only beneficial for mechanical drives and does not address the root cause of excessive paging.

283
Multi-Selectmedium

Which TWO of the following are examples of open-source software licenses?

Select 2 answers
A.Apple App Store License
B.GNU GPL
C.MIT License
D.Microsoft EULA
E.Adobe EULA
AnswersB, C

The GNU General Public License is a widely used open-source license.

Why this answer

The GNU General Public License (GPL) is a widely used open-source license that grants users the freedom to run, study, share, and modify the software. It requires that any distributed derivative work be licensed under the same GPL terms, ensuring the software remains free and open.

Exam trap

The trap here is that candidates may confuse proprietary licenses (like EULAs) with open-source licenses, or think that any license that allows free download is open-source, ignoring the specific grant of modification and redistribution rights.

284
MCQhard

A small accounting office uses three desktop computers running Windows 10. One computer has become extremely slow over the past week. The user reports that the computer takes a long time to start up and applications are unresponsive. The technician checks Task Manager and sees that physical memory usage is at 95% and the page file is heavily used. The hard drive activity light is solid. The computer has 4GB of RAM and a 1TB HDD with 200GB free. Which course of action should the technician take first to most directly address the performance issue?

A.Increase the page file size
B.Upgrade the RAM to at least 8GB
C.Disable unnecessary startup programs
D.Run a full antivirus scan
AnswerB

Upgrading RAM directly addresses the memory shortage, reducing swapping and improving overall speed.

Why this answer

The system has only 4GB of RAM, and physical memory usage is at 95% with heavy page file utilization. This indicates the computer is thrashing — constantly swapping data between RAM and the slow HDD, causing the solid hard drive activity light and unresponsiveness. Adding more RAM (to at least 8GB) directly reduces reliance on the page file, alleviating the bottleneck and addressing the root cause of the performance issue.

Exam trap

The trap here is that candidates often choose 'Increase the page file size' (Option A) thinking more virtual memory will help, but they fail to recognize that the bottleneck is the speed of the HDD, not the size of the page file, and that adding physical RAM is the only way to reduce paging activity.

How to eliminate wrong answers

Option A is wrong because increasing the page file size would only allocate more space on the already slow HDD for swapping, which does not fix the underlying shortage of physical memory; it may even worsen thrashing. Option C is wrong because disabling startup programs reduces boot time and background load, but the primary symptom here is near-total memory exhaustion (95% usage) and heavy paging, which is a capacity issue, not a startup configuration problem. Option D is wrong while malware can cause high memory usage, the specific evidence of 95% physical memory usage and heavy page file activity on a 4GB system points to insufficient RAM as the most direct cause; an antivirus scan is a secondary step after addressing the obvious hardware limitation.

285
MCQeasy

Refer to the exhibit. A user reports that an application is running slowly. Based on the exhibit, which process is using the most memory?

A.explorer.exe
B.svchost.exe (PID 832)
C.notepad.exe
D.System
AnswerA

explorer.exe uses 30,456 K, the highest memory usage in the list.

Why this answer

The exhibit shows that explorer.exe is using the highest memory value (e.g., 1,234 MB) among the listed processes. In Windows Task Manager, the 'Memory' column displays the current working set in megabytes, and explorer.exe's memory consumption exceeds that of the other processes, making it the correct answer.

Exam trap

The trap here is that candidates often assume svchost.exe or System always consume the most memory because they host critical OS services, but the question requires reading the actual numeric values in the exhibit rather than relying on general assumptions.

How to eliminate wrong answers

Option B (svchost.exe PID 832) is wrong because, while svchost.exe hosts multiple Windows services, its memory usage in the exhibit is lower than explorer.exe. Option C (notepad.exe) is wrong because notepad.exe typically uses minimal memory (often under 10 MB) and is not shown as the highest consumer. Option D (System) is wrong because the System process (NT Kernel & System) usually has a moderate memory footprint, but in the exhibit it is not the top memory user.

286
MCQeasy

A user reports that their laptop battery drains quickly even when plugged in. What is the most likely cause?

A.The battery is faulty
B.The laptop is set to high performance mode
C.The power adapter is not delivering enough voltage
D.The CPU is overheating
AnswerC

If the adapter is underpowered, the laptop may supplement with battery power, causing drain.

Why this answer

When a laptop battery drains quickly while plugged in, the most likely cause is that the power adapter is not delivering enough voltage or current to simultaneously power the system and charge the battery. This can occur if the adapter is undersized, damaged, or not the original equipment manufacturer (OEM) specification, causing the system to draw power from the battery even when connected to AC power. A faulty battery would typically fail to hold a charge at all, not drain while plugged in.

Exam trap

The trap here is that candidates often assume a battery drain while plugged in must be a battery fault, but the CompTIA FC0-U61 exam tests understanding that the power adapter's output capacity is the first thing to verify in such a scenario.

How to eliminate wrong answers

Option A is wrong because a faulty battery usually results in no charge retention, sudden shutdowns, or failure to power on, not a gradual drain while the AC adapter is connected. Option B is wrong because high performance mode increases power consumption but does not cause the battery to drain when plugged in; the adapter should still supply sufficient power unless it is inadequate. Option D is wrong because CPU overheating triggers thermal throttling to reduce performance and power draw, which would not cause the battery to drain; it is a symptom of cooling failure, not a power delivery issue.

287
Multi-Selecthard

A technician is troubleshooting a computer that cannot connect to the network. Which THREE steps should the technician perform first in the troubleshooting process?

Select 3 answers
A.Reinstall the operating system
B.Check if the network cable is securely connected
C.Verify IP address configuration
D.Check link lights on the network adapter
E.Replace the network interface card
AnswersB, C, D

A loose cable is a common cause; checking it is a first step.

Why this answer

Option B is correct because checking the physical connection is the first step in the CompTIA A+ troubleshooting methodology. A loose or damaged network cable is a common cause of connectivity failure, and verifying it eliminates the simplest issue before moving to software or configuration checks.

Exam trap

The trap here is that candidates may jump to software or hardware replacement steps (like reinstalling the OS or replacing the NIC) without first performing basic physical and configuration checks, which are the foundation of systematic troubleshooting.

288
Multi-Selectmedium

Which TWO of the following are types of cloud computing service models?

Select 2 answers
A.DHCP
B.LAN
C.SaaS
D.VPN
E.IaaS
AnswersC, E

Software as a Service is a cloud service model.

Why this answer

SaaS (Software as a Service) is a cloud computing service model where users access software applications over the internet on a subscription basis, with the provider managing the underlying infrastructure, platform, and application. This model eliminates the need for local installation and maintenance, as seen in services like Google Workspace or Microsoft 365.

Exam trap

The trap here is that candidates confuse network services and protocols (DHCP, VPN) or network types (LAN) with cloud service models, because all are IT infrastructure components but only SaaS and IaaS represent distinct service delivery categories.

289
Drag & Dropmedium

Drag and drop the steps to boot a computer into Safe Mode in Windows 10 into the correct order.

Drag steps to the numbered slots on the right, or tap a step then tap a slot.

Steps
Order

Why this order

Safe Mode boots with minimal drivers. The Shift+Restart method accesses the recovery environment.

290
Multi-Selecteasy

Which TWO of the following are examples of output devices?

Select 2 answers
A.Scanner
B.Keyboard
C.Monitor
D.Printer
E.Mouse
AnswersC, D

A monitor displays visual output from the computer.

Why this answer

A monitor is an output device because it receives processed data from the computer's graphics card and displays it visually to the user. Output devices convert electronic signals into human-readable form, such as text, images, or video, which is exactly what a monitor does.

Exam trap

The trap here is that candidates often confuse 'interactive' devices like touchscreen monitors or all-in-one printers as both input and output, but the question specifically asks for output devices, so only devices that exclusively output data (monitor, printer) are correct.

291
MCQmedium

A company has two office buildings 1.5 km apart and needs to connect their networks with a high-speed, reliable link. Which cabling type is most appropriate?

A.Cat6a
B.Fiber optic
C.Coaxial
D.Cat5e
AnswerB

Fiber optic supports long distances and high bandwidth, ideal for inter-building connections.

Why this answer

Fiber optic cabling is the most appropriate choice for connecting two office buildings 1.5 km apart because it supports high-speed data transmission over long distances (up to several kilometers) with minimal signal loss and immunity to electromagnetic interference (EMI). Unlike copper-based cables, fiber optic uses light pulses to transmit data, making it ideal for reliable, high-bandwidth links between separate buildings.

Exam trap

The trap here is that candidates often overlook the distance limitation of copper cabling (100 meters for twisted-pair) and assume that higher-category cables like Cat6a can magically extend beyond that range, when in fact the 100-meter rule applies regardless of category for Ethernet standards.

How to eliminate wrong answers

Option A is wrong because Cat6a is a copper twisted-pair cable limited to a maximum segment length of 100 meters for high-speed Ethernet (10GBASE-T), making it unsuitable for a 1.5 km link. Option C is wrong because coaxial cable, while capable of longer distances than twisted-pair, typically supports up to 500 meters for 10BASE5 or 185 meters for 10BASE2, and its lower bandwidth and susceptibility to interference make it inadequate for modern high-speed requirements. Option D is wrong because Cat5e is also a copper twisted-pair cable with a maximum effective distance of 100 meters for 1000BASE-T, and it cannot span 1.5 km without repeaters or switches, which would add cost and complexity.

292
MCQhard

A developer accidentally committed a bug that broke the build. The team wants to undo the commit without losing the commit history. Which Git command should be used?

A.git reset HEAD~1
B.git checkout HEAD~1
C.git revert HEAD
D.git branch -d bugfix
AnswerC

git revert creates a new commit that undoes the changes, keeping history intact.

Why this answer

The correct answer is D: git revert. It creates a new commit that undoes the changes, preserving history. git reset (A) removes commits and rewrites history, which is problematic for shared branches. git checkout (B) switches branches or restores files. git branch (C) manages branches.

293
MCQmedium

A technician is troubleshooting a computer that will not power on. Which of the following should be checked FIRST?

A.Whether the power cable is plugged in
B.The network connection
C.The operating system version
D.The amount of free disk space
AnswerA

The most basic cause is often a loose or unplugged power cable.

Why this answer

The most fundamental requirement for a computer to power on is a stable electrical connection. Checking whether the power cable is plugged in is the first step in the troubleshooting methodology because it eliminates the simplest and most common cause of a no-power condition before moving to more complex diagnostics. Without verifying the power source, any other troubleshooting is premature.

Exam trap

The trap here is that candidates may jump to advanced software or hardware diagnostics (like checking the OS or disk space) without first verifying the most basic physical layer—the power connection—which is the cornerstone of the CompTIA troubleshooting methodology.

How to eliminate wrong answers

Option B is wrong because the network connection is irrelevant to the computer's ability to power on; a computer can boot and operate without any network connectivity. Option C is wrong because the operating system version is a software attribute that cannot be checked if the computer does not power on, as the system never reaches the POST or boot loader stage. Option D is wrong because free disk space is a storage metric that has no bearing on the initial power-up sequence; the computer must first receive power and initialize the hardware before the OS or disk is accessed.

294
Multi-Selecthard

A user reports that a web application fails to load in a browser. The IT technician suspects a compatibility issue. Which TWO actions should the technician take to diagnose the problem?

Select 2 answers
A.Reinstall the web browser application.
B.Check the browser console for error messages.
C.Test the application using a different web browser.
D.Clear the browser cache and cookies.
E.Update the operating system to the latest version.
AnswersB, C

The console shows JavaScript and network errors relevant to web application failures.

Why this answer

Option B is correct because the browser console displays JavaScript errors, network request failures, and other runtime issues that can prevent a web application from loading. Checking the console is a direct diagnostic step to identify compatibility problems, such as unsupported APIs or deprecated features. Option C is correct because testing the application in a different browser isolates whether the issue is browser-specific, which is a common compatibility troubleshooting technique.

Exam trap

The trap here is that candidates confuse general troubleshooting steps (clearing cache or reinstalling) with targeted diagnostic actions for compatibility issues, leading them to pick options that are too broad or unrelated to the specific symptom.

295
Multi-Selecthard

Which THREE of the following are best practices for database security?

Select 3 answers
A.Use strong, complex passwords
B.Grant all database privileges to all users
C.Disable audit logs to save storage
D.Encrypt sensitive data at rest
E.Implement least privilege access
AnswersA, D, E

Strong passwords resist brute-force attacks.

Why this answer

Using strong, complex passwords is a fundamental security practice that reduces the risk of brute-force or dictionary attacks against database authentication. Passwords should meet length and complexity requirements (e.g., at least 12 characters with mixed case, numbers, and special characters) and be stored using salted, cryptographically strong hashes like bcrypt or PBKDF2. This prevents unauthorized access even if the password hash is compromised.

Exam trap

CompTIA often tests the misconception that disabling security features like audit logs is acceptable for performance or storage savings, when in fact it eliminates critical accountability and detection capabilities required for secure database operations.

296
Multi-Selecteasy

Which THREE are common types of network cables? (Select exactly three.)

Select 3 answers
A.Fiber optic
B.USB
C.HDMI
D.Coaxial
E.Twisted pair
AnswersA, D, E

Fiber optic cable uses light for high-speed data transmission.

Why this answer

Fiber optic cables use light pulses transmitted through glass or plastic fibers to carry data, offering high bandwidth, long-distance transmission, and immunity to electromagnetic interference. They are a standard network cable type in modern infrastructure, especially for backbone and high-speed connections.

Exam trap

The trap here is that candidates often confuse common peripheral or multimedia cables (USB, HDMI) with network cables, forgetting that network cables specifically refer to those used for local area network (LAN) or wide area network (WAN) data transmission, such as fiber optic, coaxial, and twisted pair.

297
MCQmedium

A programmer needs to store a true/false value. Which data type is most appropriate?

A.Integer
B.String
C.Boolean
D.Float
AnswerC

Boolean is specifically designed for true/false values.

Why this answer

The correct answer is B: Boolean. Boolean data type stores true/false values. Integer (A) stores whole numbers.

String (C) stores text. Float (D) stores decimal numbers.

298
MCQeasy

A user reports that their computer is running slowly. Which of the following is the MOST likely cause?

A.Running too many applications simultaneously
B.The monitor is too small
C.The keyboard is unresponsive
D.The mouse needs batteries
AnswerA

Excessive applications consume RAM and CPU, causing slowness.

Why this answer

When too many applications are running simultaneously, the computer's RAM and CPU resources become oversubscribed, forcing the operating system to rely heavily on virtual memory (paging to disk). This causes excessive disk I/O and context switching, which directly degrades system responsiveness and leads to the perception of slowness.

Exam trap

CompTIA often tests the misconception that peripheral issues (like monitor size or battery status) are the primary cause of system slowness, when in fact resource contention from concurrent processes is the most common culprit.

How to eliminate wrong answers

Option B is wrong because monitor size affects display real estate and resolution, not the processing speed or resource availability of the computer. Option C is wrong because an unresponsive keyboard is an input device issue that prevents typing but does not impact overall system performance or CPU/RAM utilization. Option D is wrong because low mouse batteries cause intermittent cursor movement or failure, but they have no effect on the computer's computational throughput or memory management.

299
MCQhard

A hospital's IT team manages a virtualized server hosting a patient records database. The server has one physical processor with 6 cores, 32 GB of RAM, and a RAID 5 array of three 1 TB HDDs. The virtual machine (VM) running the database is configured with 2 vCPUs, 8 GB RAM, and a 500 GB virtual disk stored on the RAID array. Users report that database queries are taking much longer than usual. The host server shows CPU utilization at 20%, memory at 60%, and the disk queue length frequently stays above 5. Which of the following is the most likely cause of the performance issue?

A.Disk I/O bottleneck
B.Network bandwidth limitation
C.Insufficient memory
D.Insufficient CPU resources
AnswerA

A high disk queue length indicates that the storage subsystem is overloaded, causing slow response times.

Why this answer

The disk queue length consistently exceeding 5 indicates that I/O requests are waiting for the storage subsystem, which is a classic sign of a disk I/O bottleneck. The RAID 5 array of three 1 TB HDDs provides limited IOPS compared to SSDs, and the single virtual disk on this array cannot keep up with the database workload. Even though CPU and memory utilization are moderate, the high queue length shows the disks are the limiting factor.

Exam trap

CompTIA often tests the misconception that high disk queue length is always caused by insufficient memory, but here memory is adequate and the queue is due to slow HDDs in RAID 5, not paging.

How to eliminate wrong answers

Option B is wrong because network bandwidth limitation would manifest as slow data transfer between clients and the server, not as high disk queue length on the host. Option C is wrong because memory utilization at 60% (with 32 GB total) is not critically low, and insufficient memory would cause paging or swapping, not a persistently high disk queue length. Option D is wrong because CPU utilization at 20% is well below saturation, and 2 vCPUs on a 6-core host are not overloaded; insufficient CPU would show high CPU usage, not a disk queue issue.

300
MCQhard

A system administrator needs to automatically assign IP addresses to devices on the network. Which protocol should be configured on the server?

A.DNS
B.ICMP
C.ARP
D.DHCP
AnswerD

DHCP dynamically assigns IP addresses to clients.

Why this answer

The Dynamic Host Configuration Protocol (DHCP) is the correct protocol because it is specifically designed to automatically assign IP addresses and other network configuration parameters (such as subnet mask, default gateway, and DNS servers) to devices on a network. A DHCP server maintains a pool of available addresses and leases them to clients, eliminating the need for manual static IP configuration.

Exam trap

The trap here is that candidates often confuse DNS with DHCP because both are 'automatic configuration' services, but DNS only resolves names, while DHCP is the protocol that actually hands out IP addresses.

How to eliminate wrong answers

Option A (DNS) is wrong because the Domain Name System resolves human-readable domain names (e.g., www.example.com) to IP addresses; it does not assign IP addresses to devices. Option B (ICMP) is wrong because the Internet Control Message Protocol is used for diagnostic and error-reporting purposes (e.g., ping, traceroute) and has no role in IP address assignment. Option C (ARP) is wrong because the Address Resolution Protocol maps a known IP address to a corresponding MAC address on a local network segment; it does not assign or distribute IP addresses.

Page 3

Page 4 of 7

Page 5

All pages