0% found this document useful (0 votes)
209 views

Application Development and Emerging Technology All in

This document provides a list of questions and answers related to application development and emerging technologies. Some of the topics covered include CodeIgniter methods and functions, HTML form elements, CSS, jQuery commands, PHP basics, and database concepts.

Uploaded by

Inah Valdez
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
209 views

Application Development and Emerging Technology All in

This document provides a list of questions and answers related to application development and emerging technologies. Some of the topics covered include CodeIgniter methods and functions, HTML form elements, CSS, jQuery commands, PHP basics, and database concepts.

Uploaded by

Inah Valdez
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 21

lOMoARcPSD|23348313

Application Development AND Emerging Technology ALL IN

Application Development and Emerging Technology Source (AMA Computer University)

Studocu is not sponsored or endorsed by any college or university


Downloaded by Sha Valdez ([email protected])
lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

The function or ci code to show or call the client-side


show_404()
"non-existing page" error
What do you call a structure made up of series of
intersecting straight (vertical, horizontal and angular) grid
or curved guide lines used to structure content?
A rule reference that returns FALSE if the form
element contains anything other than numeric numeric
characters.
CI method or code to set a rule in form validation. $this->form_validation->set_rules()
row_array() fetch the data as a single row and
result_array() fetch the data as a multi-dimensional True
array.
Form Helper method or code to return an HTML
form_password()
password input type.
CI method or code to set an error message in form
$this->form_validation->set_message()
validation.
One of the main points of interaction between a user
and a web site or application. They allow users to HTML Forms
send data to the website.
What year did PHP began its development? 1994
Who is the inventor of PHP? Rasmus lerdorf
URI stands for? Uniform Resources Identifier
PDO stands for Personal Data Objects. False
Version of PHP that introduces the use of
4.1
superglobals.
Year that PHP was officially called Personal Home
1995
Page Tools.
It is a URI Component that locates the path or
Web Address
address.
Year that PHP 3 was released 1998
PHP version that enabled the filter extension by
5.2
default Native JSON default
CI file directory where autoload classes and
Application/config/autoload.php
functions are defined.
CI method or code to load the form validation library. $this->load->library('form_validation')
Defines a multi-line text input control. //< textarea > tag
Query Builder class method that inserts record on
$this->db->insert()
the database.
Form Helper method or code to return an HTML
form_radio()
radio input type
CI function code to load the database class. $this->load->database();
The controller's $data["title"] variable will be
True
delivered in a view as $title.
It is the Data Access Layer or Persistence Layer of
Model
the MVC Layered Architecture.
Area that can be specified by the cols and rows
Textarea
attributes, or even better; through CSS' height and

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

width properties.
It is a line that is not read/executed as part of the
comment
program.
Form Helper method or code to return an HTML
form_checkbox()
checkbox input type.
_construct() method executes when a class is
True
created or instantiated.
Database group configuration in CI is stored in a
True
multi-dimensional array.
Form Helper method or code to return an HTML
form_button()
button.
Element can be placed onto a web page in a pre-
Checkbox
checked fashion by setting the checked attribute.
Delimiter symbol for rules in form validation. "|" or pipe symbol
CI method or code that display/echo error messages
validation_errors()
when form_validation->run() returns false.
Define styles for your documents, including the
design, layout and variations in display for different CSS
devices and screen sizes.
A materializeCSS class that extends up to 100% of
container-fluid grid
the browser's width to hold page contents.
It is the vertical dimension of the grid system that
hold the actual page contents and is limited into 12s column
per line.
This command is used to produce a fading out effect
fadeOut()
within a given time on a selected element
This command is used to get or set values from and
text()
to a noninput element like divs.
This command is used to create a sliding to the left
slideLeft()
transition within a given time on a selected element
This command is used to get or set values from and
Val
to an input element particularly textboxes.
MaterializeCSS class prefix for desktop or larger
l1
devices
URI stands for Uniform Resource Identity False
Element represents a control that presents a menu
HTML select
of options.
Can hold an unlimited number of characters, and the
TextArea
text renders in a fixed-width font.
Meaning of URL. Uniform Resource Locator
Other term used for Option buttons? Radio Buttons
The function or ci code to load a view. $this->load->view
What do you call the 1st segment of the URI? Controller
CodeIgniter is developed PHP.org False
It is a configuration file that is used for configuration
of site-access issues, such as URL redirect, URL .htaccess
shortening, Access-security control.

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

Controller is also knows as the data access layer. False


It is a URI Component that serve as persistent,
URN
location-independent identifiers
These are functions which are passed to another
function and takes this "other function" as a Callbacks
parameter.
is the process of redirecting or remapping a
Routing
controller class or method.
URI is the historical name that serve as persistent,
location-independent identifiers allowing the simple
False
mapping of namespaces into a single URN
namespace
Symbol used to combine 2 sting values to create one
.
string.
.htaccess file that will automatically route the
True
index.php next to the Controller
Meaning of URN Uniform Resource Name
application to help the program perform small or
simple task such as formatting a parameter, single report page
computation or series of commands
formatted result of database queries and contain
reports
useful data for decision making and analysis
are templates for reports queries
returns a string containing any server messages,
$this->email->print_debugger()
email header and the email message.
runs a back-end database query and displays the
constant
information in organized and informational manner
bcc stands for Black Carbon Copy False
$that->db->insert_id() function returns the auto
False
incremented or last inserted id from the query.
CodeIgniter allows us to send email in a neat and
simple way. We can load the email class by True
Declaring $this->load->library('email');
A Query is a formatted result of database queries
and contain useful data for decision making and False
analysis
variables are session variables that expires with a
tempdata
given time limit.
Organization that sponsors CI Ellislab
It can be said as the entry point of application. Controller
encrypted email as a key md5
It is very useful on web forms security against online
captcha
bots, crawlers and spammers.
variables that store values but it can only contain
constant
strings and numbers
functions that accepts input parameters and returns
form helper class
an HTML input form element.
methods is very useful on getting pieces of data, one look up

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

at a time particularly on multiple tables and


databases
is the process of organizing the columns/records or
attributes and tables of the database to minimize database normalization
data redundancy.
SSPR stands for self-service password reset
Name the configuration file needed to set helper autoload config
used as a function library that we can just load to the
helper
controller or view.
¬¬function returns the auto incremented or last
$this->db->insert_id()
inserted id from the query
A component that packages a non-native app so that
native wrapper
it is viable for native distribution.
An architecture style that uses discrete software
services (each with one clearly defined business
task) with well-defined, loosely-coupled interfaces service-oriented architecture(soa)
that are orchestrated to work as a complete system
by sharing functionality.
A mobile application that is written in a programming
language that is directly compatible with the target native app
platform.
A development process that works on a very short
est-driven development(TDD)
development cycle.
A text messaging service component of a phone
using standardized communication protocols to send simple message service (SMS)
short text messages.
A mobile application developed using web standards
web app
and accessed through a browser.
An operating system designed specifically to run on
mobile OS
mobile devices.
An HTML meta tag that tells the browser how to
behave when it renders the web page. The viewport viewport
is also a term for the section of the web page in view.
Variables that can be accessed anywhere on the
web application because it is stored on the browser superglobal
session
Function that fetch the data as a multi-dimentional
result_array()
array
File that will automatically route the index.php next to
.htaccess
the Controller
Method will execute codes once the class is created
__construct
or instantiated.
What function can be used to access session
session_start()
variables on webpages?
You can display the error 404 page by using what
show_404()
function
SEARCH methods is very useful on getting pieces of
False
data, one at a time particularly on multiple tables and

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

databases.
Database Normalization is the process of organizing
True
records to minimize redundancy.
Self-survey password reset (SSPR) is defined as any
process or technology that allows users who forgot
False
their password authenticate their account and reset
their passwords without calling the help desk.
Database Normalization is the process of organizing
the columns/records or attributes and tables of the True
database to minimize data redundancy.
A website layout that uses media queries to change
the site’s design for specified devices or window Adaptive layout
sizes.
An HTML5 standard that allows a web application to
Appcache
be cached and available offline.
A wireless technology networking protocol used to
Bluetooth
exchange data over short distances.
The idea of exposing to the end user the change of
Data animation
data, provided the data is changing quite a lot.
A sensor that measures the acceleration (change in
velocity) of an object in order to determine Accelerometer
movement of a mobile device.
A mobile platform-specific API that lets applications
Device API
access specific mobile hardware functionality.
A specification that defines the fifth major revision of
HTML5
HTML.
A mobile phone with internet access and music
playback that lacks the full functionality of a Feature phone
smartphone.
An instrument that measures the orientation of a
Gryoscope
device in order to orient display.
An application that duplicates the functionality of
Emulator
hardware or operating systems for testing purposes.
A wireless local area network that allows
smartphones, computers, and other devices to wi-fi
connect to the internet.
A network of physical objects embedded with
electronics, software, sensors, and connectivity to
internet of things
enable it to achieve greater value and service by
exchanging data with other connected devices.
Information that is delivered immediately after
Real-time data
collecting it without any delay.
A view that displays web pages within an application. webview
A feature for access control systems that allows
users to log in to (or log out of) multiple, independent single ign-on(SSO)
software systems using one set of credentials.
For mobile applications, this refers to anything that
stickiness
encourages the user to stay active in the app for a

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

longer period of time.


A website layout based on a fluid grid, allowing the
site to have hundreds of dynamically generated
responsive layout
states with mostly minor differences based on
browser window size.
An abstraction layer that gives a non-application
native bridge
access to mobile device APIs.
A common XML-based open data format for security assertion markup
authentication. language(saml)
A development tool, sometimes including a mobile
middleware server, that builds hybrid or native apps mobile application development
for each mobile platform from a single codebase. platform(MADP)
IncludesMEAPs and MCAPs.
A term to describe all aspects of the end user’s
User Experience
interaction with an application.
A set of programming tools and resources built
specifically to aid software development on a software developmentkit (SDK)
particular platform or technology.
A common open standard for authorization. Oauth
A term to describe the ways in which the end user
User interface (UI)
directly interacts with a device or application.
An application developed for use on small, wireless
mobile app
devices such as tablets and smartphones.
A mobile application written in HTML, CSS, and
JavaScript that uses a web-to-native abstraction
layer, allowing the application to access mobile hybrid app
device APIs that pure web applications cannot
access.
Short messages that mobile applications can send to
Push notification
users even if the application isn’t open.
$(document).ready() function calls if the browser
contents has properly loaded its contents and is False
browsing.
IDENTIFICATION: Name the university that created
Carnegie Mellon University
MaterialDesign CSS
DataTable jQuery plugin helps us enable sorting,
True
pagination and search to our table data.
.text() is used to get or set values from and to a non-
True
input element like divs.
We used the base_url() function to return our domain
True
or application path
AJAX engine is an XMLHttpRequest object and
jQuery makes it a lot more easier for us because of True
its AJAX development API.
javascript library that makes web scripting easier for
jQuery
us In jQuery the scr tag is use for linking.
In jQuery the scr tag is use for linking. False
.vals() It is used to get or set values from and to an False

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

input element particularly textboxes.


Successful - this will be triggered upon the AJAX
request and usually accepts the parameter response
False
response contains the loaded content from the URL
requested.
jQuery is a java library that makes web scripting
False
easier for us.
AJAX stands for Asynchronous Java False
Who first use the term AJAX? Jesse James Garrett
IDENTIFICATION: CSS stands for Cascading style sheets
Constructors do return a value and they can do
False
some default work.
This validation method permits you to set validation
set_rules
rules.
A configuration variables contain full URL to the
base_url
controller class/function containing your pagination
You can manually remove the index.php in
True
CodeIgniter by .htaccess file
This is used to emphasize a quote or citation by
Blockquote
putting a colored left border to the text
In file upload you'll need a destination directory for
True
your uploaded images.
It is used to get or set values from and to an input
val
element particularly textboxes.
In CodeIgniter the Calendar class enables you to
False
dynamically create calendars.
Code Igniter Query Builders (Active Records) allows
True
safer queries.
You cannot add a URL suffix in CodeIgniter. False
An email preference for mail sending protocol protocol
Function that redirect to other pages. redirect
If set to true, if a file with the same name as the one
you are uploading exists, it will be overwritten. If set
overwrite
to false, a number will be appended to the filename if
another with the same name exists.
Is a type of challenge-response test used in
computing to ensure that the response is not captcha
generated by a computer.
Constructors are useful if you need to set some
default values, or run a default process when your False
class is instantiated.
Given the URL
http://www.abc.com/student/record/201512345 State controller
the following student
To make a function private, simply add an ________
as the name prefix and it will not be served via a underscore
URL request.
CodeIgniter's Pagination class is very easy to use, False

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

but it is not 100% customizable, either dynamically or


via stored preferences.
Function when showing errors in CI page show_404
Variables that can be accessed anywhere on the
web application because it is stored on the browser superglobal
session
In order for the image class to be allowed to do any
processing, the folder containing the image files be False
write protected
A configuration variables that set number of items
per_page
you intend to show per page.
The default controller assigned to CodeIgniter when
Welcome
first setup is set to ________.
It is used to produce a fading in effect within a given
fadeIn(interval)
time on a selected element
What file you need to edit so that a given config file
autoload.php
are automatically loaded.
The person that introduce MVC. Trygve Reenskaug
Ajax engine uses what type of object XMLHttpRequest
Permits you to set the value of an input form or
set_value
textarea and used in form validation.
Variables are session variables that expires with a
tempdata
given time limit.
How do you get the value of a config file item named
//$this->config->load('author');
'author'.
This refers to the data access layer. Model
This method returns a single result row row()
Which of the following refers to the business logic Controller
CodeIgniter's Image Manipulation class lets you
True
perform Image Thumbnail Creation
A cart library method that permits you to destroy the
destroy()
cart.
Given the URL
http://www.abc.com/student/record/201512345 State base_url
the following www.abc.com
What do you call common functions or small
snippets of code used in every or most Information helpers
Systems
A cart library method that displays the total number
total_items()
of items in the cart.
What do you call variables are just like session
variables except it is only available on the next Flashdata
request
CodeIgniter's Image Manipulation class lets you
False
perform Image Watermaking.
It refers to the horizontal dimension of the grid
rows
system
The segment index value for the controller. 1

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

A method under the calendar library that will display


generate()
the calendar
This permits you to extend the validation class to
Callbacks
meet your needs.
How many parameters does CAPCHA requires 3
Which of the following statements will create a form
//form_open('x/y');
that points to your base URL plus the "x/y"
A cart library method that returns the total amount total()
Creator of CI Ellislab
It is a function that overrides the normal behavior in
which the URI determines which function is called,
//_remap()
allowing you to define your own function routing
rules.
This Class provides a means to retrieve
configuration preferences and it is automatically Config
initialized by the system.
MVC is a software architecture and architectural.
True
pattern used in software engineering
An algorithm that is used in security hashing that
MD5
transforms data into a 128 bit string
A rule reference that returns FALSE if the form
required
element is empty.
A configuration variables represents the total rows in
total_rows
the result set you are creating pagination for
It's a javascript library that makes web scripting
JQuery
easier
Runs the selection query and returns the result. $this->db->get()
When uploading file the form must be of type "file". False
Which of the following is correct from the given
//$this->db->limit(10);
statement below:
This refers to the presentation layer View
Most web application frameworks are based on the
True
model-view-controller (MVC) pat tern.
Returns a validation error message from the Form
Validation Library, associated with the specified field form_error()
name
Web applications that use the WebForm approach
commingle Program Code and Page Design Code False
only.
A cart library method used to update the information
update()
of a specific cart item.
Null keywords should be written in Uppercase
Which of the following is correct from given the
statement below: //$this->db->select('title, content, It will return only the given fields title,
date'); //$query = $this->db->get('mytable'); //return content, and date of the records
$query->result();
CodeIgniter provides rich set of libraries for
True
commonly needed tasks.

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

This wildcard type use to match a segment


(:num)
containing only numbers.
It is a software framework that is designed to support
the development of dynamic websites, web Web Application Framework
applications, web services and web resources.
File upload directory should set its file permission to
777
____
What functionality was added to PHP 5.1 as
PDO
interface for accessing databases?
The page that displays a message that the
Error 404
requested page was not found.
What is the meaning of URL? Uniform Resource Locator
PHP development began in 1995. False
php.org is the official php resource. False
Originally, PHP is known as "Personal Home Pages" False
PHP is one of the most widely used and
True
recognizable web technology used on the Internet.
In CI what does URI stands for uniform resource identifier
An upload helper method that returns an array
containing all of the data related to the file you data
uploaded.
In file upload the maximum size are set in
_________ that the file can be. Set to zero for no kilobytes
limit
This function retrieves the URL to your site, along
with the "index" value you've specified in the config //$this->config->site_url();
file.
Using custom routing rules, you have the power to
map any URI to any controller and method, and True
break free from the normal convention.
Given the URL
http://www.abc.com/student/record/201512345 State method
the following record
In shopping cart if the quantity is set to negative
True
value, the item will be removed from the cart.
This function will be called if the browser contents
//$(document).ready()
has properly loaded its contents and is ready.
Elements from a config.php file are only locally
False
accessible.
Given the URL
http://www.abc.com/student/record/201512345 State data (ex. id)
the following 201512345
It is an Application Development Framework - a
CodeIgniter
toolkit - for people who build web sites using PHP
CodeIgniter constants are defined in what folder config
In CodeIgniter the validation system supports
False
callforward to your own validation methods.
Which is the right code for loading models //$this->load->model('model_name');

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

Which of the following has the correct syntax of


//this->db->select();
active records.
A query method used to returns the query result as
result()
an array of objects, or an empty array on failure
The default file extension for PHP file is ".php" True
PHP version that uses void return type, class
7.1
constant visibility modifiers, null types.
PHP runs on various platforms operating system
False
such as apache and IIS.
The function of ci code to return a URI segment $this->uri->segment
The first URI segment controller
It is the process of redirecting or remapping a
Routing
controller class or method.
Andi Gutmans was the inventor of PHP. False
Version of PHP that uses namespace support late
5.3
static binding. URN stands for?
URN stands for? Uniform Resource Name
PHP version currently in use on most websites and
included several new features such as support for 5
object-oriented programming
Data Access Layer or Persistence Layer of the MVC
Model
Layered Architecture.
PHP 3 was released in 1998. True
A vital part of a website or system UI because it
Forms
accepts inputs as data parameters
$this->db->insert_id() inserts an id in the database. False
Registration is an activity of deleting user information
False
on the database.
is_uniques form validation rule checks if the input is
False
unique from the table.
matches form validation rule checks 3 fields that
False
should have an equal or same value.
valid_email form validation rule is used to check if an
True
e-mail is valid or not.
Account registration can be approved through
activation link sent from user's email or by an admin True
approval.
Matching Type. Choose the correct answer from the selection provided.
function returns the auto incremented or last inserted
$this->db->insert_id()
id from the query
is the process of organizing the columns/records or
attributes and tables of the database to minimize Database Normalization
data redundancy.
functions that accepts input parameters and returns
form helper class
an HTML input form element.
variables that store values but it can only contain
constant
strings and numbers

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

SSPR stands for Self-service password reset


are templates for reports Queries
application to help the program perform small or
simple task such as formatting a parameter, autoloaded
computation or series of commands
returns a string containing any server messages,
$this->email->print_debugger()
email header and the email message.
methods is very useful on getting pieces of data, one
at a time particularly on multiple tables and Look Up
databases
used as a function library that we can just load to the
helper
controller or view.
encrypted email as a key md5
Name the configuration file needed to set helper autoload config
runs a back-end database query and displays the
single report page
information in organized and informational manner
formatted result of database queries and contain
Reports
useful data for decision making and analysis
It is very useful on web forms security against online
CAPTCHA
bots, crawlers and spammers
1The Control Append function of the URL
helper returns the $config[‘base_url’] value defined False
on application/config/config.php.
In order to use and access session variables on
True
webpages, we must put the session_start()
Sessions in native PHP are the “superglobal”
variables that can not be accessed anywhere on the
True
web application because it is stored on the browser
session. Can f
Flashinfo are session variables that are only
False
available until the next request.
SSL is defined as any process or technology that
allows users who forgot their password authenticate
False
their account and reset their passwords
without falling the help des
When you no longer need the session variable you
have set, you can remove it True
by using $this->session->unset_userdata()
You can declare your own session variable on the
True
$_SESSION superglobal.
$this->session->set_userdata() is also used to set or
True
change an existing session variable value
The $to parameter can be an email address string, a
comma delimited email addresses string or an array True
containing email addresses strings.
We can load the email class by:
False
declaring $this-> retrieve->library(‘email’);
The helper is used as a function library that we can True

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

just load to the controller or view.


Look Up methods is very useful on getting pieces of
True
data, one at a time particularly on multiple
A query module contains a form that will pass
parameters to the controller suggesting on how True
you want the data to be showed
HTML Helper is a codeigniter 3 helper class True
A Queries is a formatted result of database queries
and contain useful data for decision making and False
analysis.
A report module is typically a front-end web page
that contains various figures of False
interpreted database table records.
Constants are like variables that store values but it
True
can only contain strings and numbers
CAPTCHA uses randomly generated text on an
True
image which users type to confirm
CodeIgniter constants are defined in
False
application/viewer/constants.php
CAPTCHA is very useful on web forms security
True
against online bots, crawlers and spammers
Report Module (the module) are templates for
False
reports.
To avoid repetitive function declarations on
controllers and modules, we should use Helper True
classes.
In Codeigniter 3 helpers are all located in
False
system/helper.
4. Helpers differs from the model methods because it
True
doesn’t require database intervention.
There are certain common functions or small
snippets of code used in every or most Information False
Systems. We call them controllers.
matches form validation rule checks 3 fields that
False
should have an equal or same value.
valid_email form validation rule is used to check if an
True
e-mail is valid or not.
Account registration can be approved through
activation link sent from user's email or by an admin True
approval.
Method that accepts the email's body or content Message()
is_unique requires table and field name as
True
parameter.
$this->db->insert_id() inserts an id in the database. False
Method that triggers the sending of email send()
is_uniques form validation rule checks if the input is
False
unique from the table.
Method that accepts the email's title or heading text Subject()

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

Method that accepts recipients that are not visible to


Bcc()
the other recipients
It is any process or technology that allows users who
forgot their passwords authenticate and reset the Self-service password reset
passwords of their account
Method that accepts 'secondary recipients' that
cc()
receives the mail just to keep them informed
valid_email form validation rule is used to check if an
True
e-mail is valid or not.
Registration is an activity of deleting user information
False
on the database.
Method that accepts the email's title or heading text $subject
Method that accepts the sender's email address From()
is_unique requires table and field name as
True
parameter.
It is an Application Development Framework - a
CodeIgniter
toolkit - for people who build web sites using PHP
How do you get the value of a config file item named
//$this->config->load('author');
'author'.
Code Igniter Query Builders (Active Records) allows
True
safer queries.
What do you call a structure made up of series of
intersecting straight (vertical, horizontal and angular) grid
or curved guide lines used to structure content?
The segment index value for the controller. 1
A query method used to returns the query result as
result()
an array of objects, or an empty array on failure
This pattern allows information to be retrieved,
inserted, and updated in your database with minimal Query Builder
scripting
Which of the following do you think that is useful for
//$this->db->like()
searching?
MVC is a software architecture and architectural.
True
pattern used in software engineering
Runs the selection query and returns the result. $this->db->get()
A configuration variables contain full URL to the
base_url
controller class/function containing your pagination
Is a type of challenge-response test used in
computing to ensure that the response is not captcha
generated by a computer.
It refers to the horizontal dimension of the grid
rows
system
It's a javascript library that makes web scripting
JQuery
easier
Returns a validation error message from the Form
Validation Library, associated with the specified field form_error()
name
The default controller assigned to CodeIgniter when Welcome

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

first setup is set to ________.


What file you need to edit so that a given config file
autoload.php
are automatically loaded.
You cannot add a URL suffix in CodeIgniter. False
Web applications that use the WebForm approach
commingle Program Code and Page Design Code False
only.
This permits you to extend the validation class to
Callbacks
meet your needs.
This refers to the data access layer. Model
Elements from a config.php file are only locally
False
accessible.
This Class provides a means to retrieve
configuration preferences and it is automatically Config
initialized by the system
CodeIgniter's Pagination class is very easy to use,
but it is not 100% customizable, either dynamically or False
via stored preferences.
Each item form a shopping cart produce a unique
rowed
________
Ajax engine uses what type of object XMLHttpRequest
It is used creates a sliding down transition within a
//.slideDown(interval)
given time on a selected element
It is used to produce a fading in effect within a given
fadeIn(interval)
time on a selected element
Which of the following refers to the business logic Controller
In CodeIgniter the validation system supports
False
callforward to your own validation methods.
A cart library method that returns the total amount total()
Which of the following has the correct syntax of
//this->db->select();
active records.
This method returns a single result row row()
A rule reference that returns FALSE if the form
element contains anything other than numeric numeric
characters.
CodeIgniter's Image Manipulation class lets you
True
perform Image Thumbnail Creation
Function that redirect to other pages. redirect
A rule reference that returns FALSE if the form
required
element is empty.
Constructors are useful if you need to set some
default values, or run a default process when your False
class is instantiated
This helper file contains functions that assist in
Form
working with forms.
This validation method permits you to set validation
set_rules
rules.
A configuration variables that set number of items per_page

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

you intend to show per page.


Which of the following is correct from given the It will return only the given fields title,
statement below: content, and date of the records
Function when showing errors in CI page show_404
An algorithm that is used in security hashing that
MD5
transforms data into a 128 bit string
When uploading file the form must be of type "file". False
If set to true, if a file with the same name as the one
you are uploading exists, it will be overwritten. If set
overwrite
to false, a number will be appended to the filename if
another with the same name exists.
It is a software framework that is designed to support
the development of dynamic websites, web Web Application Framework
applications, web services and web resources.
This method returns the number of rows in a
count_all()
particular table.
What do you call common functions or small
snippets of code used in every or most Information helpers
Systems
When uploading file the form must be of type "file". False
Variables that can be accessed anywhere on the
web application because it is stored on the browser superglobal
session
The default controller assigned to CodeIgniter when
Welcome
first setup is set to ________.
An email preference for mail sending protocol protocol
This permits you to extend the validation class to
Callbacks
meet your needs.
This Class provides a means to retrieve
configuration preferences and it is automatically Config
initialized by the system
You can manually remove the index.php in
True
CodeIgniter by .htaccess file
It's a javascript library that makes web scripting
JQuery
easier
You cannot add a URL suffix in CodeIgniter. True
This wildcard type use to match a segment
(:num)
containing only numbers.
This refers to the data access layer. Model
Similarly to the form_error() function, returns all
validation error messages produced by the Form validation_errors()
Validation Library.
How many parameters does CAPCHA requires 3
Given the URL
http://www.abc.com/student/record/201512345 State data (ex. id)
the following 201512345
Permits you to set the value of an input form or
set_value
textarea and used in form validation.

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

Is a type of challenge-response test used in


computing to ensure that the response is not captcha
generated by a computer.
This method returns a single result row row()
A rule reference that returns FALSE if the form
required
element is empty.
What do you call a structure made up of series of
intersecting straight (vertical, horizontal and angular) grid
or curved guide lines used to structure content?
This helper file contains functions that assist in
Form
working with forms.
The person that introduce MVC. Trygve Reenskaug
An algorithm that is used in security hashing that
MD5
transforms data into a 128 bit string
A cart library method that displays the total number
total_items()
of items in the cart.
In CodeIgniter the validation system supports
False
callforward to your own validation methods.
What file you need to edit so that a given config file
autoload.php
are automatically loaded.
A cart library method used to add item to the
add()
shopping cart.
In shopping cart if the quantity is set to negative
True
value, the item will be removed from the cart.
A cart library method that returns the total amount total()
Which of the following has the correct syntax of
//this->db->select();
active records.
In CI what does URI stands for uniform resource identifier
If set to true, if a file with the same name as the one
you are uploading exists, it will be overwritten. If set
overwrite
to false, a number will be appended to the filename if
another with the same name exists.
What do you call variables are just like session
variables except it is only available on the next Flashdata
request
CodeIgniter's Image Manipulation class lets you
True
perform Image Watermaking.
Elements from a config.php file are only locally
False
accessible.
Using custom routing rules, you have the power to
map any URI to any controller and method, an break True
free from the normal convention.
Function when showing errors in CI page show_404
A cart library method used to update the information
update()
of a specific cart item.
An upload helper method that returns an array
containing all of the data related to the file you data
uploaded.

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

CodeIgniter's Image Manipulation class lets you


True
perform Image Thumbnail Creation
Which of the following statements will create a form
//form_open('x/y');
that points to your base URL plus the "x/y"
Ajax engine uses what type of object XMLHttpRequest
IDENTIFICATION: In CodeIgniter the Calendar class
False
enables you to dynamically create calendars.
CSS stands fo Cascading Style Sheets
IDENTIFICATION: It helps us enable sorting,
DataTable jQuery
pagination and search to our table data.
IDENTIFICATION: ________is a design language or
design convention for modern applications and Material Design
website
IDENTIFICATION: simply a new method that we use
jQuery plugin
to extend jQuery's prototype object
.text() is used to get or set values from and to a non-
True
input element like divs.
We used the base_url() function to return our domain
True
or application path
$(document).ready() function calls if the browser
contents has properly loaded its contents and is False
browsing.
AJAX stands for Asynchronous Java False
Successful - this will be triggered upon the AJAX
request and usually accepts the parameter response
False
response contains the loaded content from the URL
requested.
Who first use the term AJAX? Jesse James Garret
DataTable jQuery plugin helps us enable sorting,
True
pagination and search to our table data.
.vals() It is used to get or set values from and to an
True
input element particularly textboxes.
IDENTIFICATION: Name the university that created
Carnegie Mellon University
MaterialDesign CSS
In jQuery the scr tag is use for linking. True
IDENTIFICATION: javascript library that makes web
jQuery
scripting easier for us
IDENTIFICATION: It is used to get or set values from
val()
and to an input element particularly textboxes.
JQuery method used to creates a sliding to the left
slideLeft(interval)
transition within a given time on a selected element
AJAX engine is an XMLHttpRequest object and
jQuery makes it a lot more easier for us because of True
its AJAX development API.
It is a function that overrides the normal behavior in
which the URI determines which function is called,
//_remap()
allowing you to define your own function routing
rules.

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

Variables are session variables that expires with a


tempdata
given time limit.
A cart library method that permits you to destroy the
destroy()
cart.
A rule reference that returns FALSE if the form
element is not unique to the table and field name in is_unique
the parameter.
Runs the selection query and returns the result. $this->db->get()
It is used to produce a fading in effect within a given
fadeIn(interval)
time on a selected element
Which of the following refers to the business logic Controller
This command is used to show selected element(s) show()
It is the horizontal dimension of the grid system that
rows
separate page contents line after line.
MaterializeCSS class prefix for tablet devices. m
This command is used to toggle, switch or alternate
toggle()
the selected item's visibility: show and hide
v A grid layout that adapts or resize columns
Responsive grid layout
depending on the device screen size.
This command is used to produce a fading out effect
fadeOut()
within a given time on a selected element
This command is used to create a sliding down
slideDown()
transition within a given time on a selected element
MaterializeCSS class prefix for mobile devices. s
( This command is used to produce a fading in effect
fadeIn()
within a given time on a selected element
MaterializeCSS class prefix for tablet devices. m
This command is used to create a sliding to the left
slideLeft()
transition within a given time on a selected element
A variable declared outside a function. Global
This allows us to collect data from the htm file and
$_POST
display to the php script.
CI file directory where the database configuration
Application/config/database.php
settings and database groups is found.
Form Helper method or code to return an HTML text
form_input()
input type.
CI uses Model-Viewable-Controller architecture False
To load the view, the function is like this: $this->load-
True
>view('name');
Segment is the process of redirecting or remapping a
False
controller class or method.
CI, basically contains 4 main folders Application,
False
System, User, Help Guide
A variable declared within a function. Local
It is the Presentation Layer of the MVC Architecture. View
IDENTIFICATION: JQuery method used to hide
hide()
selected element(s)

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])


lOMoARcPSD|23348313

UGRD-ITE6200 Application Development and Emerging Technology


ALL IN SOURCE

jQuery is a java library that makes web scripting


False
easier for us.
In jQuery the scr tag is use for linking. True
.text() is used to get or set values from and to a non-
True
input element like divs.
AJAX stands for Asynchronous Java False
jQuery is a java library that makes web scripting
True
easier for us.
$(document).ready() function calls if the browser
contents has properly loaded its contents and is True
browsing.
A rule reference that returns FALSE if the form
element is not unique to the table and field name in is_unique
the parameter.
This helper file contains functions that assist in
Form
working with forms.
Which of the following do you think that is useful for
//$this->db->like()
searching?
This pattern allows information to be retrieved,
inserted, and updated in your database with minimal Query Builder
scripting
Storage data in PHP variables
PHP varianbles start with what symbol? $
Query Builder or Active Record pattern in CI
True
replaces the traditional query string in php coding.

VISIT: FINDITSOURCE for more ! (just search in google)

Downloaded by Sha Valdez ([email protected])

You might also like