Problem Statement
What are global objects in Node.js?
Explanation
Global objects are accessible anywhere in Node.js without importing them. Examples include `process`, `console`, `Buffer`, `__dirname`, and `setTimeout`. These objects provide environment info, logging, and system-level access.