How do you specify the base URL for pagination links?
By using the url configuration option
By using the siteURL configuration option
B setting the linkURL option
By using the baseURL configuration option
By using the baseURL configuration option
How do you pass the pagination links to a view?
Group of answer choices
$data[‘pager’] = $pager;
$data[‘pagination’] = $pager->links();
$data[‘pagination’] = $pager->createLinks();
$data[‘links’] = $pager->generateLinks();
$data[‘pager’] = $pager;
Which of the following is a valid configuration option for pagination in CodeIgniter 4?
resultsPerPage
perPage
itemsPerPage
items
perPage
Which library in CodeIgniter 4 is used to implement pagination?
Group of answer choices
Database
Form Validation
Session
Pagination
Pagination
Which method in the Pagination library is used to create pagination links?
Group of answer choices
getLinks()
paginationLinks()
generateLinks()
createLinks()
createLinks()
Which method is used to remove a specific piece of session data?
Group of answer choices
clear()
deleteData()
remove()
removeData()
remove()
Which method is used to regenerate the session ID in CodeIgniter 4?
Group of answer choices
newSessionID()
refreshID()
regenerate()
resetID()
regenerate()
Which function is used to set session data in CodeIgniter 4?
Group of answer choices
setSessionData()
set()
updateSession()
addSessionData()
set()
Which session driver uses the file system for storing session data in CodeIgniter 4?
Group of answer choices
CodeIgniter\Session\Handlers\RedisHandler
CodeIgniter\Session\Handlers\DatabaseHandler
CodeIgniter\Session\Handlers\CookieHandler
CodeIgniter\Session\Handlers\FileHandler
CodeIgniter\Session\Handlers\FileHandler
How do you retrieve all session data at once in CodeIgniter 4?
Group of answer choices
retrieveAll()
getSessionData()
fetchData()
get() without any arguments
get() without any arguments
What is the default number of links shown in pagination?
Group of answer choices
2
5
3
4
2
Which helper function can be used to create pagination links directly in the view?
Group of answer choices
pager->pagination()
pager->generate()
pager->create()
pager->links()
pager->links()
Which method is used to start a session in CodeIgniter 4?
Group of answer choices
startSession()
beginSession()
initSession()
session()
session()
What does the getFlashdata() method do in CodeIgniter 4?
Group of answer choices
Retrieves persistent session data
Retrieves a specific piece of session data
Retrieves all session data
Retrieves temporary session data that is only available for the next request
Retrieves temporary session data that is only available for the next request
Which session handler uses a database for storing session data?
Group of answer choices
CookieHandler
FileHandler
MemcachedHandler
CodeIgniter\Session\Handlers\DatabaseHandler
CodeIgniter\Session\Handlers\DatabaseHandler
What happens to session flashdata after it is retrieved once?
Group of answer choices
It is stored permanently
It is automatically deleted
It is retained for the duration of the session
It is moved to a new session key
It is automatically deleted