Question: How is the random seed for MATLAB's random number generator first initializedin a MATLAB Session?
- Seed is undefined until it is initialized by the user.
- Seed is set to a value based on the current time when user first calls rand()
- Seed is set to a value based on the current time on startup.
- Seed is set to a static default value on startup.
Answer: The correct answer of the above question is Option D:Seed is set to a static default value on startup.