[Q15-Q37] 010-160 100% Guarantee Download 010-160 Exam PDF Q&A [Nov 25, 2023]

Share

010-160 100% Guarantee Download 010-160 Exam PDF Q&A [Nov 25, 2023]

Get 010-160 Actual Free Exam Q&As to Prepare for Your Lpi Certification

NEW QUESTION # 15
Which of the following taroptions handle compression? (Choose two.)

  • A. -g
  • B. -bz
  • C. -z
  • D. -j
  • E. -z2

Answer: C,D


NEW QUESTION # 16
Which of the following programs is a graphical editor for vector graphics?

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

Answer: B


NEW QUESTION # 17
Which of the following types of bus can connect hard disk drives with the motherboard?

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

Answer: A


NEW QUESTION # 18
What is a Linux distribution?

  • A. An operating system based on Linux but incompatible to the regular Linux kernel.
  • B. The set of rules which governs the distributionof Linux kernel source code.
  • C. A set of changes to Linux which enable Linux to run on another processor architecture.
  • D. The Linux file system as seen from the root account after mounting all file systems.
  • E. A bundling of the Linux kernel, system utilities and other software.

Answer: E


NEW QUESTION # 19
Which of the following commands sets the variable USERNAME to the value bob?

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

Answer: B


NEW QUESTION # 20
Which of the following commands adds the directory /new/dir/ to the PATHenvironment variable?

  • A. $PATH=/new/dir: $PATH
  • B. PATH=/new/dir: PATH
  • C. export $PATH=/new/dir: $PATH
  • D. export PATH=/new/dir: PATH
  • E. export PATH=/new/dir: $PATH

Answer: E

Explanation:
Explanation/Reference:


NEW QUESTION # 21
The file script.sh in the current directory contains the following content:
#!/bin/bash echo $MYVAR
The following commands are used to execute this script:
MYVAR=value
./script.sh
The result is an empty line instead of the content of the variable MYVAR. How should MYVAR be set in order to make script.sh display the content of MYVAR?

  • A. $MYVAR=value
  • B. !MYVAR=value
  • C. env MYVAR=value
  • D. MYVAR=value
  • E. export MYVAR=value

Answer: E


NEW QUESTION # 22
When typing a long command line at the shell, what single character can be used to split a command across multiple lines?

Answer:

Explanation:
\


NEW QUESTION # 23
Which of the following are typical services offered by public cloud providers? (Choose three correct
answers.)

  • A. Infrastructure as a Service(IaaS)
  • B. Graphics as a Service (GaaS)
  • C. Internet as a Service(IaaS)
  • D. Platform as a Service(PaaS)
  • E. Software as a Service (SaaS)

Answer: A,D,E


NEW QUESTION # 24
A directory contains the following three files:
texts 1.txt
texts 2.txt
texts 3.csv
Which command copies the two files ending in .txtto the /tmp/directory?

  • A. cp. \.txt /tmp/
  • B. cp $?.txt /tmp/
  • C. cp ??.txt /tmp/
  • D. cp *.txt /tmp/
  • E. cp ?.txt /tmp/

Answer: D

Explanation:
Explanation/Reference:


NEW QUESTION # 25
Which of the followingoutputs could stem from the commandlast?

  • A. root tty2 Wed May 17 21:11 - 21:11 (00:00)
  • B. 1 ls
    2 cat text.txt
    3 logout
  • C. Last login: Fri Mar 23 10:56:39 2018 from server.example.com
  • D. EXT4-fs (dm-7): mounted filesystem with ordered data mode. Opts: (null)
  • E. Password for user last changed at Sat Mar 31 16:38:57 EST 2018

Answer: A


NEW QUESTION # 26
Which permissions are set on a regular file once thepermissions have been modified with the command chmod 654 file.txt?

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

Answer: A


NEW QUESTION # 27
Which of the following outputs comes from the command free?

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

Answer: B


NEW QUESTION # 28
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'

Answer: B,C


NEW QUESTION # 29
Which of the following statements regarding Linux hardware drivers is correct?

  • A. Drivers are regular Linux programs which have to be run by the user who wants to use a device.
  • B. Drivers are either compiled into the Linux kernel or are loaded as kernel modules.
  • C. Drivers are stored on their devices and are copied by the Linux kernel when a new device is attached
  • D. Drivers are downloaded from the vendor's driver repository when a new device is attached.
  • E. Drivers are not used by Linux because the BIOS handles all access to hardware on behalf of Linux.

Answer: B


NEW QUESTION # 30
Members of a team already haveexperience 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 EnterpriseLinux knowledge as possible?

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

Answer: D


NEW QUESTION # 31
Why are web browser cookies considered dangerous?

  • A. Cookies store critical data which is lost when a cookie is deleted.
  • B. Cookies are always public and accessible to anyone on the internet.
  • C. Cookies support identification and tracking of users.
  • D. Cookies consume significant amounts of storage and can exhaust disk space.
  • E. Cookies can contain and execute viruses and malware.

Answer: C

Explanation:
Explanation/Reference:


NEW QUESTION # 32
Which of the following are typical services offered by public cloud providers? (Choose three.)

  • A. Infrastructure as a Service(IaaS)
  • B. Graphics as a Service (GaaS)
  • C. Internet as a Service(IaaS)
  • D. Platform as a Service(PaaS)
  • E. Software as a Service (SaaS)

Answer: A,D,E


NEW QUESTION # 33
Which command copies the contents of the directory /etc/, including all sub-directories, to /root/?

  • A. cp -v /etc/* /root
  • B. cp -r /etc/* /root
  • C. cp -R /etc/*.* /root
  • D. rcp /etc/* /root
  • E. copy /etc /root

Answer: B


NEW QUESTION # 34
What information is stored in /etc/passwd? (Choose three.)

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

Answer: A,D,E


NEW QUESTION # 35
A directory contains the following files:

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

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

Answer: A


NEW QUESTION # 36
What are the differences between hard disk drives and solid state disks? (Choose two correct answers.)

  • A. Hard disks can fail due to physical damage, while solid state disks cannot fail.
  • B. /dev/sdais a hard disk device while /dev/ssdais a solid state disk.
  • C. Solid state disks can store many times as much data as hard disk drives.
  • D. Hard disks have a motor and moving parts, solid state disks do not.
  • E. Solid state disks provide faster access to stored data than hard disks.

Answer: D,E


NEW QUESTION # 37
......

010-160 Questions Truly Valid For Your Lpi Exam: https://www.briandumpsprep.com/010-160-prep-exam-braindumps.html

Lpi Actual Free Exam Questions And Answers: https://drive.google.com/open?id=1bwq4htU-6NqZ-kJ3e_TMiPTN9INheZBR