You are on page 1of 6

This command is used to show selected element(s)

show()

This command is used to get or set values from and to an input element
particularly textboxes.
val()

This command is used to hide selected element(s)


hide()

A structure made up of series of intersecting straight (vertical, horizontal and


angular) or curved guide lines used to structure content.
Grid

This command is used to create a sliding to the left transition within a given
time on a selected element
slideleft()

MaterializeCSS class prefix for mobile devices.


S

A grid layout that is used for static website designs because it has
fixed/distributed column sizes.
Fixed

A materializeCSS class that provides a 70% space of the browser's full width and
allows you to center the content horizontally.
Container

This command is used to toggle, switch or alternate the selected item's


visibility: show and hide
toggle()

This command is used to get or set values from and to a non-input element like
divs.
text()

MaterializeCSS class prefix for tablet devices.


M
MaterializeCSS class prefix for mobile devices.
S

This study source was downloaded by 100000868560021 from CourseHero.com on 06-22-2023 05:39:30 GMT -05:00

https://www.coursehero.com/file/116640858/UGRD-ITE6200-Application-Development-and-Emerging-Technology-finalsdocx/
AJAX engine is an XMLHttpRequest object and jQuery makes it a lot more easier
for us because of its AJAX development API.
True

$(document).ready() function calls if the browser contents has properly loaded


its contents and is browsing.
False
jQuery is a java library that makes web scripting easier for us.
False

CSS stands for


Cascading Style Sheets

In jQuery the scr tag is use for linking.


False
.vals() It is used to get or set values from and to an input element particularly
textboxes.
False

.text() is used to get or set values from and to a non-input element like divs.
True

Who first use the term AJAX?


Jesse James Garret

Name the university that created MaterialDesign CSS


Carnegie Mellon University

In shopping cart if the quantity is set to negative value, the item will be removed
from the cart.
True
Variables that can be accessed anywhere on the web application because it is
stored on the browser session
Superglobal
If set to true, if a file with the same name as the one you are uploading exists, it
will be overwritten. If set to false, a number will be appended to the filename if
another with the same name exists
Overwrite

This study source was downloaded by 100000868560021 from CourseHero.com on 06-22-2023 05:39:30 GMT -05:00

https://www.coursehero.com/file/116640858/UGRD-ITE6200-Application-Development-and-Emerging-Technology-finalsdocx/
In file upload the maximum size are set in _________ that the file can be. Set to
zero for no limit
Kilobytes
Which of the following do you think that is useful for searching?
//$this->db->like()
What do you call variables are just like session variables except it is only
available on the next request
Flashdata
Given the URL http://www.abc.com/student/record/201512345
State the following
student
Controller
The person that introduce MVC.
Trygve Reenskaug
MVC is a software architecture and architectural. pattern used in software
engineering
True

A rule reference that returns FALSE if the form element is empty.


Required
A cart library method that returns the total amount
total()
Permits you to set the value of an input form or textarea and used in form
validation.
set_value
A cart library method used to update the information of a specific cart item.
update()
CodeIgniter provides rich set of libraries for commonly needed tasks.
True

CodeIgniter's Image Manipulation class lets you perform Image Watermaking.


False

This validation method permits you to set validation rules

This study source was downloaded by 100000868560021 from CourseHero.com on 06-22-2023 05:39:30 GMT -05:00

https://www.coursehero.com/file/116640858/UGRD-ITE6200-Application-Development-and-Emerging-Technology-finalsdocx/
set_rules
You can manually remove the index.php in CodeIgniter by .htaccess file
True

Constructors do return a value and they can do some default work.


False

In CI what does URI stands for


uniform resource identifier
This Class provides a means to retrieve configuration preferences and it is
automatically initialized by the system.
Config
Web applications that use the WebForm approach commingle Program Code and
Page Design Code only.
False

Variables are session variables that expires with a given time limit.
Tempdata
It's a javascript library that makes web scripting easier
JQuery
Similarly to the form_error() function, returns all validation error messages
produced by the Form Validation Library.
validation_errors()
A cart library method used to add item to the shopping cart.

insert() wrong
A rule reference that returns FALSE if the form element does not match the one
in the parameter.
is_unique wrong
A rule reference that returns FALSE if the form element is not unique to the table
and field name in the parameter.
is_unique
What do you call common functions or small snippets of code used in every or
most Information Systems

This study source was downloaded by 100000868560021 from CourseHero.com on 06-22-2023 05:39:30 GMT -05:00

https://www.coursehero.com/file/116640858/UGRD-ITE6200-Application-Development-and-Emerging-Technology-finalsdocx/
Helpers
Which of the following has the correct syntax of active records.
//this->db->select();
A cart library method that permits you to destroy the cart.
destroy()
An algorithm that is used in security hashing that transforms data into a 128 bit
string
MD5
The default controller assigned to CodeIgniter when first setup is set to ________.
Welcome
A method under the calendar library that will display the calendar
generate()
CodeIgniter's Image Manipulation class lets you perform Image Thumbnail
Creation
True

Which of the following is correct from given the statement below:


//$this->db->select('title, content, date');
//$query = $this->db->get('mytable');
//return $query->result();
It will return only the given fields title, content, and date of the records
Returns a validation error message from the Form Validation Library, associated
with the specified field name
form_error()
Constructors are useful if you need to set some default values, or run a default
process when your class is instantiated.
False

This refers to the presentation layer


View
It is used creates a sliding down transition within a given time on a selected
element
//.slideDown(interval) wrong

This study source was downloaded by 100000868560021 from CourseHero.com on 06-22-2023 05:39:30 GMT -05:00

https://www.coursehero.com/file/116640858/UGRD-ITE6200-Application-Development-and-Emerging-Technology-finalsdocx/
You cannot add a URL suffix in CodeIgniter.
False

Given the URL http://www.abc.com/student/record/201512345


State the following
record
Method
This helper file contains functions that assist in working with URLs.
URL
An email preference for mail sending protocol
Protocol
It is a function that overrides the normal behavior in which the URI determines
which function is called, allowing you to define your own function routing rules.
//_remap()
Creator of CI
Ellislab
How many parameters does CAPCHA requires

3
Each item form a shopping cart produce a unique ________

id wrong
This method returns the number of rows in a particular table.
row() wrong
Process of organizing the columns/records or attributes and tables of the
database to minimize data redundancy.
data normalization wrong
CodeIgniter constants are defined in what folder
config

This study source was downloaded by 100000868560021 from CourseHero.com on 06-22-2023 05:39:30 GMT -05:00

https://www.coursehero.com/file/116640858/UGRD-ITE6200-Application-Development-and-Emerging-Technology-finalsdocx/
Powered by TCPDF (www.tcpdf.org)

You might also like