Multiple choice technology programming languages

It is possible to re-load an object and all its collections at any time, using the xxxx() method. This is useful when database triggers are used to initialize some of the properties of the object.What is the xxxx() method ?

  1. Refresh();

  2. Flush();

  3. Fetch();

  4. Load()

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

The refresh() method re-loads an object and all its collections from the database, overwriting any changes made in memory. This is particularly useful when database triggers initialize or modify properties after a save operation. It ensures your in-memory object reflects the actual database state.