Home/lpi/Free LPI 702-100 Actual Exam Questions

Free LPI 702-100 Actual Exam Questions

The questions for this exam were last updated on January 9, 2026

Dumps Box (DumpsBox) offers up-to-date practice exam questions for 702-100 certification exam which are developed and validated by LPI subject domain experts certified in LPI 702-100 . These practice questions are update regularly as we keep an eye on any recent changes in 702-100 syllabus, and when there is update our team quickly adjusts the questions. This commitment to providing the best quality exam prep material to certification aspirants is what makes DumpsBox.com the best certification exam prep website. On top of that, our strong, yet strictly moderated, community based feedback keeps the content clean and current. Each question has helpful community discussion that provides it extra perspective and introduces helpful resources for better exam preparation. This also saves students from other outdated practice questions or illicit exam dumps that can have adverse affects on career. Browse through our LPI 702-100 exam questions and pass your exam on first try.

Question No. 1
Which command can be used to display the local filesystems that are currently mounted'?
Select one option, then reveal solution.
Top comments
SB
Sohail B.
2026-02-20

Not B, because df -h shows disk usage and includes network filesystems too. The mount command without options is better for just listing local mounted filesystems.

0
SB
Sohail B.
2026-02-20

mount command without options actually lists all mounted filesystems, including local ones.

0
Question No. 2
Which line in a cron job runs myscript once per hour?
Select one option, then reveal solution.
Top comments
SC
Sami C.
2026-02-13

B imo, others either run too often or have wrong syntax.

0
AR
Arjun R.
2026-02-13

B/D? B is definitely right for hourly, but D has a typo with that "o" instead of zero, so it can't be correct. The rest don’t match the hourly pattern properly.

0
Question No. 3
Which FreeBSD command updates packages to newer versions'?
Select one option, then reveal solution.
Top comments
FM
Farhan M.
2026-02-20

C. The key here is "updates packages to newer versions," which means actually upgrading what's installed. pkg update just grabs the latest repo catalog but doesn’t touch installed packages. pkg upgrade is the one that applies newer versions to your system. The other options either check for vulnerabilities or don’t exist in this context. So, it’s really about the distinction between refreshing metadata and performing the upgrade itself.

0
FM
Farhan M.
2026-02-20

A/D? Since pkg update just refreshes repo info and pkg audit only scans for vulnerabilities, neither installs new versions. It’s between those two if you think about updating data versus security checks.

0
Question No. 4
Assuming a umask of 022, what are the default permissions in octal mode of the newly created files?
Select one option, then reveal solution.
Top comments
PH
Peter H.
2026-02-21

It’s definitely not A or B since those don’t match typical default permissions. D is the raw default before umask, so that’s out. E is for directories, so C fits best for files after applying umask 022.

0
MV
Mark V.
2026-02-18

Guessing C since the question is about files, not directories.

0
Question No. 5
A file called mybackup is found while investigating a USB pen drive. Which utility can be used to
determine the kind of data that is contained in that file?
Select one option, then reveal solution.
Top comments
UM
Usman M.
2026-02-20

Good point on D being off. Also, E is just for creating or updating timestamps, so it won’t tell us anything about the file contents. That leaves A as the only practical way to identify the data type. Definitely A.

0
AN
Ali N.
2026-02-19

A. Also, other options either just list metadata (like B) or rely on specific formats (like C). File is designed exactly for this purpose—checking the file content without assumptions.

0
Question No. 6
Which of the following excerpts is a valid if condition in the Bourne shell?
Select one option, then reveal solution.
Top comments
RD
Rayan D.
2026-02-20

Not B, it misses spaces inside brackets which Bourne shell needs.

0
SZ
Shah Z.
2026-02-20

D imo, because the classic Bourne shell requires spaces around the square brackets and proper use of test commands. Looking at the options, D seems to follow the right syntax with spaces and a valid test expression, unlike C which uses double brackets that aren’t supported. A and B either miss spaces or have syntax quirks that would cause errors in a strict Bourne shell environment. So, if this is about original Bourne shell syntax only, D is the safest bet.

0
Question No. 7
Which of the following lines in /etc/fstab mounts the device /dev/cd0a to /cdrom?
Select one option, then reveal solution.
Top comments
HO
Hassan O.
2026-02-21

It’s D again. The main thing is the correct order: device first, then mount point, then filesystem type. Options like A and E mess that up by swapping fields or using wrong syntax. B looks more like a mount command line rather than fstab format. C uses a totally odd format. So D fits the standard fstab layout perfectly with the right device, mount point, and filesystem type for a CD device.

0
HO
Hassan O.
2026-02-20

It’s D as well. The fstab format is pretty strict: device first, then mount point, then filesystem type. The other options either mix up the order or use weird syntax that doesn’t match fstab standards. A and E flip device and mount point, B looks more like a mount command, not fstab. Plus, cd9660 is the right filesystem for a CD device, so D fits perfectly without extra confusion.

0
Question No. 8
Which statement about the difference between compiling an application from source code and
installing a pre-compiled binary is true?
Select one option, then reveal solution.
Top comments
MF
Mason F.
2026-02-20

C. You can definitely set build flags and enable features only at compile time, which you just can’t mess with in a pre-built binary. That’s the main advantage here.

0
SM
Sam M.
2026-02-20

It’s C as well. Another way to see it: when you compile from source, you can enable or disable features that are hardcoded into the app, which you simply can’t do with a binary. D doesn’t hold up since binaries are fixed in what they include or exclude at compile time, so they don’t really offer more options than source builds—just runtime settings, which aren’t the same thing.

0
Question No. 9

What symbol is used in the vi editor to start the forward search for a string? (Specify ONLY the single character symbol without any parameters) 702-100 practice exam questions

Top comments
HZ
Hassan Z.
2026-02-19

I agree that the slash (/) symbol is the one used for forward search in vi, but thinking about it from a different angle: since the question wants just the single character, and vi distinguishes forward vs backward search by using slash for forward and question mark for backward, eliminating the question mark makes sense here. Plus, colon (:) is for commands, so that doesn’t fit. So it’s definitely slash.

0
LP
Liam P.
2026-02-14

I’m with the others on this being the slash (/). The question just wants the single symbol, and slash is the classic way to start a forward search in vi. The question mark (?) is for backward search, so that’s easy to rule out. Plus and asterisk don’t really fit here since they’re more for pattern matching or repeats inside vi commands, not starting a search. So it’s definitely the slash symbol.

0
Question No. 10
Which file on a BSD system defines the printers which are available by the Ipr printing system'?
(Specify the full name of the file including path)
702-100 practice exam questions
Top comments
MO
Mason O.
2026-02-20

I trust /etc/printers too, it fits the classic BSD ipr setup better.

0
AM
Adeel M.
2026-02-16

I think /etc/printers is the solid choice here. The ipr system on BSD traditionally uses that file to list available printers. The printers.conf file is more tied to CUPS or other newer printing systems, which isn’t what ipr uses. So if the question wants the file tied directly to ipr, /etc/printers fits best.

0
Question No. 11
What command creates a new directory? (Specify ONLY the command without any path or
parameters.)
702-100 practice exam questions
Top comments
IS
Imran S.
2026-02-21

mkdir works in both Linux and Windows, so it’s the safest bet here.

0
OF
Osama F.
2026-02-10

I’d say mkdir makes the most sense here since it’s the universal command for creating directories on Linux and most Unix-like systems. The other options don’t really match up: touch creates files, ls lists files, and cd changes directories but doesn’t create them. Since the question just wants the bare command without any paths or flags, mkdir fits perfectly. Plus, it’s pretty much standard across different shells, so it’s the safest bet.

0
Question No. 12
What option of uname displays the version of the running operating system'? (Specify ONLY the
option name without any values or parameters.)
702-100 practice exam questions
Top comments
NE
Noah E.
2026-02-19

-v shows detailed OS version info, not just the kernel release.

0
NE
Noah E.
2026-02-19

I think -v makes sense since it shows the OS version string, not just the kernel release like -r. The question wants the running OS version, so -v is the clearer match here.

0
Question No. 13
What FreeBSD and NetBSD command manages services started at boot time? (Specify ONLY the
command without any path or parameters.)
702-100 practice exam questions
Top comments
BQ
Bilal Q.
2026-02-16

I’d say rcctl fits better for FreeBSD since it’s designed for boot service control specifically. NetBSD mostly uses rc.d scripts directly or rcorder, so rcctl might not be the answer for both.

0
SA
Saad A.
2026-02-10

I’m going with service too because it’s the common command that both FreeBSD and NetBSD support for managing services at boot. rcctl is definitely more FreeBSD-specific and isn’t available on NetBSD by default. Since the question asks for a single command for both, service fits best. It’s the standard wrapper for rc.d scripts on both systems, so it makes sense here.

0
Question No. 14
What file contains the configuration for the network interface em0 on an OpenBSD system'? (Specify
the full name of the file, including path.)
702-100 practice exam questions
Top comments
FN
Farhan N.
2026-02-21

That file sets interface parameters directly, so /etc/hostname.em0 makes complete sense.

0
FN
Farhan N.
2026-02-21

I think it’s definitely /etc/hostname.em0 because OpenBSD uses those “hostname.interface” files to set up each network interface individually. Other files like dhclient.conf handle DHCP client options but aren’t the core config for that interface. So if the question is about the main network interface config file, /etc/hostname.em0 is the one they want.

0
Question No. 15
What file contains values for MIBs which are set during system startup? (Specify the full name of the
file, including path.)
702-100 practice exam questions
Top comments
SI
Saad I.
2026-02-20

I think the key part here is "set during system startup" and "values for MIBs." The /etc/snmp/snmpd.conf usually has the daemon config but doesn’t store MIB values that persist. The file under /var/lib/snmp/snmpd.conf.static fits better since it holds the saved MIB values that get loaded when the SNMP daemon starts. So the full path /var/lib/snmp/snmpd.conf.static makes sense as the answer because it's designed for storing those persistent values, not just runtime configs.

0
SI
Saad I.
2026-02-11

Could also rule out /etc/snmp/snmpd.conf because it mainly configures the daemon, not the MIB values saved across restarts. The static file under /var/lib/snmp sounds more fitting for values set during startup.

0