Dion Training CompTIA A+ (220-1102) Core 2 Practice Exam - Results Flashcards
(229 cards)
Which of the following commands is used on a Linux system to copy a file from one directory to another directory?
Explanation
OBJ 1.11 - The cp command is a command-line utility for copying files and directories. It supports moving one or more files or folders with options for taking backups and preserving attributes. Copies of files are independent of the original file, unlike the mv command.
The mv command
is a command-line utility that moves files or directories from one place to another. The mv command supports moving single files, multiple files, and directories. The mv command can prompt before overwriting files and will only move files that are newer than the destination. When the mv command is used, the file is copied to the new directory and removed from the old directory.
The rm command
is a command-line utility for removing files or directories. To remove a file, pass the name of a file or files to the rm command, and those files will be removed immediately from the file system.
The ls command
lists the files or directories in the current path of a Unix, Linux, or Mac operating system. When invoked without any arguments, ls lists the files in the current working directory.
You are troubleshooting a network connectivity issue and need to determine the packet’s flow path from your system to the remote server. Which of the following tools would best help you identify the path between the two systems?
Explanation
OBJ 1.2 - The tracert (trace route) diagnostic utility determines the route to a destination by sending Internet Control Message Protocol (ICMP) echo packets to the destination. In these packets, tracert uses varying IP Time-To-Live (TTL) values. When the TTL on a packet reaches zero (0), the router sends an ICMP “Time Exceeded” message back to the source computer. The ICMP “Time Exceeded” messages that intermediate routers send back show the route.
The ipconfig tool
displays all current TCP/IP network configuration values on a given system.
The netstat tool
is a command-line network utility that displays network connections for Transmission Control Protocol, routing tables, and some network interface and network protocol statistics on a single system.
The nbtstat command
is a diagnostic tool for NetBIOS over TCP/IP used to troubleshoot NetBIOS name resolution problems.
What is the native file system format used by Windows 10 during installation?
Explanation
OBJ 1.8 - The New Technology File System (NTFS) is a proprietary file system developed exclusively for Windows. It provides a 64-bit addressing scheme, allowing for large volumes and file sizes. In theory, the maximum volume size is 16 Exabytes. Still, NTFS’s actual implementations are limited to between 137 GB and 256 Terabytes, depending on the version of Windows and the allocation unit size. It is the default file system used by Windows. NTFS’s only significant drawback is that it is not fully supported by operating systems other than Windows. macOS can read NTFS drives but cannot write to them. Linux distributions and utilities may be able to support NTFS to some degree.
The extensible file allocation table (exFAT)
is a file system optimized for external flash memory storage devices such as USB flash drives and SD cards. exFAT supports a maximum volume size of up to 128 PB with a recommended maximum volume size of 512 TB for the best reliability.
The file allocation table 32-bit (FAT32)
is the 32-bit file system supported by Windows, macOS, and Linux computers. FAT32 can support maximum volume sizes of up to 2 TB and maximum file sizes of up to 4 GB.
The Apple file system (APFS)
is the default file system for Mac computers using macOS 10.13 or later and features strong encryption, space sharing, snapshots, fast directory sizing, and improved file system fundamentals.
Josie in Human Resources was just issued a new laptop by Dion Training. When she plugs the laptop into the network’s wall jack and turns it on, she receives an error message. She calls the service desk to report that the error message being displayed states, “There is an IP address conflict with another system on the network.” You are working as a field service technician and have been asked to resolve this error. What should you do?
Explanation
OBJ 1.6 - This is a common error when two network devices are assigned the same IP address on a network. This occurs most commonly when static IP addresses are used, so the easiest way to avoid this issue is to use DHCP to assign the IP addresses on the network.
Forcing the user to use wireless over wired
may solve the issue temporarily, but this is more of a workaround than a true solution to the error.
randomly choose a new IP and statically assign it to the laptop
It would be best if you didnÕt randomly choose a new IP and statically assign it to the laptop since this will lead to more future conflicts.
remove the desktop computer’s static IP configuration
You shouldnÕt remove the desktop computer’s static IP configuration if the error you received is on the laptop.
You recently moved 1.5 TB of data from your office’s file server to a new 16 TB NAS and decommissioned the old file server. You verified all users had been given the same permissions to the new file shares on the NAS as they had on the old server. The users are receiving an error stating, “Windows cannot access \server10\shared" every time they click the Share drive icon on their desktop. What is MOST likely the source of this error?
Explanation
OBJ 1.6 - Based on the error shown, it appears that the users are still mapped to the old server and not the new NAS. This is a common issue and oversight that occurs when companies migrate from one server to another. Even if every computer has an S:\ (share drive) shown, it is just a link to a network resource (like \server10\shared). If the new server is not named “server10” and is called “server11”, then the mapping needs to be redone to reflect \server11\shared, for example.
Which of the following Windows 10 system utilities would be used to test the functionality of the DirectX subsystem for video and sound-related problems?
Explanation
OBJ 1.3 - The DxDiag (DirectX diagnostic) utility is used to collect info about devices to help troubleshoot problems with DirectX sound and video. It is a diagnostics tool used to test DirectX functionality and troubleshoot video-related or sound-related hardware problems. DirectX diagnostic can save text files with the scan results.
System information (msinfo32.exe)
is a utility that gathers information about your computer and displays a comprehensive list of hardware, system components, and the software environment that can be used to diagnose computer issues.
The event viewer (eventvwr)
shows a log of application and system messages, including errors, information messages, and warnings. It’s a useful tool for troubleshooting all kinds of different Windows problems. If you use the Event Viewer, you can identify what was occurring at or around 2:35 am each day before the server crashed and use this to troubleshoot the problem.
The task scheduler (taskschd)
is a tool included with Windows that allows predefined actions to be automatically executed whenever a certain set of conditions is met. For example, you can schedule a task to run a backup script every night or send you an email whenever a certain system event occurs.
Which command would a Linux user need to enter to change their password?
Explanation
OBJ 1.11 - The passwd command changes passwords for user accounts. A normal user may only change the password for their account, while the superuser may change the password for any user.
The chown command
is used to change the owner of the file, directory, or link in Linux.
The pwd command
displays the present working directory (current directory) path to the terminal or display. If you are working on a Linux system and are unsure of where you are in the directory structure, type “pwd” and hit enter to display the path to the screen.