Multiple choice technology programming languages Which of the following is value type string class delegate struct interface Reveal answer Fill a bubble to check yourself D Correct answer Explanation In C#, value types are stored directly on the stack and contain their actual data. Structs are value types, while classes, delegates, interfaces, and strings are reference types that store references to heap-allocated objects.