お手軽にダウンロードできる010-160試験問題集が更新されたのは80問があります [Q46-Q69]

Share

お手軽にダウンロードできる010-160試験問題集が更新されたのは80問があります

最新更新されたのは010-160試験問題2024年更新


LPI 010-160試験は、60分以内に完了する40の複数選択質問で構成される包括的な試験です。この試験は、英語、フランス語、ドイツ語、ポルトガル語で入手でき、世界の視聴者がアクセスできるようになりました。この試験に合格すると、Linuxのコア概念とLinux環境で基本的なタスクを実行する能力に関する候補者の理解が示されます。この認定は、Linuxで高度な認定を追求したい、またはLinux System Administrationでのキャリアを追求したい個人に強固な基盤を提供します。

 

質問 # 46
Which of the following commands creates an archive file work.tarfrom the contents of the directory ./
work/?

  • A. tar work > work.tar
  • B. tar -create work.tgz -content ./work/
  • C. tar work.tar < ./work/
  • D. tar --new work.tar ./work/
  • E. tar -cf work.tar ./work/

正解:E


質問 # 47
Which of the following types of bus can connect hard disk drives with the motherboard?

  • A. The SATA bus
  • B. The NUMA bus
  • C. The CPU bus
  • D. The Auto bus
  • E. The RAM bus

正解:A


質問 # 48
What is true about the owner of a file?

  • A. When a user is deleted, all files owned by the user disappear.
  • B. Each file is owned by exactly one user and one group.
  • C. The owner of a file cannot be changed once it is assigned to an owner.
  • D. The owner of a file always has full permissions when accessing the file.
  • E. The user owning a file must be a member of the file's group.

正解:B

解説:
Explanation
In Linux, every file and directory is associated with an owner and a group. The owner is the user who created the file or directory, and the group is the group to which the owner belongs. Therefore, each file is owned by exactly one user and one group. This is true for option A. The other options are false for the following reasons:
* Option B: The owner of a file does not always have full permissions when accessing the file. The permissions are determined by the file mode, which can be changed by the owner or the root user. The file mode specifies the read, write, and execute permissions for the owner, the group, and others. The owner can have different permissions than the group or others.
* Option C: The user owning a file does not have to be a member of the file's group. The owner can change the group ownership of the file to any group on the system, regardless of whether the owner belongs to that group or not. However, only the root user or a user with the CAP_CHOWN capability can change the group ownership to a group that the owner is not a member of.
* Option D: When a user is deleted, all files owned by the user do not disappear. The files remain on the system, but their owner is changed to an invalid user ID (UID). The files can still be accessed by the group or others, depending on the permissions. The files can also be reclaimed by the root user or a user with the CAP_CHOWN capability, who can change the owner to a valid user.
* Option E: The owner of a file can be changed once it is assigned to an owner. The owner can transfer the ownership to another user, or the root user or a user with the CAP_CHOWN capability can change the owner to any user on the system. The command to change the owner of a file is chown. References: 1: Chown Command in Linux (File Ownership) | Linuxize 2 3: Linux File Permissions and Ownership Explained with Examples 4 2: 3 Ways to Find File Owner in Linux - howtouselinux 1


質問 # 49
What is the preferred source for the installation of new applications in a Linux based operating system?

  • A. A retail store
  • B. The vendor's version management system
  • C. The distribution's package repository
  • D. The vendor's website
  • E. A CD-ROM disk

正解:C


質問 # 50
Which of the following DNS record types hold an IP address? (Choose two.)

  • A. CNAME
  • B. AAAA
  • C. MX
  • D. A
  • E. NS

正解:C、D


質問 # 51
What is the UID of the user root?

  • A. 0
  • B. 1
  • C. 2
  • D. 3
  • E. 4

正解:D

解説:
Explanation
The UID of the user root is always 0 on Linux systems. This is because the kernel uses the UID 0 to check for the superuser privileges and grant access to all system resources. The name of the user account with UID 0 is usually root, but it can be changed or have aliases. However, some applications may expect the name root and not work properly with a different name. The UID 0 is reserved for the root user and cannot be assigned to any other user. The UID 0 is stored in the /etc/passwd file along with other user information. References:
* Linux Essentials Topic 104: The Linux Operating System, section 104.4: Runlevels and Boot Targets.
* Linux Essentials Topic 106: Security and File Permissions, section 106.1: Basic security and identifying user types.
* Linux Essentials Topic 106: Security and File Permissions, section 106.2: Creating users and groups.


質問 # 52
When typing a long command line at the shell, what single character can be used to split a command across multiple lines?

正解:

解説:
\


質問 # 53
What information is stored in /etc/passwd? (Choose three.)

  • A. The encrypted password
  • B. The username
  • C. The user\s default shell
  • D. The user's storage space limit
  • E. The numerical user ID

正解:B、C、E


質問 # 54
Which of the following directories contains information, documentation and example configuration files for installed software packages?

  • A. /doc/
  • B. /var/info/
  • C. /usr/examples/
  • D. /etc/defaults/
  • E. /usr/share/doc/

正解:E

解説:
Explanation/Reference:


質問 # 55
A user is currently in the directory/home/user/Downloads/and runs the command ls ../Documents/ Assuming it exists, which directory's content is displayed?

  • A. /home/Documents
  • B. /home/user/Documents/
  • C. /home/user/Downloads/Documents/
  • D. /home/user/Documents/Downloads/
  • E. /Documents/

正解:B

解説:
Explanation
The command ls .../Documents/ lists the contents of the directory /home/user/Documents/. The reason is that the argument .../Documents/ is a relative path that refers to the parent directory of the current directory, which is /home/user/, followed by the subdirectory Documents/. The ls command displays the files and directories in the specified path, or the current directory if no path is given. The command does not change the current directory, so the user remains in /home/user/Downloads/. References:
* Linux Essentials Exam Objectives, Version 1.6, Topic 103.1, Weight 2
* Linux Essentials Certification Guide, Chapter 3, Page 49-50
* Ls Command in Linux (List Files and Directories) | Linuxize


質問 # 56
Which of the following tasks can the command passwd accomplish? (Choose two.)

  • A. Lock a user account.
  • B. Change a user's username.
  • C. Change a user's password.
  • D. Create a new user account.
  • E. Create a new user group.

正解:A、D


質問 # 57
Where is the operating system of a Raspberry Pi stored?

  • A. On a read only partition on the Raspberry Pi's firmware, next to the BIOS.
  • B. On the master device attached to the Raspberry Pi's IDE bus.
  • C. On a Linux extension module connected to the Raspberry Pi's GPIO pins.
  • D. On rewritable flash storage which is built into the Raspberry Pi.
  • E. On a removable SD cardwhich is put into the Raspberry Pi.

正解:E


質問 # 58
A directory contains the following files:

What would be the output of the following shell script?
for file in *.txt

  • A. a b
  • B. A. txt
    b. txt
  • C. A.txt
  • D. c.cav
  • E. *.txt

正解:B


質問 # 59
Which of the following commands finds all lines in the file operating-systems.txt which contain the term linux, regardless of the case?

  • A. cut linux operating-systems.txt
  • B. less -i linux operating-systems.txt
  • C. cut [Ll] [Ii] [Nn] [Uu] [Xx] operating-systems.txt
  • D. igrep linux operating-systems.txt
  • E. grep -i linux operating-systems.txt

正解:E


質問 # 60
What happens to a file residing outside the home directory when the file owner's account is deleted? (Choose two.)

  • A. The UID of the former owner is shown when listing the file's details.
  • B. Ownership and permissions of the file remain unchanged.
  • C. The file is removed from the file system.
  • D. The user root is set as the new owner of the file.
  • E. During a file system check, the file is moved to /lost +found.

正解:A、B


質問 # 61
Which of the following outputs comes from the commandfree?

  • A. Option E
  • B. Option C
  • C. Option A
  • D. Option D
  • E. Option B

正解:A


質問 # 62
Members of a team already have experience using Red Hat Enterprise Linux. For a small hobby project, the team wants to set up a Linux server without paying for a subscription. Which of the following Linux distributions allows the team members to apply as much of their Red Hat Enterprise Linux knowledge as possible?

  • A. Debian GNU/Linux
  • B. openSUSE
  • C. CentOS
  • D. Ubuntu Linux LTS
  • E. Raspbian

正解:C

解説:
Explanation
CentOS is a Linux distribution that is based on the source code of Red Hat Enterprise Linux (RHEL). It is a free and open-source community-supported OS that provides an enterprise-level computing platform. CentOS is fully compatible with RHEL and can run the same applications and packages. Therefore, CentOS allows the team members to apply as much of their Red Hat Enterprise Linux knowledge as possible for their hobby project. References:
* Linux Essentials Version 1.6 Objectives1, Topic 1.1: Linux Evolution and Popular Operating Systems, Subtopic: Linux Distributions
* Linux Essentials Version 1.6 Exam Preparation Guide2, Section 1.1: Linux Evolution and Popular Operating Systems, Page 7
* CentOS Website3, About CentOS Linux
* Red Hat Enterprise Linux derivatives - Wikipedia4


質問 # 63
Which of the following commands sets the variable USERNAME to the value bob?

  • A. USERNAME=bob
  • B. var USERNAME=bob
  • C. $USERNAME==bob
  • D. USERNAME<=bob
  • E. set USERNAME bob

正解:A

解説:
Explanation
The correct command to set the variable USERNAME to the value bob is USERNAME=bob. This command assigns the string bob to the variable name USERNAME, using the equal sign (=) as the assignment operator.
There is no space around the equal sign, and the variable name and value are case-sensitive. This command sets a shell variable, which is only valid in the current shell session. To make the variable an environment variable, which can be inherited by child processes and subshells, you need to use the export command, such as export USERNAME=bob. The other commands are not valid for setting variables in Linux. The set command is used to set orunset shell options and positional parameters, not variables. The $ sign is used to reference the value of a variable, not to assign it. The == sign is used for comparison, not assignment. The var keyword is not used in Linux, but in some other programming languages. The <= sign is used for redirection, not assignment. References:
* Linux Essentials - Linux Professional Institute (LPI)
* How to Set and List Environment Variables in Linux | Linuxize


質問 # 64
Which of the following commands output the content of the file Texts 2.txt? (Choose two.)

  • A. cat Texts\ 2.txt
  • B. cat 'Texts\ 2.txt'
  • C. cat |Texts 2.txt|
  • D. cat -- Texts 2.txt
  • E. cat 'Texts 2.txt'

正解:D、E


質問 # 65
Which of the following programs is a graphical editor for vector graphics?

  • A. Samba
  • B. NGINX
  • C. MySQL
  • D. Python
  • E. Inkscape

正解:E


質問 # 66
Which permissions are set on a regular file once the permissions have been modified with the command chmod 654 file.txt?

  • A. -wxr-x--x
  • B. drw-r-xr--
  • C. d-wxr-x--
  • D. -rw-r-xr--
  • E. -rwxrw---x

正解:D

解説:
Explanation
The chmod command is used to change the permissions of files and directories. The permissions are represented by three sets of three characters, indicating the permissions for the owner, the group, and the others. Each character can be either r (read), w (write), x (execute), or - (no permission). The chmod command can use either symbolic or numeric mode to specify the permissions. In this question, the numeric mode is used, which consists of three digits from 0 to 7. Each digit is the sum of the permissions for each set, where r is 4, w is 2, and x is 1. For example, 7 means rwx, 6 means rw-, and 4 means r-. Therefore, the command chmod 654 file.txt sets the permissions as follows:
* The first digit 6 means rw- for the owner, which means the owner can read and write the file, but not execute it.
* The second digit 5 means r-x for the group, which means the group can read and execute the file, but not write it.
* The third digit 4 means r-- for the others, which means the others can only read the file, but not write or execute it.
The resulting permissions are -rw-r-xr-, which is the correct answer. The other options are incorrect because they either have the wrong permissions or the wrong file type. A regular file does not have the d (directory) prefix, and a directory cannot have the - (no file type) prefix. References:
* Linux Essentials Version 1.6 Objectives: 4.1. Ownership and Permissions1
* Linux Essentials Version 1.6 Exam Study Resources: Linux Essentials Manual - Chapter 8. Security and File Permissions - 8.1. Ownership and Permissions - 8.1.1. The chmod Command2
* Linux Essentials Version 1.6 Exam Study Resources: Linux Essentials Manual - Appendix A. Answers to the Exercises - Chapter 8. Security and File Permissions - 8.1. Ownership and Permissions - Exercise
8.1.12


質問 # 67
Which of the following characters in a shell prompt indicates the shell is running with root privileges?

  • A. &
  • B. !
  • C. #
  • D. $
  • E. *

正解:C

解説:
Explanation
The shell prompt is a symbol or a string of characters that indicates the shell is ready to accept commands. The shell prompt can be customized by the user or by the system administrator. The default shell prompt for a normal user is usually a dollar sign ($), while the default shell prompt for the root user is usually a hash sign (#). The root user is the superuser or the administrator of the system, who has full access and control over all files, commands, and resources. Running commands as root can be dangerous, as it can cause irreversible damage to the system if done incorrectly. Therefore, it is advisable to use sudo or su to run commands as root only when necessary, and to switch back to a normal user as soon as possible. The shell prompt indicates the shell is running with root privileges when it ends with a hash sign (#). References:
* Linux Essentials - Linux Professional Institute (LPI)
* Running a shell command as root - Unix & Linux Stack Exchange


質問 # 68
Which of the following permissions are set on the/tmp/directory?

  • A. r-xr-X--t
  • B. rwxrwS---
  • C. rwSrw-rw-
  • D. ------rwX
  • E. rwxrwxrwt

正解:E

解説:
Explanation
The correct permissions for the /tmp directory are rwxrwxrwt, which means that the owner, group, and others have read, write, and execute permissions, and that the sticky bit is set. The sticky bit is a special permission that prevents users from deleting or renaming files that they do not own in a shared directory. The /tmp directory is used for storing temporary files that may be created by different users and processes, so it needs to be accessible and writable by all, but also protected from unauthorized deletion or modification of files. The rwxrwxrwt permissions can be set by using the chmod command with either the octal mode 1777 or the symbolic mode a+trwx. References: : [File system permissions] : [Sticky bit] : [chmod]


質問 # 69
......


Lpi 010-160試験は、世界中の多くの企業や団体に認められている国際的に認知された認定試験です。この認定は、Linuxでキャリアを追求したい個人にとって堅固な基盤を提供し、IT業界で多くの仕事の機会を開拓することができます。また、この認定は、候補者のプロフェッショナリズムへの取り組みやスキル・知識の向上に対する意欲を示しています。

 

無料更新されたLpi 010-160テストエンジン問題には80問題と解答:https://www.jpntest.com/shiken/010-160-mondaishu

弊社を連絡する

我々は12時間以内ですべてのお問い合わせを答えます。

オンラインサポート時間:( UTC+9 ) 9:00-24:00
月曜日から土曜日まで

サポート:現在連絡