The assessment test is an excellent way to test yourself before starting to study. It gives you an idea of where you should start and why.
In an assessment test, test your current skills from beginning to advance lever for any subject or topic to check “what do you know and from where you should start learning?”
Here I have put some basic questions for Linux assessment, so you can test your Linux skill and choose right path for Linux Learning.
Questions
1. Which device file could be a serial device?
- /dev/ttyS0
- /dev/ttys0
- /dev/ttySa
- /dev/ttysa
2. Typing fdisk -l /dev/hda on an x86 Linux computer produces a listing of four partitions: /dev/hda1, /dev/hda2, /dev/hda5, and /dev/hda6. Which of the following is true?
- The disk contains two primary partitions and two extended partitions.
- Either /dev/hda1 or /dev/hda2 is an extended partition.
- The partition table is currupted; there should be a /dev/hda3 and a /dev/hda4 before /dev/hda5.
- If you add a /dev/hda3 with fdisk, /dev/hda5 will become /dev/hda6 and /dev/hda6 will become /dev/hda7.
3. What is a common tool for configuring sound cards in Linux?
- soundconfig
- sndconfig
- configsound
- soundconf
4. A new Linux administrator plans to create a systemwith separate /home, /usr/local, and /etc partitions. Which of the following best describes this configuration?
- The system won’t boot because /etc contains configuration file necessary to mount non-root partition.
- The system will boot, but /usr/local won’t be available because mounted partitions must be mounted directly off their parent partition, not in a subdirectory.
- The system will boot only if the /home partition is on separate physicl disk from the /usr/local partition.
- The system will boot and operate correctly, provided each partition is large enough for its intended use.
5. What are common IRQs for serial ports? [Select all that apply.]
- 1
- 3
- 4
- 16
6. Which of the following directories is most likely to be placed on its own hard disk partition?
- /bin
- /sbin
- /mnt
- /home
7. How many devices can be added to an 8-bit SCSI bus, not counting the SCSI host adapter itself?
- 7
- 8
- 15
- 16
8. You discover that an x86 hard disk has partitions with type codes of 0x0f, 0x82, and 0x83. Assuming these type codes are accurate, what can you conclude about the disk?
- The disk hold a partial or complete Linux system.
- The disk holds DOS or Windows 9x/Me and Windows NT/200x/XP installations.
- The disk holds a FreeBSD installation
- The disk is corrupt; those partition type codes are incompatible.
9. What are the highest and lowest priority SCSI IDs on a 16-bit SCSI bus?
- 0 and 15, respectively
- 7 and 8, respectively
- 7 and 0, respectively
- 15 and 0, respectively
10. You run Linux’s fdisk and modify your partition layout. Before exiting from the program though, you realize that you’ve been working on the wrong disk. What can you do to correct this problem?
- Nothing; the damage is done, so you’ll have to recover data from a backup.
- Type w to exit from fdisk without saving changes to disk.
- Type q to exit from fdisk without saving changes to disk
- Type u repeatedly to undo the operations you’ve made in error.
11. Which files contain essential system information such as IRQs, DMA channels and I/O addresses? [Select all that apply.]
- /proc/ioports
- /proc/ioaddresses
- /proc/dma
- /proc/interrupts
12. What does the following command accomplish?
# mkfs -t ext2 /dev/sda4
- It sets the partition table type code for /dev/sda4 to exit2.
- It converts a FAT patition into an ext2fs partition without damaging the partition’s existing files.
- It creates a new ext2 filesystem on /dev/sda4, overwriting any wxisting filesystem and data.
- Nothing ; the -t option isn’t valid, and so it cause mkfs to abort its operation.
13. Where are settings for ISA Plug and Play devices stored for the isapnp command?
- /proc/isa
- /etc/isapnp.conf
- /etc/pnp.conf
- /etc/pnp/isa.conf
14. Which of the following best summarizes the differences between DOS’s FDISK and Linux’s fdisk?
- Linux’s fdisk is a simple clone of DOS’s FDISK but written to work from Linux rather than from DOS or Windows.
- The two are completely independent programs that accomplish similar goals, althrough Linux’s fdisk is more flexible.
- DOS’s FDISK uses GUI controls, wheres Linux’s fdisk uses a command-line interface, but they have similar functionality.
- Despite their similar names, they’re completely different tools-DOS’s FDISK handles disk partitioning, wheres Linux’s fdisk formats floppy disks.
15. You’ve connected two devices to a computer’s USB ports: a USB 1.0 mouse and a USB 2.0 printer. Which USB driver modules are required to use both devices at the best possible speeds?
- The usb1.o and usb2.o modules
- An OHCI or UHCI module
- The usbcore.o module
- An EHCI module
16. What mount point should you associate with swap partitions?
- /
- /swap
- /boot
- None
17. What would be the equivalent RS-232 serial device filename for what Windows would refer to as COM1?
- /dev/ttyS0
- /dev/ttyS1
- /dev/lp0
- /dev/lp1
18. Which of the following correctly describes a difference between LILO and GRUB?
- LILO includes explicit support for FreeBSD kernels; GRUB does not.
- LILO can boot Linux kernels through the 2.4.x series; GRUB is necessary to boot 2.6.x and later kernels.
- You must reinstall LILO to the MBR or partition boot sector after changing its configuration; this is unnecessary with GRUB.
- LILO can chain load another OS’s boot loader, whereas GRUB can boot only Linux kernels.
19. USB device drivers are loaded and unloaded by helper applications. Which application may be used by your Linux system? [Select all that apply.]
- usbmgr
- hotplug
- usbmanager
- deviceloader
20. Where should you install GRUB if your system dual-boots Linux and Windows and you don’t want Windows to wipe out GRUP if you reinstall Windows?
- The MBR of the first hard disk
- /var/grub.conf
- The boot sector of a logical Linux partition
- The boot sector of a primary Linux partition
Answers
1. a
2. b
3. b
4. a
5. b, c
6. d
7. a
8. a
9. b
10. c
11. a, c, d
12. c
13. b
14. b
15. b, c, d
16. d
17. a
18. c
19. a, b
20. d
0 Comments