Q1. What is meant by MVC (MODEL-VIEW-CONTROLLER)?
ANSWER:
model view controller, it is a software architecture, used to isolates business logic from presentation logic. cakephp is
based on mvc pattern.
Q2. What are 3 important parts of MVC (MODEL-VIEW-CONTROLLER)?
ANSWER:
1. The Model represents the application data
2. The View renders a presentation of model data
3. The Controller handles and routes requests made by the client
Q3. What is features in cake php?
ANSWER:
list some of the features in Cake php
1. Compatible with versions 4 and 5 of PHP
2. MVC architecture
3. Built-in validations
4. Caching
5. scaffolding
Q4.what is the name of Cake’s database configuration file?
ANSWER:
by default it is database.php.default, you can find it in /app/config/database.php.default
for connecting to database, it should be renamed to database.php
