Classes should be named with an uppercase letter, and be concise, for example Customer or Product. Method names begin with a lowercase letter, with subsequent words in uppercase . They are actions and should be verbs.
Read moreIs class and method same?
Yes, It is allowed to define a method with the same name as that of a class . There is no compile-time or runtime error will occur.
Read more