Linux MCQs

Linux is an open-source Unix-like operating system that is based on the Linux kernel. The kernel was first released on September 17, 1991, by Linus Torvalds. Linux is typically packaged in a Linux distribution. The Linux operating system comprises several different pieces: Bootloader, Kernel, Init system, Daemons, Graphical server, Desktop environment, Applications, etc.

Linux MCQs: This section contains multiple-choice questions and answers on the Linux operating system. It will help the students to test their skills and prepare well for their exams.

List of Linux MCQs

1. Who founded Linux Kernel?

  1. Ken Thompson and Dennis Ritchie
  2. Linus Torvalds
  3. Linus Torvalds and Ken Thompson
  4. Richard Stallman

Answer: B) Linus Torvalds

Explanation:

Linus Torvalds founded Linux Kernel.

Discuss this Question


2. What is the core of the Linux operating system?

  1. Vi Editor
  2. Command Line
  3. Terminal
  4. Kernel

Answer: D) Kernel

Explanation:

The kernel is the core of the Linux operating system.

Discuss this Question


3. Which is/are the directories that come under the Binary directory?

  1. /bin
  2. /sbin
  3. /lib
  4. /opt
  5. All of the above

Answer: E) All of the above

Explanation:

Binary directory contains following directories:

  • /bin
  • /sbin
  • /lib
  • /opt

Discuss this Question


4. The directory is a type of file?

  1. Yes
  2. No

Answer: A) Yes

Explanation:

Yes, the directory is a type of file.

Discuss this Question


5. Which symbol represents the top-level directory?

  1. ~
  2. @
  3. #
  4. /

Answer: D) /

Explanation:

The symbol "/" represents the top-level directory.

Discuss this Question


6. Which symbol represents the user's home directory?

  1. ~
  2. @
  3. #
  4. /

Answer: A) ~

Explanation:

The symbol "~" represents the user's home directory.

Discuss this Question


7. Which Linux command is used to count the total number of lines, words, and characters contained in a file?

  1. count
  2. wcount
  3. wc
  4. countw

Answer: C) wc

Explanation:

The "wc" command is used to count the number of lines, words, characters, and bytes of each given file or standard input and print the result.

Discuss this Question


8. Which Linux command is used to remove files?

  1. remove
  2. rm
  3. delete
  4. del

Answer: B) rm

Explanation:

The "rm" command is used to remove files in Linux.

Discuss this Question


9. Which Linux command with vi Editor is used to delete a single character?

  1. d
  2. r
  3. x
  4. c

Answer: C) x

Explanation:

The command "x" is used to delete a single character in vi Editor.

Discuss this Question


10. Which Linux command is used to know which directory you are in?

  1. know
  2. help
  3. cwd
  4. pwd

Answer: D) pwd

Explanation:

To know which directory you are in, the "pwd" command can be used. The "pwd" command stands for "Present Working Directory". This command gives us the absolute path, which means the path that starts from the root.

Discuss this Question


11. Which Linux command is used to see all the hidden files?

  1. ls
  2. ls -h
  3. ls -a
  4. dir -a

Answer: C) ls -a

Explanation:

The "ls" command with argument "-a" can be used to see all the hidden files.

Discuss this Question


12. Which Linux command is used to give a full listing?

  1. ls -F
  2. ls -h
  3. ls -a
  4. dir -a

Answer: A) ls -F

Explanation:

The "ls -F" command is used to see a full listing, indicating what type files are by putting a slash after directories and a star after executable files.

Discuss this Question


13. Which Linux command is used to go back from a folder to the folder before that?

  1. cd..
  2. cd
  3. cd/
  4. chdir

Answer: A) cd..

Explanation:

To go back from a folder to the folder before that, we can use the Linux command "cd .." . Here, the two dots (..) represent back.

Discuss this Question


14. If you want to create a new directory named XYZ, which command will be used for this purpose?

  1. cd XYZ
  2. chdir XYZ
  3. mkdir XYZ
  4. md XYZ

Answer: C) mkdir XYZ

Explanation:

To create a new directory named XYZ, we can use "mkdir XYZ". The "mkdir" command is used to make a directory in Linux.

Discuss this Question


15. Which Linux command is used to create a new file?

  1. create
  2. file
  3. tch
  4. touch

Answer: D) touch

Explanation:

The "touch" command is used to create a file.

Discuss this Question


16. Which Linux command is used to copy files through the command line?

  1. cp
  2. copy
  3. fcp
  4. filecopy

Answer: A) cp

Explanation:

The "cp" command is used to copy files through the command line.

Discuss this Question


17. Which Linux command is used to move files through the command line?

  1. move
  2. mv
  3. ren
  4. loc

Answer: B) mv

Explanation:

The "mv" command is used to move files through the command line.

Discuss this Question


18. Which is the correct command syntax to rename a file "abc.txt" to "pqr.txt"?

  1. mv abc.txt pqr.txt
  2. mv pqr.txt abc.txt
  3. mv -a pqr.txt abc.txt
  4. mv -all pqr.txt abc.txt

Answer: A) mv abc.txt pqr.txt

Explanation:

The correct command syntax to rename a file "abc.txt" to "pqr.txt" is:

mv abc.txt pqr.txt

Discuss this Question


19. Just like the Windows Search command, which command is used in Linux?

  1. search
  2. find
  3. findall
  4. locate

Answer: D) locate

Explanation:

In Linux, the "locate" command is used to locate/search a file, just like the search command in Windows.

Discuss this Question


20. Which argument with locate command helps us to ignore the case while searching the file in the Linux system?

  1. -c
  2. -i
  3. -a
  4. -x

Answer: B) -i

Explanation:

To ignore the case while searching the file in the Linux system we can use the argument "-i" with the "locate" command.

Discuss this Question


21. Which is the correct command syntax to locate a file containing the words "hello" and "this"?

  1. locate -i *hello*this
  2. locate -i **hello**this
  3. locate -i *hello*this*
  4. locate -i **hello**this**

Answer: A) locate -i *hello*this

Explanation:

The correct command syntax to locate a file containing the words "hello" and "this":

locate -i *hello*this

Discuss this Question


22. Which Linux command is used to display the content of a file?

  1. display
  2. show
  3. echo
  4. cat

Answer: D) cat

Explanation:

The "cat" command is used to display the content of a file in Linux.

Discuss this Question


23. If you want any command to be done with administrative or root privileges, you can use the ___ command.

  1. sud
  2. sudo
  3. super
  4. superuser

Answer: B) sudo

Explanation:

If you want any command to be done with administrative or root privileges, you can use the sudo command.

Discuss this Question


24. The "sudo" command stands for ___.

  1. su
  2. superuser does
  3. superuser do
  4. super do

Answer: C) superuser do

Explanation:

The "sudo" command stands for "superuser do".

Discuss this Question


25. Which Linux command is used to see the available disk space in each of the partitions in your system?

  1. disk
  2. diskspace
  3. available
  4. df

Answer: D) df

Explanation:

To see the available disk space in each of the partitions in your system, we can use "df" command.

Discuss this Question


26. Which Linux command is used to check the computer's hostname?

  1. hostname
  2. host
  3. comph
  4. hname

Answer: A) hostname

Explanation:

The "hostname" command is used to check a computer's hostname in Linux.

Discuss this Question


27. The ___ command gives you your IP address in your network.

  1. hostname
  2. hostname -I
  3. host -I
  4. hostname -i

Answer: B) hostname -I

Explanation:

The "hostname -I" command gives you your IP address in your network.

Discuss this Question


28. Which Linux command is used to check your connection to a server?

  1. connection
  2. isconnect
  3. check
  4. ping

Answer: D) ping

Explanation:

The "ping" command is used to check your connection to a server.

Discuss this Question


29. Which Linux command is used to clear the terminal if it gets filled up with too many commands?

  1. clear
  2. clean
  3. cls
  4. clr

Answer: A) clear

Explanation:

The "clear" command is used to clear the terminal if it gets filled up with too many commands.

Discuss this Question


30. OSS stands for ___.

  1. Open System Software
  2. Open Source Software
  3. Open System Source
  4. None of the above

Answer: B) Open Source Software

Explanation:

OSS stands for "Open Source Software".

Discuss this Question


31. Which Linux command is used to force all buffers to disk?

  1. sync
  2. fflush
  3. flush
  4. clearx

Answer: A) sync

Explanation:

The "sync" command is used to force all buffers to disk.

Discuss this Question


32. Compressed files or zipped files can be viewed with the help of ___ command.

  1. unzip
  2. catz
  3. zcat
  4. All of the above

Answer: C) zcat

Explanation:

Compressed files or zipped files can be viewed with the help of 'zcat' command.

Discuss this Question


33. The command ___ decompresses a file like gunzip command.

  1. bunzip
  2. bunzip2
  3. bunzip3
  4. bunzip0

Answer: B) bunzip2

Explanation:

The command "bunzip2" decompresses a file like gunzip command.

Discuss this Question


34. The ___ term stands for the calendar. It displays the current month's calendar with the current day highlighted.

  1. calendar
  2. calc
  3. cal
  4. None of the above

Answer: C) cal

Explanation:

The 'cal' term stands for the calendar. It displays the current month's calendar with the current day highlighted.

Discuss this Question


35. Which Linux command is used to record a user login session in a file?

  1. script
  2. style
  3. log
  4. record

Answer: A) script

Explanation:

The "script" command is used to record a user login session in a file.

Discuss this Question


36. Which Linux command is used to display the operating system name?

  1. os
  2. osname
  3. osinfo
  4. uname

Answer: D) uname

Explanation:

The "uname" command is used to display the operating system name.

Discuss this Question


37. Which Linux command is used to print a file?

  1. lp
  2. pr
  3. print
  4. ptr

Answer: A) lp

Explanation:

The "lp" command is used to print a file.

Discuss this Question


38. Which is the correct syntax to print the file using the default printer in Linux?

  1. lp [printer_name] [path or filename]
  2. lp -a [printer_name] [path or filename]
  3. lp -d [printer_name] [path or filename]
  4. lp -d [path or filename] [printer_name]

Answer: C) lp -d [printer_name] [path or filename]

Explanation:

The correct syntax to print the file using the default printer in Linux is:

lp -d [Printer_name] [path or filename]

Discuss this Question


39. Which is the correct syntax to print the file using the default printer with multiple copies in Linux?

  1. lp -d -n [printer_name] [path or filename]
  2. lp -d -n 5[printer_name] [path or filename]
  3. lp -d [printer_name] -n [path or filename]
  4. lp -d [printer_name] -n 5 [path or filename]

Answer: D) lp -d [printer_name] -n 5 [path or filename]

Explanation:

The correct syntax to print the file using the default printer with multiple copies in Linux is:

lp -d [printer_name] -n 5 [path or filename]

Discuss this Question


40. Which argument and value with "lp" command specify the page orientation while printing a file?

  1. -o landscape/portrait
  2. -o l/p
  3. -o land/prt
  4. -or landscape/portrait

Answer: A) -o landscape/portrait

Explanation:

With "ls" command, we can use argument "-0" with value either "landscape" or "portrait" to specify the page orientation. Consider the below command syntax –

lp -d [printer_name] -o landscape/portrait [path or filename]

Discuss this Question


41. Which Linux command is used to identify file type?

  1. file
  2. type
  3. info
  4. finfo

Answer: A) file

Explanation:

The "file" command is used to identify the file type.

Discuss this Question


42. How many types of users are in Linux?

  1. 2
  2. 3
  3. 4
  4. 5

Answer: B) 3

Explanation:

In Linux, there are three types of users: super users, system users, and regular/normal users.

Discuss this Question


43. How many types of basic permissions to grant a user?

  1. 2
  2. 3
  3. 4
  4. 5

Answer: B) 3

Explanation:

There are three basic permissions to grant a user, they are: read, write, and execute.

Discuss this Question


44. The ___ command in Linux is used to convert the content of input in different formats with the octal format as the default format.

  1. od
  2. oct
  3. o_d
  4. octal

Answer: A) od

Explanation:

The "od" command in Linux is used to convert the content of input in different formats with the octal format as the default format.

Discuss this Question


45. The "od" command in Linux is used to convert the content of input in different formats with the octal format as the default format.

  1. https
  2. http
  3. named
  4. dns

Answer: C) named

Explanation:

The named server is used with the BIND package. In Linux, the named service executes the DNS (Dynamic Name Service) server daemon. It converts hostnames to IP addresses and vice versa.

Discuss this Question


46. Which Linux command displays "cat" command's output with syntax highlighting or colorizing?

  1. xcat
  2. ccat
  3. coloredcat
  4. colored

Answer: B) ccat

Explanation:

The "ccat" command displays "cat" command's output with syntax highlighting or colorizing?

Discuss this Question


47. The operator __ is used to redirect the output of a command to the file by erasing all existing data of that file.

  1. >
  2. >>
  3. >>
  4. <>

Answer: A) >

Explanation:

The operator ">" is used to redirect the output of a command to the file by erasing all existing data of that file.

Discuss this Question


48. The operator __ is used to redirect the output of a command to the file without erasing all existing data of that file.

  1. >
  2. >>
  3. >>
  4. <>

Answer: B) >>

Explanation:

The operator ">>" is used to redirect the output of a command to the file without erasing all existing data of that file.

Discuss this Question


49. The operators ">" and ">>" are known as ___.

  1. Insertion operators
  2. Exertion operators
  3. Redirection operators
  4. None of the above

Answer: C) Redirection operators

Explanation:

The operators ">" and ">>" are known as Redirection operators.

Discuss this Question


50. Which keys are used to terminate the command execution in the command prompt?

  1. CTRL + C
  2. CTRL + Pause/Break
  3. Both A and B
  4. None of the above

Answer: C) Both A and B

Explanation:

Both the combination of the keys CTRL + C and CTRL + Pause/Break can be used to terminate the command execution in the command prompt.

Discuss this Question





Comments and Discussions!

Load comments ↻






Copyright © 2024 www.includehelp.com. All rights reserved.