The option that is true about classes and structs is option a. A class is a reference type, whereas a struct is a value type.
A struct is a value type, while a class is a reference type. Structure variables can be generated with or without new, whereas objects are created using new. Always build an object faster than a structural variable.
Classes are reference types, whereas Struct are value types. Classes are stored on the heap, whereas Structs are kept on the stack. A reference type stores a reference to an object in memory, whereas value types store their value in the memory where they are declared.
In essence, a class is made up of fields and methods (member functions that define actions). A structure is a grouping of variables of various data kinds under one heading. It resembles a class almost exactly.
Learn more about structs from
https://brainly.com/question/20211782
#SPJ1