Multiple choice .net vb

Which of the following Types will have data of fixed size

  1. Value Type

  2. Reference Type

  3. None

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

Value types (int, bool, char, struct, enum) store data directly and have a fixed, predetermined size. Reference types (class, string, object) store references to heap-allocated objects; their memory size varies based on the object and is not fixed.