Answer:
Class Names should follow the Pascal convention where the starting letter should be capital
Step-by-step explanation:
Always use Pascal Case for class names. Try to use noun or noun phrase for class name. Use CamelCase( In this the first letter of word always in small letter and after that each word with capital letter.) for data members(private,public,protected... instance variables) in the class and use Pascal case for member functions
Giving Proper class names increase the readability of the code. if one developer wrote the code and other developer needs to work on that code in future ,then the program/code should be in such a way that any developer can understand what it is meant for. We can achieve this by following proper naming conventions. it is one of the best practice or coding guidelines that every developer should follow. it will increase productivity and reduces complexity