Multiple choice technology programming languages which of the following is correct? Structure is a value type and Class is a reference type Class is a value type and Structure is a reference type Structs can't have destructors, but classes can have destructors Class can have implementation inheritance, but Structs cannot have it Structs can have implementation inheritance, but Class cannot have it Reveal answer Fill a bubble to check yourself A,C,D Correct answer Explanation Structures are value types stored on the stack, while classes are reference types stored on the heap. Structs cannot have destructors (finalizers) and do not support implementation inheritance. Classes support both inheritance and destructors.