Exam C Flashcards
CompTIA A+ 220-1102 Exam Criteria (43 cards)
A Windows administrator would like to query the local DNS server to view the IP address for www.professormesser.com. Use a command line utility to view this information
C:\nslookup www.professormesser.com.au
Linux Command - mv
Rename a directory
The mv (move) command is used to “move” a file from one location to another,
or from one name to another.
Linux command - pwd
Display the current working directory path
The pwd (Print Working Directory) command will display the current working directory path.
Linux Command - chmod
Make a file read-only
The chmod (Change Mode) command allows the user to change the access (mode) of a file to read, write, execute, or a combination of those permissions.
Linux Command - man
View the documentation for a command
The man (manual) command is used to view documentation for a Linux command or utility
Linux Command - cat
Combine two files into a single document
The cat (concatenate) utility is used to link files together in a series. This can be used to view multiple files to the screen or to save multiple files into one single large file.
Linux Command -chown
Modify the owner of a file
The chown (Change Owner) command is used to modify the file owner or group owner assignment.
Linux command- Sudo
Run a program with elevated permissions
. A user has contacted the help desk because they are not able to browse any websites. The technician suspects a fault with the server that converts fully qualified domain names to IP addresses. What command line would confirm connectivity to this server?
C:>ping 9.9.9.9
The device that converts between fully qualified domain names and IP addresses is the DNS (Domain Name System) server. The nslookup results show the configured DNS server is located at 9.9.9.9, and the ping command is the easiest way to confirm the connectivity of the device.
Linux file system?
The ext4 file system (Fourth extended file system) is commonly associated with Linux and the Android operating systems.
Flash drives file system?
exFAT (Extended File Allocation Table) is a Microsoft file system designed for USB flash drives and similar removable flash storage
Windows file system?
The Windows operating system runs optimally using the NTFS (NT File System), and most Windows devices will be configured with NTFS by default.
macOS file system?
The APFS (Apple File System) is optimized for solid-state storage devices and include support for encryption, snapshots, and increased data integrity.
Describe User Account and its function?
The User Accounts applet is used to modify user rights, passwords, certificate
information, and more
Describe File ExplorerOptions and its function?
Disable indexing of system directories
The Windows 10 File Explorer Options control the general operation of File Explorer, the file viewing options, and search engine configurations.
Describe Indexing options and its functions?
Customize the search process
The Indexing Options can speed up the search process by customizing specific folders and locations to be indexed.
Describe Device manager and its functions?
Disable a USB audio controller
Device Manager is the central management view of all hardware and devices connected to the system. All device drivers can be enabled and disabled from the Device Manager applet.
A technician has been called to resolve an issue with a desktop computer in a training facility. The computer appears to boot properly to the desktop, but applications take five minutes to load. While using the application, pop-up messages and other windows appear on the desktop. Which of the following should be the best NEXT troubleshooting step?
❍ A. View running processes in Task Manager
❍ B. Disable System Restore
❍ C. Remove the computer from the network
❍ D. Educate the end user
The Answer: C. Remove the computer from the network
The first step after identifying a potential malware infection is to
quarantine the system to prevent the unintended spread of the malware.
. A system administrator would like to remove the TFTP Client in
Windows 10. Which of the following Control Panel options would be the BEST choice for this task?
❍ A. Programs and Features
❍ B. Services
❍ C. Network and Sharing Center
❍ D. File Explorer options
The Answer: A. Programs and Features
The Programs and Features option of the Control Panel is used to view and manage installed applications, or to enable or disable individual Windows features.
A system administrator is planning to upgrade two physical servers in the corporate data center to external cloud-based platforms. Which of the following would provide information on connectivity and the plans for remote site access?
❍ A. Change scope
❍ B. End-user acceptance
❍ C. Backout plan
❍ D. Risk analysis
The Answer: A. Change scope
When making a change, the details of the modifications must be well documented as part of the change scope. The change scope would include all of the systems affected by the change, the timeframe for completing the change, and any other important details about the modification.
A user has just installed a driver update from a laptop manufacturer. After restarting, their system shows a Windows Stop Error before the login prompt is displayed. Each subsequent reboot causes the same error to be displayed.
Which of the following should the system administrator follow
to BEST resolve this issue?
❍ A. Modify the BIOS boot order
❍ B. Boot to Safe Mode and perform a Windows Reset
❍ C. Perform a System Restore
❍ D. Reinstall the patch files
The Answer: C. Perform a System Restore
A System Restore can be launched from the Advanced Boot Options under Repair Your Computer. From there, you can select an existing restore point that will restore the computer to a previous configuration.
The available storage space on a user’s workstation is running low, and some updates are failing due to insufficient drive space. Which of the following would be the BEST way to increase drive space until a larger storage drive can be installed?
❍ A. Use a Guest login
❍ B. Enable System Protection
❍ C. Disable the internal Ethernet interface
❍ D. Set the paging file size to zero
The Answer: D. Set the paging file size to zero
The paging file is used with your system RAM to keep the applications performing at peak efficiency. Although disabling the paging file may affect the performance of a computer, it will free up all of the storage space that’s normally reserved for the swap file.
An attacker has gained access to a password hash file. Which of the following will the attacker use to obtain the passwords?
❍ A. DoS
❍ B. Decryption
❍ C. Brute force
❍ D. Phishing
The Answer: C. Brute force
Since a hash is a one-way cryptographic method, the only way to
determine the original plaintext is to try every possible
combination until the hash is matched. This brute force method is the only way to determine the original source of the hash.
A server administrator needs to create a folder on a Windows server to store weekly status report documents. Which of the following commandline tools would provide this functionality?
❍ A. md
❍ B. net use
❍ C. cd
❍ D. dir
❍ E. ls
The Answer: A. md
The md (Make Directory) command is used to create a subdirectory or folder on the file system.