Home > Web Development > Quizzes > CakePHP Fundamentals Test
CakePHP Fundamentals Test
Fast practice, instant feedback. Timer auto-submits when time’s up.
Avg score: 24% Most missed: “Which is the default controller provided to serve static content?”
CakePHP Fundamentals Test
Time left 00:00
25 Questions

1. Which data retrieval function call is not valid? (Table: users; Columns: id - email - name - username)
2. Which data retrieval function call is the most suitable to build nested results with the parent_id field?
3. Which TextHelper method allows you to transform links inside any text to valid HTML link tags?
4. Which file may NOT be used to configure Cache settings?
5. How can you share logic between controllers?
6. What kind of functionality does the Security Component provide?
7. How will you include an element (header/footer etc.) within a layout?
8. Which of the following is not a built-in validation rule name?
9. What is the function of a model?
10. True or False? Scaffolding in CakePHP also allows developers to define how objects are related to each other - and to create and break those links.
11. Which data retrieval function call is most suitable to build input select boxes?
12. Which data retrieval function will return one result only?
13. What is the default value of $recursive?
14. Which database storage engine is not supported by the core installation?
15. What is the proper way to delete a record?
16. How can you load all plugins at once?
17. True or False? CakePHP is based on the MVC design pattern.
18. You want to generate three instances of a model form within the context of a view. What syntax is most correct to use with FormHelper::input() ? $i represents an incremented variable.
19. Which data retrieval function call is most suitable to build input select boxes?
20. Which of the following is an example of a model definition in CakePHP?
21. Which of the following is an example of the definition of the find list function?
22. How does one create a transaction?
23. Which of the following function will be called before any action get executed ?
24. Which testing method allows you to test HTML generation easily?
25. On which layer could you implement your own paginateCount() method?