training repository
coding practices to be followed
*all variable names begin with small letter *all method names begin with small letter *all class names and interface names begin with capital leter *there should not be any spelling errors *variable names and method names should be meaningful *code should be properly formatted by ctrl+shift+f *there should not be any capital letter in package names *method should be preceded with javadoc comments *follow mvc design pattern *do not repeat the same logic at multiple places *use camelcase where names are long *follow the clean coding practices *follow DRY principles *follow SOLID principles