00:01
We're going to mark the following as true or false.
00:07
The member variables of a class must be of the same type.
00:12
This is false.
00:13
The member variable of a class can be of the same type.
00:22
The member functions of a class must be public.
00:26
This is also false.
00:28
The member functions of a class can have different access specifiers, including public, private, and protected.
00:35
It's not mandatory for them to be public.
00:39
By default, if no access specifier is provided, member functions are private.
00:47
A class can have more than one constructor.
00:51
This is true.
00:56
It's true that a class can have more than one constructor...