Multiple choice technology programming languages

Which method is used to write data to the SOL file during a open session?

  1. sharedObject.flush

  2. sharedObject.write

  3. sharedObject.in

  4. sharedObject.open

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

The flush() method immediately writes shared object data to the local SOL file. The write() method does not exist for SharedObject, while open() and in() are not the standard methods for persisting data - open() establishes the connection and get() retrieves data.