Hi,
I’ve noticed small thing in mid section quiz. In the question:
When would you use a structure instead of a class?
The correct answer is:
For simple data types, typically with no functions and public data.
This is a bit misleading because one of the major differences between struct and class is that sturcts have everything public by default. So when somebody is using struct it typically has data that is only public.