1.

What are naming conventions?

Answer»
  • In Variables, all letters must be lowercase and WORDS should be separated by underscores.
  • Modules and CLASSES use MixedCase and no underscore is REQUIRED. Each word must start with uppercase.
  • The database table name should have a mix of lowercase and underscore, and all names should be in the plural FORM.
  • Model is represented by MixedCase and has singular table name.
  • The names of CONTROLLER are in plural form.


Discussion

No Comment Found