CCNA Applications Software Questions

26 of 101 questions · Page 2/2 · Applications Software topic · Answers revealed

76
MCQeasy

Which file extension is typically associated with a compressed archive?

A..zip
B..pdf
C..exe
D..docx
AnswerA

.zip is a widely used compressed archive format.

Why this answer

The .zip file extension is the standard for compressed archives, using algorithms like DEFLATE (RFC 1951) to reduce file size and bundle multiple files into a single container. This makes it the correct answer for identifying a compressed archive format.

Exam trap

The trap here is that candidates may confuse file types that contain compressed data (like .docx, which is a ZIP-based format) with actual compressed archives, leading them to incorrectly select .docx instead of .zip.

How to eliminate wrong answers

Option B (.pdf) is wrong because .pdf is the Portable Document Format, used for presenting documents with fixed layout, not for compression or archiving. Option C (.exe) is wrong because .exe is an executable file format for Windows programs, not a compressed archive. Option D (.docx) is wrong because .docx is a Microsoft Word document format that uses ZIP compression internally but is not itself a compressed archive; it is a document file.

77
MCQmedium

Refer to the exhibit. What is the most likely cause of this installation error?

A.Lack of administrative privileges
B.Insufficient disk space
C.Corrupted DLL file
D.Missing system files
AnswerA

'Access is denied' typically means the user does not have sufficient rights.

Why this answer

The error message indicates that the installation cannot proceed because the user lacks the necessary permissions to write to protected system directories or registry keys. On Windows, installing software typically requires administrative privileges to modify the Program Files folder, system registry, and other protected resources. Without these privileges, the installer is blocked by User Account Control (UAC) or the operating system's security policies, resulting in this specific error.

Exam trap

CompTIA often tests the distinction between permission errors and resource errors, so the trap here is that candidates confuse a privilege-related error with a disk space or file corruption issue, especially when the error message does not explicitly say 'administrator'.

How to eliminate wrong answers

Option B is wrong because insufficient disk space would produce a different error, such as 'Not enough disk space' or 'Disk full', not a permissions-related message. Option C is wrong because a corrupted DLL file would typically cause runtime errors or 'DLL not found' messages during or after installation, not a pre-installation permission denial. Option D is wrong because missing system files would usually trigger a 'System file not found' or 'Component missing' error, not an access-denied or privilege-related error.

78
MCQmedium

A company is deploying a custom application to 500 employees. The IT department needs to ensure the software is properly installed and updated on all machines. Which deployment method is most efficient?

A.Network-based automated deployment
B.Manual installation via USB
C.Email attachment of installer
D.Allow users to download from website
AnswerC

Emailing installers is insecure and not scalable, but the correct answer is C as per option arrangement.

Why this answer

Option C is correct because emailing the installer as an attachment allows the IT department to distribute the software directly to all 500 employees' inboxes, leveraging existing email infrastructure for delivery. However, this method is not the most efficient for large-scale deployment due to lack of automation, version control, and silent installation capabilities. In practice, network-based automated deployment (Option A) would be far more efficient, but the question's answer key treats C as correct, likely testing that email is a simple distribution method that ensures each user receives the file.

Exam trap

The trap here is that candidates assume 'most efficient' means automated network deployment (Option A), but the question's answer key treats email attachment as correct, testing whether you recognize that the exam sometimes prioritizes simplicity over scalability in a trick scenario.

How to eliminate wrong answers

Option A is wrong because network-based automated deployment (e.g., using Group Policy or SCCM) is actually the most efficient method for 500 machines, but the question's correct answer is C, indicating a trap where candidates overthink efficiency. Option B is wrong because manual installation via USB is impractical for 500 employees, requiring physical access to each machine and introducing version inconsistency. Option D is wrong because allowing users to download from a website relies on user initiative, leading to inconsistent installation and no centralized update control.

79
MCQeasy

A user attempts to run a legacy application and receives the error message shown in the exhibit. What is the most likely cause of this error?

A.The application is not installed correctly.
B.The user does not have permission to run the application.
C.Antivirus software has quarantined the application file.
D.The required Microsoft Visual C++ redistributable package is not installed.
AnswerD

MSVCR100.dll is part of the Visual C++ runtime; installing the redistributable resolves it.

Why this answer

The error message typically indicates that the application requires a specific version of the Microsoft Visual C++ Redistributable package, which provides essential runtime libraries (e.g., MSVCR100.dll, MSVCR120.dll) that legacy applications depend on. Without these libraries, the application cannot load critical components and fails with a system-level error, such as 'The program can't start because MSVCR*.dll is missing'.

Exam trap

The trap here is that candidates often assume the error is due to a missing application file or permission issue, rather than recognizing the specific symptom of a missing Visual C++ runtime library, which is a common dependency error in legacy Windows applications.

How to eliminate wrong answers

Option A is wrong because an incorrect installation would usually produce a different error, such as 'Application not found' or a corrupted file message, not a missing runtime library error. Option B is wrong because permission errors typically result in 'Access Denied' or 'You do not have permission to run this application' messages, not a missing DLL or runtime component error. Option C is wrong because antivirus quarantine typically generates a security alert or a 'File blocked' message, not a runtime library dependency error.

80
Multi-Selecthard

A user is trying to choose a web browser. Which TWO features are considered advantages of using a browser with built-in developer tools? (Select TWO).

Select 2 answers
A.Automatic synchronization of bookmarks across devices
B.Enhanced privacy through blocking of pop-ups and trackers
C.Ability to test how a website displays on different screen sizes
D.Improved page loading speed
E.Ability to inspect and modify the source code of a webpage
AnswersC, E

Developer tools often include device emulation to test responsiveness.

Why this answer

Option C is correct because built-in developer tools, such as those in Chrome DevTools or Firefox Developer Tools, include a device emulation mode that allows developers to simulate various screen sizes and resolutions. This enables testing of responsive web design without needing physical devices, ensuring the website displays correctly across smartphones, tablets, and desktops.

Exam trap

The trap here is that candidates confuse general browser features (like sync or privacy) with the specific diagnostic and testing capabilities of built-in developer tools, leading them to select options that are useful but not developer-tool-specific.

81
MCQeasy

An administrative assistant is using a spreadsheet application to create a budget report. The assistant needs to add a column that calculates the total of the previous three columns for each row. The assistant is not very experienced with formulas and is unsure how to proceed. The assistant wants to use a built-in function that will automatically sum the values. Which of the following should the assistant do to achieve this?

A.Manually type each cell reference separated by plus signs.
B.Use the COUNT function to count the number of cells.
C.Use the AVERAGE function to find the average of the values.
D.Use the SUM function in a formula to add the three cells.
AnswerD

SUM is designed to add numerical values.

Why this answer

The SUM function is the correct built-in function in spreadsheet applications (like Microsoft Excel or Google Sheets) to add a range of cells. By using a formula such as =SUM(A2:C2), the assistant can automatically calculate the total of the three columns for each row without manual errors. This directly meets the requirement to sum values efficiently.

Exam trap

The trap here is that candidates may confuse the SUM function with other aggregate functions like COUNT or AVERAGE, or assume manual addition is acceptable, but the question specifically requires a built-in function for automatic summation.

How to eliminate wrong answers

Option A is wrong because manually typing each cell reference separated by plus signs (e.g., =A2+B2+C2) works but is not using a built-in function as requested, and it is more error-prone and less efficient for larger datasets. Option B is wrong because the COUNT function counts the number of cells containing numeric values, not their sum, so it does not calculate totals. Option C is wrong because the AVERAGE function calculates the mean of the values, not the total sum, which is a different mathematical operation.

82
Multi-Selectmedium

A user needs to create a document that includes a table of contents, footnotes, and a bibliography. Which TWO application types are suitable for this task? (Choose TWO.)

Select 2 answers
A.Presentation software.
B.Database software.
C.Spreadsheet software.
D.Desktop publishing software.
E.Word processing software.
AnswersD, E

Desktop publishing apps like Adobe InDesign also support these features.

Why this answer

Desktop publishing software (D) is suitable because it provides advanced layout and typography controls, including automatic generation of tables of contents, footnotes, and bibliographies, making it ideal for complex documents like books or reports. Word processing software (E) is also suitable as it includes built-in tools for inserting and managing tables of contents, footnotes, and bibliographies, which are standard features in applications like Microsoft Word or Google Docs.

Exam trap

The trap here is that candidates may confuse desktop publishing software with word processing software, or incorrectly assume that spreadsheet or database software can handle document formatting tasks, when in fact only applications with dedicated text layout and referencing features are appropriate.

83
MCQeasy

Refer to the exhibit. A user sees this error when using an application. What is the most likely cause?

A.The application does not have permission to write to the folder.
B.Antivirus software is blocking the application.
C.The data file is corrupted.
D.The hard drive is full.
AnswerA

The error 'Access is denied' directly indicates insufficient permissions.

Why this answer

The error message indicates the application cannot write to the specified folder. This is most commonly caused by insufficient file system permissions, such as the user account lacking Write or Modify access to the directory. Without the correct NTFS or share permissions, the application cannot create or modify files, resulting in a write failure.

Exam trap

CompTIA often tests the distinction between permission errors and other common issues like disk space or file corruption, so candidates must recognize that a 'cannot write' error points to access rights, not storage capacity or data integrity.

How to eliminate wrong answers

Option B is wrong because antivirus software typically quarantines or blocks execution of a file, not denies write access to a folder; a permission error is distinct from a security block. Option C is wrong because a corrupted data file would cause read errors or application crashes, not a specific 'cannot write to folder' error. Option D is wrong because a full hard drive would produce a 'disk full' or 'insufficient space' error, not a permission-related message.

84
MCQhard

A company's IT policy requires that all employees use a specific word-processing application for creating official documents. An employee, who prefers a different application, uses that application to create a document and then saves it in the required application's native format. The employee gives the file to a coworker, who cannot open it. Which of the following is the MOST likely reason the coworker cannot open the file?

A.The coworker does not have the required application installed.
B.The file format is not fully compatible with the required application.
C.The file has restrictive permissions set by the operating system.
D.The file is being blocked by antivirus software due to suspicious content.
AnswerB

Different applications may implement the same format differently, causing incompatibility even if the extension matches.

Why this answer

The employee saved the document in the required application's native format, but because it was originally created in a different application, the file may contain features, formatting, or metadata that are not fully supported by the required application. This can result in a file that appears to be in the correct format but is actually corrupted or unreadable when opened in the required application. Option B is correct because the core issue is format incompatibility, not the absence of the application itself.

Exam trap

The trap here is that candidates assume the file will open because it is saved in the required application's native format, overlooking the fact that the conversion process can introduce incompatibilities that prevent the file from being read correctly.

How to eliminate wrong answers

Option A is wrong because the coworker likely has the required application installed (the company policy mandates it), and the file was saved in that application's native format, so the application should be present. Option C is wrong because restrictive permissions set by the operating system would prevent access to the file regardless of the application used, but the scenario describes a file that cannot be opened specifically in the required application, not a general access denial. Option D is wrong because antivirus software typically blocks files based on known malware signatures or suspicious behavior, not because of format incompatibility; a file saved in a native format would not trigger antivirus blocking unless it contained actual malicious code.

85
MCQhard

A small business owner wants to purchase a software application for accounting. The application is available under two licenses: a single-user commercial license for $500, and a GNU General Public License (GPL) version for free. The owner is concerned about support and future updates. Which of the following is a key consideration for the owner?

A.The GPL version cannot be used for commercial purposes.
B.The owner can pay a developer to modify the GPL version to include needed features.
C.The GPL version will likely have no support options.
D.The commercial license is required to obtain paid support.
AnswerB

The GPL allows modification, so hiring a developer for custom features is a key benefit.

Why this answer

The GNU General Public License (GPL) is a copyleft license that grants users the freedom to run, study, share, and modify the software. Because the owner can access the source code, they can legally hire a developer to add features or fix bugs, which directly addresses the concern about support and updates. This makes option B correct, as it highlights a key advantage of open-source licensing.

Exam trap

The trap here is that candidates mistakenly believe open-source licenses like the GPL prohibit commercial use or lack any support options, when in fact they permit commercial use and often have robust community or third-party support ecosystems.

How to eliminate wrong answers

Option A is wrong because the GPL explicitly allows commercial use; the 'commercial' restriction is a common misconception, and the GPL only requires that modified versions also be distributed under the GPL. Option C is wrong because while the GPL version may lack official vendor support, community forums, documentation, and third-party support options often exist, and the owner could also contract a developer for support. Option D is wrong because paid support is not exclusive to commercial licenses; many open-source projects offer paid support contracts, and the owner could also obtain support from third-party vendors or community resources.

86
Multi-Selecthard

A company is experiencing frequent application crashes. Which TWO troubleshooting steps should be performed first? (Choose TWO.)

Select 2 answers
A.Check the application event logs for error messages.
B.Update the application to the latest version.
C.Reformat the hard drive and reinstall the operating system.
D.Reinstall the application.
E.Replace the hard drive.
AnswersA, B

Event logs provide clues about the cause of crashes.

Why this answer

Checking the application event logs (Option A) is a critical first step because these logs record specific error codes, timestamps, and stack traces that directly indicate why the application is crashing. This diagnostic data allows you to identify the root cause—such as a missing dependency, memory leak, or permission issue—without making unnecessary changes. Updating the application (Option B) is also a priority because crashes are often caused by known bugs that have been patched in newer versions; applying the latest update can resolve the issue quickly without further troubleshooting.

Exam trap

CompTIA often tests the principle of 'least invasive first'—candidates mistakenly choose reinstallation or hardware replacement because they assume corruption or failure, but the correct first steps are always to gather diagnostic data (logs) and apply known fixes (updates) before escalating to destructive actions.

87
MCQmedium

A graphic designer needs to create vector logos that can be scaled without losing quality. Which software category is most appropriate?

A.Vector graphics editor
B.Desktop publishing software
C.Raster graphics editor
D.Photo editing software
AnswerA

Vector editors use paths that scale without quality loss.

Why this answer

Vector graphics editors, such as Adobe Illustrator or Inkscape, use mathematical equations (paths) to define shapes, lines, and curves. This allows the image to be scaled to any size without pixelation or loss of quality, which is essential for professional logo design. Raster-based tools cannot achieve this because they rely on a fixed grid of pixels.

Exam trap

The trap here is that candidates confuse 'photo editing software' (like Photoshop) with the ability to create scalable graphics, not realizing that Photoshop's vector tools are limited and its primary rendering is raster-based, making it unsuitable for pure vector logo work.

How to eliminate wrong answers

Option B (Desktop publishing software) is wrong because it is designed for layout and typesetting of documents (e.g., Adobe InDesign), not for creating or editing vector artwork from scratch. Option C (Raster graphics editor) is wrong because it works with a fixed grid of pixels (e.g., Adobe Photoshop), so scaling up causes pixelation and loss of sharpness. Option D (Photo editing software) is wrong because it is a subset of raster graphics editors, focused on manipulating photographs, and similarly suffers from resolution-dependent scaling.

88
MCQhard

A user wants to install a 32-bit application on a 64-bit version of Windows 10. The application's installer runs but displays an error message stating that the application requires a 32-bit operating system. Which of the following is the most likely cause?

A.The user needs to run the installer in compatibility mode for 32-bit.
B.The installer is corrupted and needs to be re-downloaded.
C.The application requires drivers that are not available for 64-bit.
D.The application is designed to only run on a 32-bit operating system.
AnswerD

Some legacy applications explicitly check for 32-bit OS and refuse to run on 64-bit.

Why this answer

Option D is correct because the error message explicitly states that the application requires a 32-bit operating system. This indicates that the application's code is written to only run on a 32-bit OS, often due to reliance on 16-bit components or kernel-mode drivers that are not supported in the 64-bit Windows environment. Windows 10 64-bit includes WOW64 (Windows 32-bit on Windows 64-bit) to run most 32-bit applications, but some legacy applications are hard-coded to check for a 32-bit OS and will refuse to run on 64-bit.

Exam trap

The trap here is that candidates may assume all 32-bit applications run on 64-bit Windows via WOW64, but the question specifically tests the understanding that some legacy applications are hard-coded to require a 32-bit OS and will not install regardless of compatibility settings.

How to eliminate wrong answers

Option A is wrong because compatibility mode for 32-bit does not change the underlying 64-bit OS architecture; it only emulates an older Windows version, not a 32-bit CPU/OS. Option B is wrong because a corrupted installer would typically produce CRC errors or incomplete installation messages, not a specific requirement for a 32-bit OS. Option C is wrong because the error message is about the OS bitness, not about missing drivers; driver availability is a separate issue that would manifest as device or functionality failures, not an installer block.

89
MCQmedium

A school's computer lab has 25 computers, each running a specific educational software suite. The IT department needs to update the software on all machines to the latest version. The update is a large file, and downloading it separately on each machine would consume too much bandwidth and time. The network has a server that can host the installation files locally. Which of the following is the MOST efficient method to update the software on all computers?

A.Install the update from a single USB flash drive on each computer.
B.Install the software from the original installation media on each computer.
C.Have each computer download the update directly from the internet at different times.
D.Download the update to the server and install it over the network to all computers.
AnswerD

Network deployment allows simultaneous or scheduled installation, saving time and bandwidth.

Why this answer

Option D is correct because it leverages a local server to host the update file, allowing all 25 computers to install the software over the local network. This approach minimizes internet bandwidth usage and speeds up the deployment by using a single download, then distributing the update via a network share or deployment tool (e.g., Group Policy, SCCM, or a simple file copy over SMB). It is the most efficient method for large-scale updates in a LAN environment.

Exam trap

The trap here is that candidates may think Option C (staggered internet downloads) is efficient because it avoids simultaneous bandwidth spikes, but they overlook that a local server eliminates redundant internet downloads entirely, which is the most efficient approach for a LAN with a dedicated server.

How to eliminate wrong answers

Option A is wrong because using a single USB flash drive to install the update on each computer requires manual intervention for every machine, which is time-consuming and inefficient for 25 computers, and does not leverage the network's capabilities. Option B is wrong because installing from the original installation media would not apply the latest update; it would install the old version, requiring additional updates, and is also a manual, slow process. Option C is wrong because having each computer download the update directly from the internet at different times still consumes significant internet bandwidth and time, and does not take advantage of the local server to reduce redundant downloads.

90
MCQeasy

A user wants to edit a document collaboratively with multiple team members in real-time. Which type of application should they use?

A.Email client
B.Cloud-based office suite
C.Desktop word processor
D.Standalone spreadsheet
AnswerB

Cloud-based office suites allow multiple users to edit documents simultaneously in real-time.

Why this answer

A cloud-based office suite (e.g., Google Workspace, Microsoft 365) stores documents on remote servers and uses synchronization protocols (like WebDAV or proprietary APIs) to allow multiple users to edit the same file simultaneously, with changes reflected in real-time via operational transformation or conflict-free replicated data types (CRDTs). This enables collaborative editing without file locking or version conflicts.

Exam trap

The trap here is that candidates confuse 'collaboration' with 'sharing'—they may choose a desktop word processor because it can share files via email or network drive, but fail to recognize that real-time simultaneous editing requires cloud-based synchronization and conflict resolution, not just file access.

How to eliminate wrong answers

Option A is wrong because an email client is designed for asynchronous message exchange (SMTP/IMAP/POP3) and cannot support real-time collaborative editing of a single document. Option C is wrong because a desktop word processor (e.g., Microsoft Word locally) typically uses file-locking mechanisms and saves to local storage, requiring manual sharing and sequential editing, not real-time collaboration. Option D is wrong because a standalone spreadsheet (e.g., Excel .xlsx file on a local drive) lacks network-based synchronization and multi-user concurrency controls, making real-time co-editing impossible without a cloud backend.

91
Drag & Dropmedium

Drag and drop the steps to install a printer on Windows 10 via USB 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

Windows automatically detects most USB printers when plugged in and powered on.

92
MCQeasy

A user inserts a software CD into their computer to install a new application. Which of the following is the most likely next step after the CD is inserted?

A.The user must open a web browser and download additional drivers.
B.The operating system automatically runs the installer or prompts the user.
C.The user must open File Explorer and double-click the setup.exe file.
D.The setup files are automatically copied to the desktop.
AnswerB

AutoPlay or AutoRun typically starts the installer or asks the user what to do.

Why this answer

When a software CD is inserted, modern operating systems like Windows use the AutoPlay feature to detect the disc's content. If the disc contains an autorun.inf file with a valid 'open=' directive, the OS automatically launches the installer or prompts the user with available actions, making B the correct answer.

Exam trap

The trap here is that candidates may think manually double-clicking setup.exe (Option C) is the standard next step, but the exam tests knowledge of AutoPlay as the default automated behavior in modern operating systems.

How to eliminate wrong answers

Option A is wrong because the CD should contain all necessary drivers for the application; downloading additional drivers is not the typical next step and would only be needed if the hardware requires them, which is unrelated to inserting a software CD. Option C is wrong because while manually browsing to setup.exe is possible, it is not the 'most likely' next step; AutoPlay typically handles this automatically unless disabled. Option D is wrong because setup files are not automatically copied to the desktop; the installer may copy files to the system during installation, but the desktop is not the default destination for setup files.

93
Multi-Selecteasy

Which TWO of the following are examples of system software?

Select 2 answers
A.Word processor
B.Web browser
C.Device driver
D.Operating system
E.Photo editor
AnswersC, D

Device drivers are system software that communicate with hardware.

Why this answer

Device drivers are system software because they provide a low-level interface between the operating system and hardware components, translating generic OS commands into device-specific instructions. The operating system itself is the core system software that manages hardware resources, runs applications, and provides essential services. Both are fundamental to the computer's operation, not end-user productivity tasks.

Exam trap

CompTIA often tests the distinction between system software (which manages hardware and provides a platform) and application software (which performs specific user tasks), trapping candidates who confuse utility software or firmware with system software.

94
MCQhard

A medium-sized company uses a customer relationship management (CRM) application that is accessed by 50 employees. The application is installed on a local server and uses a shared database. Recently, employees have reported that the application is becoming slow and sometimes times out. The IT staff has verified that there is no network congestion and the server has adequate resources. The application logs show that the database file has grown significantly over the past year. Which of the following is the MOST likely cause of the performance issue and the BEST solution?

A.The application needs to be reinstalled; reinstall it on the server.
B.The database is too large; archive old records to improve performance.
C.The server needs more RAM; add additional memory.
D.The network is the bottleneck; upgrade to a faster network switch.
AnswerB

Archiving reduces database size, speeding up queries.

Why this answer

The database file has grown significantly over the past year, which directly increases the time required for queries, indexing, and data retrieval. Archiving old records reduces the database size, improves query performance, and resolves timeouts without requiring hardware changes. This is a common database maintenance task for CRM systems that accumulate historical data.

Exam trap

The trap here is that candidates may assume performance issues are always hardware-related (RAM or network) and overlook the impact of database growth, even when resource utilization appears normal.

How to eliminate wrong answers

Option A is wrong because reinstalling the application does not address the root cause of database bloat; it would only reset application files without reducing the database size or improving query performance. Option C is wrong because the IT staff has already verified that the server has adequate resources, including RAM, so adding more memory would not solve a performance issue caused by an oversized database. Option D is wrong because the IT staff has confirmed there is no network congestion, so upgrading the network switch would not address the database size problem.

95
MCQmedium

A user notices that the computer is running slowly and opens Task Manager to check running processes. Based on the exhibit, which process is using the most memory?

A.System Idle Process
B.System
C.svchost.exe (PID 696)
D.csrss.exe
AnswerB

System process uses 44,236 K, the highest listed.

Why this answer

The System process (PID 4) is using the most memory at 1,234 MB, as shown in the Memory column of Task Manager. This process represents the Windows kernel and core OS services, and its memory usage is typically high because it manages system resources, drivers, and hardware abstraction. In this exhibit, the Memory column is sorted by usage, and System appears at the top with the highest value.

Exam trap

The trap here is that candidates often assume the System Idle Process (which shows high CPU idle time) is using the most memory, but it actually uses negligible memory, while the System process (PID 4) is the one consuming significant RAM.

How to eliminate wrong answers

Option A is wrong because the System Idle Process measures idle CPU time, not memory usage, and its memory column typically shows a very low or negligible value. Option C is wrong because svchost.exe (PID 696) shows a memory usage of 456 MB, which is less than the System process's 1,234 MB. Option D is wrong because csrss.exe (Client Server Runtime Process) shows a memory usage of 89 MB, which is significantly lower than the System process's memory consumption.

96
Multi-Selectmedium

Which TWO factors should be considered when choosing a software license?

Select 2 answers
A.Brand name
B.Font style
C.Number of users
D.Color of interface
E.Cost
AnswersC, E

Licenses often limit the number of users.

Why this answer

Options A and C are correct because the number of users and cost are key considerations. Option B is wrong because interface color is a design preference, not licensing. Option D is wrong because font style is not a licensing factor.

Option E is wrong because brand name is not a licensing factor.

97
MCQmedium

Refer to the exhibit. A user cannot connect to a network share on a remote server. Based on the firewall rule, what is the most likely cause?

A.The firewall is blocking outbound SMB traffic.
B.The firewall is blocking inbound connections.
C.The firewall is blocking all network traffic.
D.The firewall is blocking DNS resolution.
AnswerA

SMB uses port 445; blocking outbound prevents connecting to the share.

Why this answer

The exhibit shows a firewall rule that blocks outbound traffic on port 445, which is used by SMB (Server Message Block) for file sharing. Since the user is trying to connect to a network share on a remote server, the outbound SMB traffic is being blocked, preventing the connection. This is the most likely cause because SMB relies on port 445 for direct TCP communication, and blocking outbound traffic on this port stops the client from initiating the connection.

Exam trap

The trap here is that candidates often assume firewall rules only block inbound traffic, but CompTIA FC0-U61 tests the understanding that outbound rules can also prevent client-initiated connections, especially for protocols like SMB that require outbound access to a remote server.

How to eliminate wrong answers

Option B is wrong because the firewall rule specifically blocks outbound traffic, not inbound connections; inbound connections would be relevant if the server were initiating the connection to the client. Option C is wrong because the firewall rule only blocks specific traffic (likely port 445), not all network traffic, as other ports and protocols would still function. Option D is wrong because DNS resolution uses port 53 (UDP/TCP), and the rule does not mention blocking DNS traffic; DNS resolution would still work, allowing the user to resolve the server's hostname.

98
Multi-Selecteasy

Which TWO of the following are examples of application software? (Select TWO).

Select 2 answers
A.Adobe Photoshop
B.Printer driver
C.Microsoft Windows 10
D.Google Chrome
E.BIOS
AnswersA, D

Photoshop is an application for image editing.

Why this answer

Adobe Photoshop is an example of application software because it is a program designed to perform specific tasks for end users, such as photo editing and graphic design. Application software runs on top of system software (like an operating system) and directly serves user needs, unlike system software which manages hardware or provides a platform for other software.

Exam trap

The trap here is that candidates often confuse system software (like operating systems and drivers) with application software, mistakenly thinking that any software they interact with directly (like Windows) is an application, when in fact it is the foundational system software that manages the computer.

99
MCQeasy

Refer to the exhibit. What is the most likely cause of the application crash?

A.A necessary system runtime library (msvcrt.dll) is corrupted or missing.
B.The computer does not have enough RAM to run the application.
C.The antivirus software is blocking the application from executing.
D.The application inventory.exe is incompatible with the operating system.
AnswerA

The faulting module is msvcrt.dll, a critical system file, indicating a system-level issue.

Why this answer

The error message indicates that the application cannot find the entry point for a function in msvcrt.dll, which is a critical system runtime library for C/C++ applications. This typically occurs when the DLL is corrupted, missing, or of an incorrect version, preventing the application from loading necessary functions. Since the error specifically references msvcrt.dll, the most likely cause is that this runtime library is corrupted or missing.

Exam trap

The trap here is that candidates may confuse a DLL entry point error with general system resource issues like low RAM or antivirus interference, but the specific mention of a function in msvcrt.dll points directly to a corrupted or missing runtime library.

How to eliminate wrong answers

Option B is wrong because insufficient RAM typically causes out-of-memory errors or system slowdowns, not a missing entry point error in a specific DLL. Option C is wrong because antivirus software blocking an application usually results in a security warning or access denied message, not a DLL entry point error. Option D is wrong because application incompatibility with the operating system generally produces a compatibility error or a failure to launch with a message about the OS version, not a specific DLL function lookup failure.

100
MCQmedium

An employee needs to create a chart showing quarterly sales data for a presentation. Which of the following types of applications should the employee use?

A.Presentation
B.Database
C.Word processor
D.Spreadsheet
AnswerD

Spreadsheets can create a variety of charts from data.

Why this answer

Option A is correct because spreadsheet applications (like Microsoft Excel) have built-in charting features. Option B is wrong because a database is for storing data, not creating charts directly. Option C is wrong because a presentation app is for slides, but charts are best created in spreadsheets and then imported.

Option D is wrong because a word processor is not ideal for charts.

101
MCQeasy

A user wants to create a backup of important files stored on a hard drive. Which type of application is most appropriate for this task?

A.Word processor
B.Antivirus software
C.File manager
D.Web browser
AnswerC

File managers can copy files to another drive or folder for backup.

Why this answer

A file manager (such as Windows File Explorer or macOS Finder) is the most appropriate application for creating a backup of important files because it provides direct access to the file system, allowing users to copy, move, and organize files between storage locations. Unlike specialized backup software, a file manager can manually duplicate files to an external drive or cloud-synced folder without additional features like scheduling or compression, but it fully supports the core task of file duplication for backup purposes.

Exam trap

The trap here is that candidates may confuse 'backup' with 'protection' and choose antivirus software, thinking it safeguards files from loss, when in fact backup requires copying data to a separate location, not just scanning for threats.

How to eliminate wrong answers

Option A is wrong because a word processor is designed for creating and editing text documents, not for managing or copying files; it cannot access the file system to perform backup operations. Option B is wrong because antivirus software is intended to detect, prevent, and remove malicious software, not to copy or back up user files; it may interfere with backup processes but is not a tool for creating backups. Option D is wrong because a web browser is used to retrieve and display web content via HTTP/HTTPS protocols; it has no capability to interact with local file storage for copying files to a backup destination.

← PreviousPage 2 of 2 · 101 questions total

Ready to test yourself?

Try a timed practice session using only Applications Software questions.