Winter Special - 65% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: c4sdisc65

010-160 PDF

$38.5

$109.99

3 Months Free Update

  • Printable Format
  • Value of Money
  • 100% Pass Assurance
  • Verified Answers
  • Researched by Industry Experts
  • Based on Real Exams Scenarios
  • 100% Real Questions

010-160 PDF + Testing Engine

$61.6

$175.99

3 Months Free Update

  • Exam Name: Linux Essentials Certificate Exam - version 1.6
  • Last Update: Dec 6, 2024
  • Questions and Answers: 80
  • Free Real Questions Demo
  • Recommended by Industry Experts
  • Best Economical Package
  • Immediate Access

010-160 Engine

$46.2

$131.99

3 Months Free Update

  • Best Testing Engine
  • One Click installation
  • Recommended by Teachers
  • Easy to use
  • 3 Modes of Learning
  • State of Art Technology
  • 100% Real Questions included

010-160 Practice Exam Questions with Answers Linux Essentials Certificate Exam - version 1.6 Certification

Question # 6

Which of the following statements are true regarding a typical shell script? (Choose two.)

A.

It has the executable permission bit set.

B.

It starts with the two character sequence #!.

C.

It is located in /usr/local/scripts/.

D.

It is located in /etc/bash/scripts/.

E.

It is compiled into a binary file compatible with the current machine architecture.

Full Access
Question # 7

The ownership of the file doku.odt should be changed. The new owner is named tux. Which command accomplishes this change?

A.

chmod u=tux doku.odt

B.

newuser doku.odt tux

C.

chown tux doku.odt

D.

transfer tux: doku.odt

E.

passwd doku.odt:tux

Full Access
Question # 8

Which of the following types of bus can connect hard disk drives with the motherboard?

A.

The RAM bus

B.

The NUMA bus

C.

The CPU bus

D.

The SATA bus

E.

The Auto bus

Full Access
Question # 9

Which of the following commands creates an archive filework.tarfrom the contents of the directory./

work/?

A.

tar --new work.tar ./work/

B.

tar –cf work.tar ./work/

C.

tar –create work.tgz –content ./work/

D.

tar work.tar < ./work/

E.

tar work > work.tar

Full Access
Question # 10

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.

env MYVAR=value

C.

MYVAR=value

D.

$MYVAR=value

E.

export MYVAR=value

Full Access
Question # 11

Which statements about the directory /etc/skel are correct? (Choose two.)

A.

The personal user settings of root are stored in this directory.

B.

The files from the directory are copied to the home directory of the new user when starting the system.

C.

The files from the directory are copied to the home directory of a new user when the account is created.

D.

The directory contains a default set of configuration files used by the useradd command.

E.

The directory contains the global settings for the Linux system.

Full Access
Question # 12

What is a Linux distribution?

A.

The Linux file system as seen from the root account after mounting all file systems.

B.

A bundling of the Linux kernel, system utilities and other software.

C.

The set of rules which governs the distribution of Linux kernel source code.

D.

An operating system based on Linux but incompatible to the regular Linux kernel.

E.

A set of changes to Linux which enable Linux to run on another processor architecture.

Full Access
Question # 13

What are the differences between a private web browser window and a regular web browser window? (Choose three.)

A.

Private web browser windows do not allow printing or storing websites.

B.

Private web browser windows do not store cookies persistently.

C.

Private web browser windows do not support logins into websites.

D.

Private web browser windows do not keep records in the browser history.

E.

Private web browser windows do not send regular stored cookies.

Full Access
Question # 14

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/user/Documents/

B.

/home/user/Documents/Downloads/

C.

/home/user/Downloads/Documents/

D.

/Documents/

E.

/home/Documents

Full Access
Question # 15

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

A.

During a file system check, the file is moved to /lost +found.

B.

The file is removed from the file system.

C.

The UID of the former owner is shown when listing the file's details.

D.

The user root is set as the new owner of the file.

E.

Ownership and permissions of the file remain unchanged.

Full Access
Question # 16

Which of the following devices represents a hard disk partition?

A.

/dev/ttyS0

B.

/dev/sata0

C.

/dev/part0

D.

/dev/sda2

E.

/dev/sda/p2

Full Access
Question # 17

Which permissions are set on a regular file once the permissions have been modified with the command

chmod 654 file.txt?

A.

drw-r-xr--

B.

d—wxr-x--

C.

–wxr-x--x

D.

–rwxrw---x

E.

-rw-r-xr--

Full Access
Question # 18

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

A.

!

B.

#

C.

*

D.

&

E.

$

Full Access
Question # 19

Reverse DNS assigns hostnames to IP addresses. How is the name of the IP address 198.51.100.165 stored

on a DNS server?

A.

In the A record for165.100.51.198.ipv4.arpA.

B.

In the PTR record for165.100.51.198.in-addr.arpA.

C.

In the RNAME record for198-51-100-165.rev.arpA.

D.

In the ARPA record for165.100.51.198.rev.

E.

In the REV record forarpA.in-addr.198.51.100.165.

Full Access
Question # 20

What is the purpose of the PATH environment variable?

A.

It allows the execution of commands without the need to know the location of the executable.

B.

It increases security by preventing commands from running in certain locations.

C.

It specifies the location of a user's home directory.

D.

It indicates the location of the default shell to be used when a user logs in.

E.

It contains the absolute path to the current directory.

Full Access
Question # 21

Which of the followingtaroptions handle compression? (Choose two correct answers.)

A.

-bz

B.

-z

C.

-g

D.

-j

E.

-z2

Full Access
Question # 22

Which of the following tasks can the command passwd accomplish? (Choose two.)

A.

Change a user's username.

B.

Change a user's password.

C.

Create a new user account.

D.

Create a new user group.

E.

Lock a user account.

Full Access
Question # 23

Which of the following values could be a process ID on Linux?

A.

/bin/bash

B.

60b503cd-019e-4300-a7be-922f074ef5ce

C.

/sys/pid/9a14

D.

fff3

E.

21398

Full Access
Question # 24

What is true about thedmesgcommand? (Choose two correct answers.)

A.

It traces the execution of a command and shows each step the program carries out.

B.

It sends messages to the command lines of all current user sessions.

C.

It displays the content of the Linux kernel’s ring buffer.

D.

It immediately outputs all new messages written to the system journal.

E.

It might not display older information because it was overwritten by newer information.

Full Access