Advertisement
Guest User

Untitled

a guest
May 23rd, 2018
2,032
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.54 KB | None | 0 0
  1. 1. Question 1
  2. Which of the following is a characteristic of the FAT32 filesystem? Check all that apply.
  3.  
  4.  
  5. It doesn't support files larger than 4GB.
  6.  
  7. Correct
  8. Great job! The FAT32 filesystem is great for cross-platform compatibility, but has lots of limitations that don't make it useful for large data storage.
  9.  
  10.  
  11. It's read and write compatible with Windows, Mac, and Linux OSes.
  12.  
  13. Correct
  14. Great job! The FAT32 filesystem is great for cross-platform compatibility, but has lots of limitations that don't make it useful for large data storage.
  15.  
  16.  
  17. Its filesystem size can't be larger than 32GB.
  18.  
  19. Correct
  20. Great job! The FAT32 filesystem is great for cross-platform compatibility, but has lots of limitations that don't make it useful for large data storage.
  21.  
  22.  
  23. It supports files up to 8GB in size.
  24.  
  25. Un-selected is correct
  26. Question 2
  27. Correct
  28. 1 / 1 points
  29. 2. Question 2
  30. What's the difference between a GPT and MBR partition table? Check all that apply.
  31.  
  32.  
  33. MBR only allows you to have volume sizes of 2TBs or less.
  34.  
  35. Correct
  36. Nice work! MBR has a few legacy traits that are being slowly faded out by GPT.
  37.  
  38.  
  39. MBR is the new standard for partition tables.
  40.  
  41. Un-selected is correct
  42.  
  43. GPT doesn't have a limit to the amount of partitions you can make.
  44.  
  45. Correct
  46. Nice work! MBR has a few legacy traits that are being slowly faded out by GPT.
  47.  
  48.  
  49. GPT allows you to have volume sizes of 2TBs or greater.
  50.  
  51. Correct
  52. Nice work! MBR has a few legacy traits that are being slowly faded out by GPT.
  53.  
  54. Question 3
  55. Correct
  56. 1 / 1 points
  57. 3. Question 3
  58. Before you can store files on a hard drive, which of the following has to be done? Check all that apply.
  59.  
  60.  
  61. Nothing; hard drives can be used to store files out of the box
  62.  
  63. Un-selected is correct
  64.  
  65. Format a filesystem
  66.  
  67. Correct
  68. You got it! Before you can start using a hard drive to store files, you'll need to partition the disk, format a filesystem, then mount the filesystem.
  69.  
  70.  
  71. Partition the disk
  72.  
  73. Correct
  74. You got it! Before you can start using a hard drive to store files, you'll need to partition the disk, format a filesystem, then mount the filesystem.
  75.  
  76.  
  77. Mount the filesystem
  78.  
  79. Correct
  80. You got it! Before you can start using a hard drive to store files, you'll need to partition the disk, format a filesystem, then mount the filesystem.
  81.  
  82. Question 4
  83. Correct
  84. 1 / 1 points
  85. 4. Question 4
  86. You want to format a partition with NTFS, and know that the data you'll be storing will consist mostly of many small files. In order to use as little space as possible, should you choose a larger or smaller Allocation Unit Size during the formatting process?
  87.  
  88.  
  89. Larger allocation unit size
  90.  
  91.  
  92. Smaller allocation unit size
  93.  
  94. Correct
  95. Right on! With a smaller block size, you'll waste less space if your files are small.
  96.  
  97. Question 5
  98. Correct
  99. 1 / 1 points
  100. 5. Question 5
  101. In Linux, what could a device named /dev/sdb2 refer to?
  102.  
  103.  
  104. The first hard drive that was detected on the system
  105.  
  106.  
  107. The second partition of the second hard drive detected on the system
  108.  
  109. Correct
  110. Nice work! Device partitions are denoted by numbers after the device drive.
  111.  
  112.  
  113. The second B hard drive
  114.  
  115.  
  116. The first partition of the second hard drive detected on the system
  117.  
  118. Question 6
  119. Correct
  120. 1 / 1 points
  121. 6. Question 6
  122. True or false: If you want to save space on a Windows computer, deleting the pagefile.sys file is a good idea.
  123.  
  124.  
  125. TRUE
  126.  
  127.  
  128. FALSE
  129.  
  130. Correct
  131. You nailed it! You might free up some space by deleting the pagefile.sys, but this is the location of the swap file in Windows. If you remove it, then your programs will only use RAM memory, which might cause a performance degradation if you run out.
  132.  
  133. Question 7
  134. Correct
  135. 1 / 1 points
  136. 7. Question 7
  137. Which of the following commands in Windows will create a symbolic link called "cauliflower" to a file named "broccoli.txt?"
  138.  
  139.  
  140. mklink cauliflower broccoli.txt
  141.  
  142. Correct
  143. Awesome! The mklink command will, by default, create symbolic links in the form of mklink <link name> <file name>.
  144.  
  145.  
  146. mklink broccoli.txt cauliflower
  147.  
  148.  
  149. mklink /H cauliflower broccoli.txt
  150.  
  151. Question 8
  152. Correct
  153. 1 / 1 points
  154. 8. Question 8
  155. True or false: In modern versions of Windows, it's necessary to periodically run a Disk Defragmentation process manually to keep your disk healthy.
  156.  
  157.  
  158. TRUE
  159.  
  160.  
  161. FALSE
  162.  
  163. Correct
  164. Great job! Nowadays, Windows schedules a task to take care of the defragmentation process in the background automatically for you.
  165.  
  166. Question 9
  167. Correct
  168. 1 / 1 points
  169. 9. Question 9
  170. In Linux, what's the difference between the commands df and du? Check all that apply.
  171.  
  172.  
  173. df is used to find the amount of free space on an entire machine.
  174.  
  175. Correct
  176. Awesome work! The df, or disk free, command is used to find the amount of free space on an entire machine, while the du, or disk usage, command is used to find the disk usage on a specific directory.
  177.  
  178.  
  179. du is used to find the amount of disk usage on a specific directory.
  180.  
  181. Correct
  182. Awesome work! The df, or disk free, command is used to find the amount of free space on an entire machine, while the du, or disk usage, command is used to find the disk usage on a specific directory.
  183.  
  184.  
  185. df is used to delete files in a directory.
  186.  
  187. Un-selected is correct
  188.  
  189. du is used to undelete files in a directory.
  190.  
  191. Un-selected is correct
  192. Question 10
  193. Incorrect
  194. 0 / 1 points
  195. 10. Question 10
  196. In Linux, what's the difference between a hardlink and a softlink? Check all that apply.
  197.  
  198.  
  199. A softlink points to a filename.
  200.  
  201. Correct
  202. Nice job! Softlinks are used to point to filenames, while hardlinks point to inodes.
  203.  
  204.  
  205. A hardlink points to an inode.
  206.  
  207. Correct
  208. Nice job! Softlinks are used to point to filenames, while hardlinks point to inodes.
  209.  
  210.  
  211. A hardlink points to a filename.
  212.  
  213. Un-selected is correct
  214.  
  215. You can view the hardlink count of a file using ls -l.
  216.  
  217. This should be selected
  218. Question 11
  219. Correct
  220. 1 / 1 points
  221. 11. Question 11
  222. Although NTFS is largely a self-healing filesystem, which of the following tools can you run to try to locate and repair serious disk corruption of the C: drive?
  223.  
  224.  
  225. chkdsk /r c:
  226.  
  227. Correct
  228. Right on! The chkdsk utility, combined with the /r flag, will scan the filesystem on the drive supplied (in this case, C:) and attempt to fix any errors it encounters.
  229.  
  230.  
  231. chkdsk c:
  232.  
  233.  
  234. fsck c:
  235.  
  236. Question 12
  237. Incorrect
  238. 0 / 1 points
  239. 12. Question 12
  240. If you want to automatically mount a filesystem on computer startup, what file do you have to modify?
  241.  
  242.  
  243. /etc/fstab
  244.  
  245.  
  246. /dev/sda
  247.  
  248. This should not be selected
  249. Not quite. /dev/sda is the file representing the first SATA hard drive on a Linux system.
  250.  
  251.  
  252. /etc/sudoers
  253.  
  254.  
  255. /etc/group
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement