The mechanics of finding information online — from what a URL actually is, to using logical search operators effectively.
Applying Boolean logic to search criteria (also see 10.4.4) lets you narrow or broaden search results precisely:
| Operator | Effect | Example |
|---|---|---|
| AND | Both terms must appear | cats AND dogs |
| OR | Either term may appear | cats OR dogs |
| NOT | Excludes a term | cats NOT dogs |
Example
Searching 'python NOT snake' on a search engine returns results about the programming language while filtering out results about the reptile.
💡 Exam Tip
Boolean logic here directly reuses the AND/OR/NOT concepts from 10.4.4 (Solution Development) — if you understand it there, you already understand it here.