All Practice Exams

100+ Free LPI OSS Essentials Practice Questions

Pass your LPI Open Source Essentials exam on the first try — instant access, no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
Not publicly disclosed Pass Rate
100+ Questions
100% Free
1 / 100
Question 1
Score: 0/0

Which document, maintained by the Open Source Initiative, defines the ten criteria a license must meet to be called 'open source'?

A
B
C
D
to track
2026 Statistics

Key Facts: LPI OSS Essentials Exam

40

Exam Questions

LPI 050 exam blueprint

60 min

Exam Duration

LPI 050 exam blueprint

$120

Exam Fee (USD, Tier 1)

lpi.org/exam-pricing

500 / 800

Passing Score

LPI scaled scoring

Pearson VUE

Test Provider

LPI testing partner

Lifetime

Credential Validity

LPI Essentials certificates do not expire

LPI Open Source Essentials (exam 050-100) is a 40-question, 60-minute certification with a $120 USD Tier 1 fee, scored 200-800 with a 500 cut. It targets professionals who must understand OSS fundamentals: the Open Source Definition, FSF Four Freedoms, GPL/LGPL/AGPL, MIT/BSD/Apache, MPL, Creative Commons, dual licensing, license compatibility, semver, LTS/EOL, governance models (BDFL, meritocracy, foundation), CLA vs DCO, SBOM, SCA, OSPO, Sigstore, and key OSS projects (Linux, GNU, Apache, Mozilla, CNCF).

Sample LPI OSS Essentials Practice Questions

Try these sample questions to test your LPI OSS Essentials exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1Which document, maintained by the Open Source Initiative, defines the ten criteria a license must meet to be called 'open source'?
A.The Open Source Definition
B.The Free Software Definition
C.The Debian Free Software Guidelines
D.The GNU Manifesto
Explanation: The Open Source Initiative (OSI) maintains the Open Source Definition (OSD), a 10-point list (free redistribution, source available, derived works, no field-of-use restriction, etc.). It was adapted from the Debian Free Software Guidelines, but the OSD itself is the criterion OSI uses to approve licenses. The Free Software Definition is the FSF's separate (philosophically older) framework.
2The Free Software Foundation's Four Freedoms describe rights given to users of free software. Which freedom is numbered 'Freedom 0'?
A.The freedom to run the program as you wish, for any purpose
B.The freedom to study how the program works and change it
C.The freedom to redistribute copies
D.The freedom to distribute modified versions
Explanation: FSF numbers the freedoms 0 through 3. Freedom 0 is to run the program as you wish, for any purpose. Freedom 1 is study/modify (requires source), Freedom 2 is redistribute copies, Freedom 3 is distribute modified versions. The 'no field-of-use restriction' idea in OSI's OSD aligns with Freedom 0.
3Which license is a 'strong copyleft' license that requires derivative works distributed to others to be released under the same license?
A.GNU General Public License (GPL)
B.MIT License
C.BSD 3-Clause License
D.Apache License 2.0
Explanation: The GPL is the canonical strong copyleft license: a derivative work that is conveyed to others must be licensed under the same GPL terms (the 'viral' or share-alike property). MIT, BSD, and Apache 2.0 are permissive — derivatives can be relicensed, including under proprietary terms.
4Which open source license is generally classified as a 'weak copyleft' or 'file-level copyleft' license, commonly used to share modifications to specific files but allow combining with proprietary code?
A.Mozilla Public License 2.0 (MPL 2.0)
B.GNU Affero General Public License (AGPL)
C.MIT License
D.Apache License 2.0
Explanation: MPL 2.0 is a file-level (weak) copyleft license: modifications to MPL-covered files must be shared under MPL, but the file-level boundary lets you combine MPL code with proprietary modules. AGPL is strong copyleft with a network clause; MIT and Apache 2.0 are permissive.
5What specific obligation does the GNU Affero General Public License (AGPL) add to the GPL?
A.Network use is treated as distribution, so users interacting over a network must be offered the source
B.Patents may not be enforced against any AGPL contributor
C.Combined works with permissive code must be relicensed as MIT
D.Trademark rights are automatically transferred to the FSF
Explanation: The AGPL's key addition is the 'network use' clause (sometimes called the 'SaaS loophole closer'): if users interact with a modified AGPL program over a network, they must be offered access to the corresponding source. Plain GPL is only triggered by conveyance/distribution, not by network use.
6Which permissive license is most often associated with the phrase 'do anything you want as long as you keep the copyright notice'?
A.MIT License
B.GPLv3
C.AGPLv3
D.Creative Commons BY-SA
Explanation: MIT is the shortest, most permissive of the common OSI licenses: keep the copyright/permission notice, and otherwise do whatever you want — including relicensing under proprietary terms. GPL and AGPL are copyleft. CC BY-SA is for content (and is share-alike, not permissive).
7What is the practical difference between BSD 2-Clause and BSD 3-Clause licenses?
A.3-Clause adds a 'no endorsement using contributor names' clause that 2-Clause lacks
B.3-Clause is copyleft while 2-Clause is permissive
C.3-Clause requires a patent grant while 2-Clause does not
D.3-Clause is only valid for academic use
Explanation: BSD 2-Clause keeps the copyright notice and disclaimer of warranty. BSD 3-Clause adds a third clause prohibiting using the names of contributors to endorse derived products without prior written permission. Both are permissive; neither contains an explicit patent grant (a key contrast with Apache 2.0).
8Which of the following is a feature of the Apache License 2.0 that the MIT and BSD licenses do not provide?
A.An explicit patent grant from contributors and a defensive patent termination clause
B.Strong copyleft on all derivative works
C.A network use disclosure obligation
D.Mandatory share-alike for documentation
Explanation: Apache 2.0 explicitly grants a patent license from each contributor and terminates it if the recipient files a patent suit alleging the work infringes. MIT and 3-Clause BSD are silent on patents, which is one reason large corporate projects often prefer Apache 2.0 over MIT.
9Why was Apache 2.0 historically incompatible with GPLv2, but compatible with GPLv3?
A.GPLv3 was rewritten to accept Apache 2.0's patent and indemnification terms; GPLv2 had no compatible patent language
B.Apache 2.0 is copyleft like GPLv3 but not like GPLv2
C.GPLv3 removed the source-code requirement, removing the conflict
D.Apache 2.0 was relicensed in 2007 to remove conflicting terms
Explanation: GPLv2 included no language that accommodated Apache 2.0's additional patent and indemnification provisions, so the FSF declared the two incompatible. GPLv3 was specifically written to be compatible with Apache 2.0 by allowing such 'additional permissions' as compatible terms. Apache itself was not relicensed.
10What is dual licensing?
A.The same software is offered to users under either of two different licenses, often a copyleft license and a commercial license
B.Two separate software products share one license
C.A single license that covers both software and trademarks
D.A license that automatically converts to public domain after 10 years
Explanation: Dual licensing offers the same code under two licenses (typically a copyleft like GPL plus a commercial proprietary license). Users who can comply with the copyleft use it for free; those who cannot (e.g., they want to ship a proprietary derivative) buy the commercial license. MySQL and Qt have used this model.

About the LPI OSS Essentials Exam

The LPI Open Source Essentials (exam 050-100) certification verifies foundational knowledge of open source software, licenses (copyleft and permissive), business models, governance, project management, and modern collaboration tooling like Git and CI/CD.

Questions

40 scored questions

Time Limit

60 minutes

Passing Score

500 / 800 (scaled)

Exam Fee

$120 USD (Tier 1) (Linux Professional Institute (LPI))

LPI OSS Essentials Exam Content Outline

13%

Software Fundamentals

Source code, compilers and interpreters, static and dynamic linking, software architecture (client-server, monolith vs microservices, APIs), and on-prem vs cloud deployment (IaaS, PaaS, SaaS).

23%

Open Source Software Licenses

Open Source Definition and Four Freedoms, license compatibility, dual licensing, copyleft (GPL, LGPL, AGPL, MPL, EPL), and permissive licenses (MIT, BSD, Apache 2.0, ISC).

13%

Open Content Licenses

Creative Commons (CC0, CC BY, CC BY-SA, CC BY-NC, CC BY-ND), GFDL, ODbL, CDLA, and the difference between free-culture and non-free-culture licenses.

16%

Open Source Business Models

Open core, freemium, subscription, support and consulting, SaaS, enterprise vs community editions, source-available licenses (BSL, SSPL), and OSPO responsibilities.

16%

Project Management and Releases

Waterfall, Agile (Scrum, Kanban), DevOps, semantic versioning, LTS and EOL, rolling vs point releases, governance models (BDFL, meritocracy, foundation, do-ocracy), CLA, DCO, and Code of Conduct.

19%

Collaboration, Tooling, and Supply-Chain Security

IDEs, CI/CD, Git source control (branches, forks, pull requests, sign-off), issue trackers, IRC and Matrix, SBOM (SPDX, CycloneDX), SCA, reproducible builds, Sigstore, SLSA, and CVE/NVD.

How to Pass the LPI OSS Essentials Exam

What You Need to Know

  • Passing score: 500 / 800 (scaled)
  • Exam length: 40 questions
  • Time limit: 60 minutes
  • Exam fee: $120 USD (Tier 1)

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

LPI OSS Essentials Study Tips from Top Performers

1Memorize the difference between OSI's Open Source Definition (10 criteria) and the FSF's Four Freedoms (0 through 3) - exam stems frequently mix the two frameworks.
2Build a license cheat sheet contrasting GPLv2, GPLv3, AGPL, LGPL, MPL 2.0, MIT, BSD 2/3-clause, and Apache 2.0 across copyleft strength, patent grants, and SaaS triggers.
3Know the GPLv2 -> GPLv3 changes (anti-Tivoization, explicit patent grant, Apache 2.0 compatibility) and why some companies and even Linus Torvalds preferred to stay on GPLv2.
4Learn the Creative Commons matrix (BY, SA, NC, ND, CC0) and which combinations qualify as 'free culture' (BY, BY-SA, CC0).
5Practice identifying business models (open core, freemium, subscription, SaaS, services, dual license) given a vendor scenario.
6Be fluent in CLA vs DCO vs Code of Conduct - all three appear as distractors against each other in governance questions.
7Drill semantic versioning rules (MAJOR.MINOR.PATCH) and lifecycle terms LTS, EOL, rolling release, point release.
8Memorize SBOM formats (SPDX, CycloneDX), SCA tools, Sigstore (cosign, Fulcio, Rekor), and the SLSA framework levels - supply-chain security is a meaningful slice of recent exam forms.

Frequently Asked Questions

What is on the LPI Open Source Essentials (050-100) exam?

Six topic groups: Software Fundamentals (source code, linking, architecture, cloud), Open Source Software Licenses (GPL family, MIT/BSD/Apache/MPL, compatibility), Open Content Licenses (Creative Commons, GFDL, ODbL), Open Source Business Models (open core, SaaS, OSPO), Project Management (Agile, DevOps, semver, LTS, governance, CLA, DCO), and Collaboration tooling including Git, CI/CD, SBOM, and supply-chain security.

How long is the exam and how many questions does it have?

LPI Open Source Essentials is 40 questions in 60 minutes. Question types include multiple choice and fill-in-the-blank, delivered via Pearson VUE at a test center or OnVUE remote proctoring.

What is the passing score for 050-100?

LPI uses a scaled 200-800 scoring system across all its exams. You need 500 or higher to pass. Because LPI calibrates difficulty between forms, the raw number of correct answers required for 500 varies by exam form.

How much does the exam cost?

In Tier 1 markets the LPI Open Source Essentials exam fee is approximately $120 USD per attempt, the same price as Linux Essentials, Security Essentials, and Web Development Essentials. LPI charges lower fees in many markets (India, Pakistan, Brazil, Africa); confirm your local price on the official LPI exam pricing page before buying a voucher.

Who should take Open Source Essentials?

Open Source Essentials is aimed at people who work with or around open source but do not need a deep technical Linux exam: project managers, procurement, legal/compliance, OSPO staff, junior developers, students, and anyone preparing for higher LPI exams who wants a strong vocabulary in licenses, governance, and supply-chain hygiene.

How does it compare to LPI Linux Essentials (010-160)?

Linux Essentials focuses on Linux command line, file system, and basic administration. Open Source Essentials focuses on the open source ecosystem itself: licenses, governance, business models, and supply chain. The two exams are complementary — many candidates take both before progressing into LPIC-1.