Multiple choice technology architecture

What is Persistence?

  1. The capability of an object to exist after the program that created it has stopped running.

  2. The ability of a class to support multiple threads.

  3. An Error-Handling technique.

  4. None of the above.

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Persistence means data survives beyond the execution of the program that created it. Objects can be stored to disk or database and reconstructed later, allowing data to exist between program runs. Thread support, error handling, and other options are unrelated to the core concept of persistence.