Class names must start with an uppercase letter.
Group of answer choices
True
False
True
The application/config/routes.php file determines which controller is called by default
Group of answer choices
True
False
False
In the example: example.com/index.php/blog/, the , CodeIgniter would attempt to?
Group of answer choices
Create a class bolg
Find a controller named Blog.php
Call a function blog
find a controller named Blog.php
In this example: example.com/class/function/ID/foo/bar, what is the controller class?
Group of answer choices
class
function
example.com
class
A Controller is a class file that can be associated with a URI.
Group of answer choices
True
False
True
The .php file extension does not need to be specified unless you use something other than .php.
Group of answer choices
False
True
True
To load a view file you will use the following method:
Group of answer choices
$this->load->data(‘name’);
$this->load->file(‘name’);
$this->load->view(‘name’);
$this->load->view(‘name’);
Views are called directly and must be loaded by a controller.
Group of answer choices
True
False
True
An example of storing view within sub-directories: $this->view(‘subdirectory_name/file_name’);
False
True
False
An example of storing view within subdirectories: $this->load->view(“directory_name/file_name”);
Group of answer choices
False
True
True
The default controller can be set from which configuration file:
Group of answer choices
Config
Database
Routes
autoload
Routes
It is a class file that can be associated with a URI.
Group of answer choices
Controller
Function
Control
Controller
CodeIgniter will intelligently handle multiple calls to $this -> load -> view() from within a controller.
False
True
True