What is a "cold start" of a mobile app?
- aThe OS creates a brand-new process and initializes everything from scratch✓
- bThe app resumes exactly where the user left off
- cThe app receives a push notification while in the foreground
- dThe app relaunches automatically from a cached UI snapshot after an earlier crash
Explanation:Cold start happens when no process for the app exists in memory. The OS must create the process, start the runtime, build initial objects, and construct the first screen — the slowest launch path.