Given a class with a public variable theTint
of type Color,
which of the following methods are consistent with the JavaBeans
naming standards?
getColor()
getTint()
getTheTint()
gettheTint()
theTint()
C.
The method's name is get followed by the name of the variable.
The variable name's first character is converted to uppercase.