You are on page 1of 45

lOMoARcPSD|18956159

PROG3115 NET Week 5 20 Grade 12

Accountancy (AMA Computer Learning Center)

Studocu is not sponsored or endorsed by any college or university


Downloaded by Val (medallajunior@gmail.com)
lOMoARcPSD|18956159

SOURCE BAED-PROG3115-2016S Programming


(.NET TECH) P1
By: Mike Danielle Adaure

Week 5-7 HTML5


Learning Activity 1
<fieldset> Specifies self-contained content
A: False
embedded or global styles are written in the document head and refer to the
file as a whole.
A: True
<div> Defines a container for an external (non-HTML) application
A: False
Choose what <data> is for
A: Links the given content with a machine-readable translation
<head> Defines a header for a document or section
A: False
Defines a piece of computer code
A: <code>
Choose what <a> is for
A: Defines a hyperlink

nline or local stylesThese are written correctly in the HTML tag and precede
other styles.
A: nline or local styles

external CSS files are files of type .css that are linked to a document using the
link tag
A: True
Describe what <b> tag is for
A: Defines bold text

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

embedded or global styles are written in the document head and refer to the file
as a whole.
A: True
Describe what <b> tag is for
A: Defines bold text

external CSS files are files of type .css that are linked to a document using the
link tag
A: True
<div> Defines a container for an external (non-HTML) application
A: False
Choose what <a> is for
A: Defines a hyperlink
<head> Defines a header for a document or section
A: False
Defines a piece of computer code
A: <code>
<div> Defines a container for an external (non-HTML) application
A: False
Choose what <data> is for
A: Links the given content with a machine-readable translation
<fieldset> Specifies self-contained content
A: False
nline or local stylesThese are written correctly in the HTML tag and precede
other styles.
A: nline or local styles

Laboratory Activity 1
1. using css, create a page with blue background

Do it with your own!!!


Link: https://www.youtube.com/watch?v=33IinMVJf-M

2. using css, create a page containing a 100px X 100px box with four 10px
solid black border

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

Link: https://www.youtube.com/watch?v=pRMlJn06hu4

WEEK 8-9
Performance Task 1
JavaScript is used mainly or enhancing the interaction of a user with the
webpage
A: True
You can assign a value to the variable while declaring the variable but not after
declaring the variable
A: False
Variable names should start with a letter and they are case sensitive.
A: True
Loops are useful when you have to execute the same lines of code repeatedly.
A: True
is responsible for running JavaScript.
A: browser
are used to store values or expressions
A: Variables
Type of JavaScript Array method if you want to know the number of elements in
an array
Answer: length property
Type of JavaScript Array method if you want to add new properties and method
Answer: prototype property
Type of JavaScript Array method that you can add value as the last item of the
array
Answer: push method
is a key-value data format that is typically rendered in curly braces.
Answer: JSON object

Variable
are used to store values or expressions
A: Variables

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

Written Work 2
What does JSON stands for?
A: JavaScript Object Notation
JSON offers a good alternative to XML and requires much formatting
A: False
JSON is available for use by many languages including Python, PHP, Java

Ruby
and Answer .
Answer: Ruby
Each key-value pair is separated by a colon.
A: False
JSON object is a key-value data format that is typically rendered in curly braces.
A: True
right
JSON values are found to the Answer of the colon.
A: right
JSON uses the .json extension when it stands alone.
A: True
is a format of sharing data.
Answer: JSON
Keys need to be unique and can include whitespaces, so it’s best to use
A: underscores
square b
JavaScript uses on either end of its array type.
Answer: square brackets

Performance Task 2
AJAX stands for?
A: Asynchronous JavaScript And XML
just a means of loading data from the server and selectively updating parts of a
webpage without reloading the whole page.
A: Ajax
XHR stands for?
A: XMLHttpRequest

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

All modern browsers support the XHR object.


A: True
Execution of the script continues as soon as the Ajax request is sent.
A: True
Ajax make use of the browser’s built-in XHR object to send and receive

asynchr
information to and from a web server Answer
Answer: asynchronously
open() m
typically accepts two parameters.
Answer: open() method
The two parameters are the URL request method to use and the HTTP to send
the request to.
A: False
Send the request to the server using the send() method of the XHR object
A: True
When sending request and retrieving the response, the first thing to do is

initiate
to Answer an XHR object.
The correct answer is: initiate

1st Quarter Exam


A virtual path is shorthand to represent physical paths. If you use virtual paths,
you can move your pages to a different domain (or server) without having
toupdate the paths.

A: True

_________ is a key-value data format that is typically rendered in curly


braces.

A: JSON
nline or local stylesThese are written correctly in the HTML tag and precede
other styles.

A: nline or local styles

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

embedded or global styles are written in the document head and refer to the file
as a whole.

A: True

Choose what <a> is for

A: Defines a hyperlink

An array is an object that can store a collection of items.

A: True

A String data type is used to work with String values. In C#, the datatype is
denoted by the keyword 'String'.

The correct answer is 'True'.

_____________ is typically used to get or retrieve some kind of information from


the server that doesn't require any manipulation or change in database, for
example, fetching search results based on a term, fetching user details based
on their id or name, and so on.

A: GET Request

An Integer data types are used to work with numbers. In this case, the numbers
are whole numbers like 10, 20 or 30.

A: True

Defines a piece of computer code

A: <code>

The switch statement is an enhancement to the 'for' statement. If you


have multiple expressions that need to be evaluated in one shot,
then writing multiple 'if' statements becomes an issue.

The correct answer is 'False'.

If you want to add new properties and methods, you can use this property

A: prototype property

Microsoft Visual Studio is an integrated development environment (IDE) from


Microsoft. It is used to develop computer programs for Microsoft Windows.

A: True

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

A boolean data type is used to work with Boolean values of true and false. In C#,
the datatype is denoted by the Boolean keyword.

A: True

Choose what <data> is for

A: Links the given content with a machine-readable translation

HTTP 302 Message Means The server can't find the requested page.

A: False

A _________ is a block of code which will be executed only if it is called.

A: Function

When this access specifier is attached to either a property or a method, it


means that those members cannot be accessed from any external program

The correct answer is 'False'.

When this access modifier is attached to either a property or a method, it means


that those members can be accessed only by classes inherited from the
current class.

A: TRUE

The Visual Studio IDE can only be used to create a Web-application.

A: False

<head> Defines a header for a document or section

A: False

When this access modifier is attached to either a property or a method, it means


that those members can be accessed from any external program.

A: True

______________ make use of the browser's built-in XMLHttpRequest (XHR) object


to send and receive information to and from a web server asynchronously, in the
background, without blocking the page or interfering with the user's experience

A: AJAX

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

The while loop is used for iterative purposes. Suppose if you want to repeat a
certain set of statements for a particular number of times, then while loop is
used.

A: True

Destructors are used to initializing the values of class fields when their
corresponding objects are created.

A: false

Content block (from another file) can be imported anywhere in a web


page, and can contain text, markup, and code, just like any regular web page.

A: True

An array is used to store a collection or series of elements. These elements will


be of the same type.

The correct answer is 'True'.

<fieldset> Specifies self-contained content

A: false

<div> Defines a container for an external (non-HTML) application

A: False

This variable will point to an array or list of elements, which will be responsible
for storing the elements of the array.

The correct answer is 'True'

A double data type is used to work with decimals. In this case, the numbers are
whole numbers like 10.11, 20.22 or 30.33.

A: True

Blade is a simple markup syntax for embedding server code (C# or VB) into
ASP.NET web pages.

A: False

If you want to know the number of elements in an array, you can use this
property
A: length property

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

HTTP 500 message means the server successfully processed the request.

A: false

C++ is a general purpose, multi-paradigm programming language developed by


Microsoft that runs on the .NET Framework.

The correct answer is 'False'.

HTTP 200 message means the server successfully processed the request.

A: True

C# programming language has in-built support for classes and objects.

A: True

external CSS files are files of type .css that are linked to a document using the
link tag

A: True

Describe what <b> tag is for

A: Defines bold text

The What statement is used to evaluate a boolean expression before


executing a set of statements.

A: false

WEEK 11- 13
If you want to add new properties and methods, you can use this property
A: prototype property
An array is an object that can store a collection of items.
A: True
HTTP 302 Message Means The server can't find the requested page.
A: False
______________ make use of the browser's built-in XMLHttpRequest (XHR) object
to send and receive information to and from a web server asynchronously, in the
background, without blocking the page or interfering with the user's experience
A: AJAX

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

A _________ is a block of code which will be executed only if it is called.


A: function
_________ is a key-value data format that is typically rendered in curly
braces.
A: JSON
HTTP 500 message means the server successfully processed the request.
A: False
HTTP 200 message means the server successfully processed the request.
A: True
_____________ is typically used to get or retrieve some kind of information from
the server that doesn't require any manipulation or change in database, for
example, fetching search results based on a term, fetching user details based
on their id or name, and so on.
A: GET Request
If you want to know the number of elements in an array, you can use this
property
A: length property
_____________ is typically used to get or retrieve some kind of information from
the server that doesn't require any manipulation or change in database, for
example, fetching search results based on a term, fetching user details based
on their id or name, and so on.
A: GET Request

HTTP 302 Message Means The server can't find the requested page.

A: False

_________ is a key-value data format that is typically rendered in curly


braces.

A: JSON
An array is an object that can store a collection of items.
A: True
If you want to add new properties and methods, you can use this property
A: prototype property

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

______________ make use of the browser's built-in XMLHttpRequest (XHR) object


to send and receive information to and from a web server asynchronously, in the
background, without blocking the page or interfering with the user's experience
The correct answer is: AJAX

HTTP 200 message means the server successfully processed the request.
A: True
If you want to know the number of elements in an array, you can use this
property
A: length property
HTTP 500 message means the server successfully processed the request.
A: False
A _________ is a block of code which will be executed only if it is called.
A: function

WEEK 14 – 16
If you want to know the number of elements in an array, you can use this
property
A: length property
Defines a piece of computer code
A: <code>
An Integer data types are used to work with numbers. In this case, the numbers
are whole numbers like 10, 20 or 30.
A: True
Microsoft Visual Studio is an integrated development environment (IDE) from
Microsoft. It is used to develop computer programs for Microsoft Windows.
A: True
A double data type is used to work with decimals. In this case, the numbers are
whole numbers like 10.11, 20.22 or 30.33.
A: True
nline or local stylesThese are written correctly in the HTML tag and precede
other styles.
A: nline or local styles
The What statement is used to evaluate a boolean expression before
executing a set of statements.
A: False

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

If you want to add new properties and methods, you can use this property
A: prototype property
C++ is a general purpose, multi-paradigm programming language developed by
Microsoft that runs on the .NET Framework.
A: False
embedded or global styles are written in the document head and refer to the file
as a whole.
A: True
The switch statement is an enhancement to the 'for' statement. If you
have multiple expressions that need to be evaluated in one shot,
then writing multiple 'if' statements becomes an issue.
A: False
_________ is a key-value data format that is typically rendered in curly
braces.
A: JSON
A String data type is used to work with String values. In C#, the datatype is
denoted by the keyword 'String'.
A: True
A boolean data type is used to work with Boolean values of true and false. In C#,
the datatype is denoted by the Boolean keyword.
A: True
The while loop is used for iterative purposes. Suppose if you want to repeat a
certain set of statements for a particular number of times, then while loop is
used.
A: True
A _________ is a block of code which will be executed only if it is called.
A: function
An array is an object that can store a collection of items.
A: True
Choose what <a> is for
A: Defines a hyperlink
The Visual Studio IDE can only be used to create a Web-application.
A: False

Describe what <b> tag is for


A: Defines bold text

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

WEEK 17 - 19
Content block (from another file) can be imported anywhere in a web
page, and can contain text, markup, and code, just like any regular web page.

The correct answer is 'True'.

When this access modifier is attached to either a property or a method, it means


that those members can be accessed only by classes inherited from the
current class.

The correct answer is 'True'.

_____________ is typically used to get or retrieve some kind of information from


the server that doesn't require any manipulation or change in database, for
example, fetching search results based on a term, fetching user details based
on their id or name, and so on.

The correct answer is: GET Request

HTTP 302 Message Means The server can't find the requested page.

The correct answer is 'False'.

<head> Defines a header for a document or section

The correct answer is 'False'.

Choose what <data> is for

The correct answer is: Links the given content with a machine-readable
translation

external CSS files are files of type .css that are linked to a document using the
link tag

The correct answer is 'True'.

______________ make use of the browser's built-in XMLHttpRequest (XHR) object


to send and receive information to and from a web server asynchronously, in the
background, without blocking the page or interfering with the user's experience

The correct answer is: AJAX

<div> Defines a container for an external (non-HTML) application

The correct answer is 'False'.

<fieldset> Specifies self-contained content

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

The correct answer is 'False'.

When this access specifier is attached to either a property or a method, it


means that those members cannot be accessed from any external program

The correct answer is 'False'.

An array is used to store a collection or series of elements. These elements will


be of the same type.

The correct answer is 'True'.

HTTP 500 message means the server successfully processed the request.

The correct answer is 'False'.

HTTP 200 message means the server successfully processed the request.

The correct answer is 'True'.

C# programming language has in-built support for classes and objects.

The correct answer is 'True'.

Blade is a simple markup syntax for embedding server code (C# or VB) into
ASP.NET web pages.

The correct answer is 'False'.

Destructors are used to initializing the values of class fields when their
corresponding objects are created.

The correct answer is 'False'.

A virtual path is shorthand to represent physical paths. If you use virtual paths,
you can move your pages to a different domain (or server) without having
toupdate the paths.

The correct answer is 'True'.

When this access modifier is attached to either a property or a method, it means


that those members can be accessed from any external program.

The correct answer is 'True'.

This variable will point to an array or list of elements, which will be responsible
for storing the elements of the array.

The correct answer is 'True'.

external CSS files are files of type .css that are linked to a document using the
link tag

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

A: True

When this access modifier is attached to either a property or a method, it means


that those members can be accessed only by classes inherited from the
current class.

A: True

HTTP 500 message means the server successfully processed the request.

A: False

<fieldset> Specifies self-contained content

A: False

Blade is a simple markup syntax for embedding server code (C# or VB) into
ASP.NET web pages.

A: False

Destructors are used to initializing the values of class fields when their
corresponding objects are created.

A: False

<div> Defines a container for an external (non-HTML) application

A: False

______________ make use of the browser's built-in XMLHttpRequest (XHR) object


to send and receive information to and from a web server asynchronously, in the
background, without blocking the page or interfering with the user's experience

A: AJAX

An array is used to store a collection or series of elements. These elements will


be of the same type.

A: True

When this access specifier is attached to either a property or a method, it


means that those members cannot be accessed from any external program

A: False

C# programming language has in-built support for classes and objects.

A: True

HTTP 302 Message Means The server can't find the requested page.

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

A: False

When this access modifier is attached to either a property or a method, it means


that those members can be accessed from any external program.

A: True

HTTP 200 message means the server successfully processed the request.

A: True

Content block (from another file) can be imported anywhere in a web


page, and can contain text, markup, and code, just like any regular web page.

A: True

<head> Defines a header for a document or section

A: False

Choose what <data> is for

A: Links the given content with a machine-readable translation

A virtual path is shorthand to represent physical paths. If you use virtual paths,
you can move your pages to a different domain (or server) without having
toupdate the paths.

A: True

This variable will point to an array or list of elements, which will be responsible
for storing the elements of the array.

A: True

_____________ is typically used to get or retrieve some kind of information from


the server that doesn't require any manipulation or change in database, for
example, fetching search results based on a term, fetching user details based
on their id or name, and so on.

A: GET Request

2nd Quarter Exam: WEEK 20


1st Attempt 40/40
Variables are declared with the let keyword

The correct answer is 'False'.

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

external CSS files are files of type .css that are linked to a document using the
link tag

The correct answer is 'True'.

Each key-value pair is separated by a colon.

The correct answer is 'False'.

A String data type is used to work with String values. In C#, the datatype is
denoted by the keyword 'String'.

The correct answer is 'True'.

AJAX stands for?

The correct answer is: Asynchronous JavaScript And XML

Inline expressions (variables and functions) start with @

The correct answer is 'True'.

Type of JavaScript Array method that you can add value as the last item of the
array

A: push method

milliseco
You can apply animation duration in Answer as a second parameter
of animate() method.

A: milliseconds

JSON
is a format of sharing data.

A: JSON

A virtual path is shorthand to represent physical paths. If you use virtual paths,
you can move your pages to a different domain (or server) without having
toupdate the paths.

A: True

An array is an object that can store a collection of items.

A: True

This variable will point to an array or list of elements, which will be responsible
for storing the elements of the array.

A: True

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

The What statement is used to evaluate a boolean expression before


executing a set of statements.

A: False

he DataSet contains DataTable objects and DataRelation objects.

The correct answer is 'True'.

The jQuery library provides two easing function which are:

A: Swing & Linear

Returns a DataTableReader with one result set per DataTable, in the same
sequence as the tables appear in the Tables collection

The correct answer is: CreateDataReader()

right
JSON values are found to the Answer of the colon.

A: right

<div> Defines a container for an external (non-HTML) application

A: False

Keys need to be unique and can include whitespaces, so it’s best to use

A: underscores

Code statements end with semicolon

A: True

C# programming language has in-built support for classes and objects.

A: True

Gets the container for the component.

The correct answer is: CaseSensitive

JSON object is a key-value data format that is typically rendered in curly braces.

A: True

XHR stands for?

A: XMLHttpRequest

square b
JavaScript uses Answer on either end of its array type.

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

A: square brackets

Begins the initialization of the DataSet. The initialization occurs at run time

A: BeginInit

executes a set of code when a condition is true

The correct answer is: If statement

Creating variables in VBScript is most often referred to as "declaring" variables.

A: False

Type of JavaScript Array method if you want to add new properties and method

A: prototype property

_____________ is typically used to get or retrieve some kind of information from


the server that doesn't require any manipulation or change in database, for
example, fetching search results based on a term, fetching user details based
on their id or name, and so on.

A: GET Request

Destructors are used to initializing the values of class fields when their
corresponding objects are created.

A: False

______________ make use of the browser's built-in XMLHttpRequest (XHR) object


to send and receive information to and from a web server asynchronously, in the
background, without blocking the page or interfering with the user's experience

A: AJAX

Returns a view of data in the data set.

A: DefaultViewManager

Loops are useful when you have to execute the same lines of code repeatedly.

A: True

Type of JavaScript Array method if you want to know the number of elements in
an array

A: length property

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

The while loop is used for iterative purposes. Suppose if you want to repeat a
certain set of statements for a particular number of times, then while loop is
used.

A: True
Gets or sets the name of the current data set.

A: DataSetName
Choose what <a> is for

A: Defines a hyperlink
Send the request to the server using the send() method of the XHR object

A: True
HTTP 200 message means the server successfully processed the request.

A: True

2nd Attempt 34/40


You can replace a complete DOM element with the specified HTML or DOM
elements.

A: True
# files have the extension .csphtml

A: False
The ADO.NET objects encapsulate all the data access operations and the
controls interact with these objects to display data, thus hiding the details of
movement of data

A: True
JavaScript is used mainly or enhancing the interaction of a user with the
webpage

A: True

Statements can be executed repeatedly in loops.

A: False (wrong) The correct answer is 'True'.

The DataRelation objects represent the relationship between two tables.

A: False (wrong) The correct answer is 'True'.

If you want to know the number of elements in an array, you can use this
property

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

A: length property

If you want to add new properties and methods, you can use this property

A: prototype property
Execution of the script continues as soon as the Ajax request is sent.

A: True
jQuery f
method displays specified element(s) by fading them to opaque.

A: fadeIn() (wrong) The correct answer is: jQuery fadeIn()

Copies both structure and data

A: CreateDataReader(DataTable[])(wrong) The correct answer is: Copy

Variable names should start with a letter and they are case sensitive.

A: True
When this access specifier is attached to either a property or a method, it
means that those members cannot be accessed from any external program

A: False
A boolean data type is used to work with Boolean values of true and false. In C#,
the datatype is denoted by the Boolean keyword.

A: True
When this access modifier is attached to either a property or a method, it means
that those members can be accessed only by classes inherited from the
current class.

A: True
The two parameters are the URL request method to use and the HTTP to send
the request to.

A: False
When this access modifier is attached to either a property or a method, it means
that those members can be accessed from any external program.

A: True
_________ is a key-value data format that is typically rendered in curly
braces.

A: JSON

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

Ends the initialization of the data set

A: EndInit
C++ is a general purpose, multi-paradigm programming language developed by
Microsoft that runs on the .NET Framework.

A: False
<head> Defines a header for a document or section

A: False
nline or local stylesThese are written correctly in the HTML tag and precede
other styles.

A: nline or local styles


empty()
remove all child nodes from the set of matched elements.

A: empty() The correct answer is: empty()

jQuery t
method hides or displays specified element(s).

A: hide() show() (wrong) The correct answer is: jQuery toggle()

Copies the structure of the DataSet, including all DataTable schemas, relations,
and constraints. Does not copy any data

A: Clone
Returns a copy of the DataSet with all changes made since it was loaded or the
AcceptChanges method was called

A: GetChanges
Describe what <b> tag is for

A: Defines bold text


An array is used to store a collection or series of elements. These elements will
be of the same type.

A: True
Strings are enclosed with grave accent(`) marks

A: False
open() m
typically accepts two parameters.

A: open() method

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

Variable
are used to store values or expressions

A: Variables

JSON is available for use by many languages including Python, PHP, Java
Ruby
and Answer .

A: Ruby
JSON offers a good alternative to XML and requires much formatting

A: False
just a means of loading data from the server and selectively updating parts of a
webpage without reloading the whole page.

A: Ajax
embedded or global styles are written in the document head and refer to the file
as a whole.

A: True
Indicates whether the component is currently in design mode.

A: DesignMode
jQuery animate()
performs custom animation using element’s style properties.

A: animate() (wrong) The correct answer is: jQuery animate() method

The switch statement is an enhancement to the 'for' statement. If you


have multiple expressions that need to be evaluated in one shot,
then writing multiple 'if' statements becomes an issue.

A: False
Specify a callback function to execute when animation is complete.

A: True
HTTP 302 Message Means The server can't find the requested page.

A: False

3rd Attempt 38.67/40


select one of many sets of lines to execute

A: Select Case statement

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

The two parameters are the URL request method to use and the HTTP to send
the request to.

A: False
Gets the container for the component.

A: CaseSensitive
square b
JavaScript uses Answer on either end of its array type.

A: square brackets
embedded or global styles are written in the document head and refer to the file
as a whole.

A: True
# files have the extension .csphtml

A: False
Gets or sets the name of the current data set.

A: DataSetName
The switch statement is an enhancement to the 'for' statement. If you
have multiple expressions that need to be evaluated in one shot,
then writing multiple 'if' statements becomes an issue.

A: False
<div> Defines a container for an external (non-HTML) application

A: False
The default scripting language in ASP is C++.

A: False
JSON offers a good alternative to XML and requires much formatting

A: False
Variable
are used to store values or expressions

A: Variables
______________ make use of the browser's built-in XMLHttpRequest (XHR) object
to send and receive information to and from a web server asynchronously, in the
background, without blocking the page or interfering with the user's experience

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

A: AJAX
Loops are useful when you have to execute the same lines of code repeatedly.

A: True
Defines a piece of computer code

A: <code>

Choose The Rules for VBScript variable names

A: Cannot contain a period (.) & Cannot exceed 255 characters (partial correct)
The correct answers are: Must begin with a letter, Cannot contain a period (.),
Cannot exceed 255 characters

executes a set of code when a condition is true

A: If statement
right
JSON values are found to the Answer of the colon.

A: right
C# programming language has in-built support for classes and objects.

A: True
runs code a specified number of times

A: For...Next statement
An array is used to store a collection or series of elements. These elements will
be of the same type.

A: True
Choose what <a> is for

A: Defines a hyperlink
just a means of loading data from the server and selectively updating parts of a
webpage without reloading the whole page.

A: Ajax
What does JSON stands for?

A: JavaScript Object Notation

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

HTTP 200 message means the server successfully processed the request.

A: True
jQuery f
method displays specified element(s) by fading them to opaque.

A: jQuery fadeIn()
The while loop is used for iterative purposes. Suppose if you want to repeat a
certain set of statements for a particular number of times, then while loop is
used.

A: True
Copies both structure and data

A: Copy
Type of JavaScript Array method that you can add value as the last item of the
array

A: push method
jQuery t
method hides or displays specified element(s).

A: jQuery toggle()
Returns a copy of the DataSet with all changes made since it was loaded or the
AcceptChanges method was called

A: GetChanges
Copies the structure of the DataSet, including all DataTable schemas, relations,
and constraints. Does not copy any data

A: Clone
A virtual path is shorthand to represent physical paths. If you use virtual paths,
you can move your pages to a different domain (or server) without having
toupdate the paths.

A: True
A while loop begins with the while keyword, followed by parentheses, where you
specify how long the loop continues, then a block to repeat.

A: False (wrong) The correct answer is 'True'.

An array is an object that can store a collection of items.

A: True

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

select one of two sets of lines to execute

A: If...Then...Else statement
Type of JavaScript Array method if you want to add new properties and method

A: prototype property
Choose what <data> is for

A: Links the given content with a machine-readable translation

empty()
remove all child nodes from the set of matched elements.

A: empty() The correct answer is: empty()

open() m
typically accepts two parameters.

A: open() method

4th Attempt 38/40


A double data type is used to work with decimals. In this case, the numbers are
whole numbers like 10.11, 20.22 or 30.33.

A: True
Specify a callback function to execute when animation is complete.

A: True
A boolean data type is used to work with Boolean values of true and false. In C#,
the datatype is denoted by the Boolean keyword.

A: True
Indicates whether the component is currently in design mode.

A: DesignMode
Indicates whether string comparisons within the data tables are case-sensitive.

A: CaseSensitive
An Integer data types are used to work with numbers. In this case, the numbers
are whole numbers like 10, 20 or 30.

A: True
Execution of the script continues as soon as the Ajax request is sent.

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

A: True

milliseco
You can apply animation duration in Answer as a second parameter of
animate() method.

A: milliseconds
Strings are enclosed with grave accent(`) marks

A: False
Content block (from another file) can be imported anywhere in a web
page, and can contain text, markup, and code, just like any regular web page.

A: True
Ajax make use of the browser’s built-in XHR object to send and receive
asynchr
information to and from a web server Answer .

A: asynchronously
Send the request to the server using the send() method of the XHR object

A: True
Inline expressions (variables and functions) start with @

A: True
ADO.NET provides a bridge between the front end controls and the back end
database.

A: True
Variables are declared with the let keyword

A: False
This variable will point to an array or list of elements, which will be responsible
for storing the elements of the array.

A: True
VBScript is a light version of Microsoft's Visual Studio.

A: True (wrong) The correct answer is 'False'.

text()
get the combined text contents of all matched elements.

A: text( ) (parenthesis have space) The correct answer is: text( )

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

You can replace a complete DOM element with the specified HTML or DOM
elements.

A: True
nline or local stylesThese are written correctly in the HTML tag and precede
other styles.

A: nline or local styles


Creating variables in VBScript is most often referred to as "declaring" variables.

A: False
Variable names should start with a letter and they are case sensitive.

A: True
<head> Defines a header for a document or section

A: False
Returns a DataTableReader with one result set per DataTable, in the same
sequence as the tables appear in the Tables collection

A: CreateDataReader()
_____________ is typically used to get or retrieve some kind of information from
the server that doesn't require any manipulation or change in database, for
example, fetching search results based on a term, fetching user details based
on their id or name, and so on.

A: GET Request
A _________ is a block of code which will be executed only if it is called.

A: function
external CSS files are files of type .css that are linked to a document using the
link tag

A: True
JSON object is a key-value data format that is typically rendered in curly braces.

A: True
C# code is case insensitive

A: False

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

JSON
is a format of sharing data.

A: JSON
HTTP 500 message means the server successfully processed the request.

A: False
loops while or until a conditionis true

A: Do...Loop statement
Free resources and perform other cleanups

A: Finalize
When this access specifier is attached to either a property or a method, it
means that those members cannot be accessed from any external program

A: False

Razor
is a markup syntax that lets you embed server-based code (Visual
Basic and C#) into web pages.

A: Razor
When this access modifier is attached to either a property or a method, it means
that those members can be accessed only by classes inherited from the
current class.

A: True
The jQuery library provides two easing function which are:

A: Linear & Swing


Gets a copy of DataSet with all changes made since it was loaded or the
AcceptChanges method was called, filtered by DataRowState

A: GetChanges(DataRowState)
Blade is a simple markup syntax for embedding server code (C# or VB) into
ASP.NET web pages.

A: False

C++ is a general purpose, multi-paradigm programming language developed by


Microsoft that runs on the .NET Framework.

A: False

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

5th Attempt 39/40


When sending request and retrieving the response, the first thing to do is
initiate
to Answer an XHR object.

A: instantiate (wrong) The correct answer is: initiate

square b
JavaScript uses Answer on either end of its array type.

A: square brackets
Ajax make use of the browser’s built-in XHR object to send and receive
asynchr
information to and from a web server Answer .

A: asynchronously
embedded or global styles are written in the document head and refer to the file
as a whole.

A: True
Keys need to be unique and can include whitespaces, so it’s best to use Answer
undersc
.

A: underscores
AJAX stands for?

A: Asynchronous JavaScript And XML


text( )
get the combined text contents of all matched elements.

A: text( )
select one of two sets of lines to execute

A: If...Then...Else statement
JSON offers a good alternative to XML and requires much formatting

A: False

What does JSON stands for?

A: JavaScript Object Notation


HTTP 302 Message Means The server can't find the requested page.

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

A: False
C++ is a general purpose, multi-paradigm programming language developed by
Microsoft that runs on the .NET Framework.

A: False
An array is an object that can store a collection of items.

A: True
If you want to know the number of elements in an array, you can use this
property

A: length property
The DataRelation objects represent the relationship between two tables.

A: True
You can assign a value to the variable while declaring the variable but not after
declaring the variable

A: False
The while loop is used for iterative purposes. Suppose if you want to repeat a
certain set of statements for a particular number of times, then while loop is
used.

A: True
Specify a callback function to execute when animation is complete.

A: True
A while loop begins with the while keyword, followed by parentheses, where you
specify how long the loop continues, then a block to repeat.

A: True
external CSS files are files of type .css that are linked to a document using the
link tag

A: True

select one of many sets of lines to execute

A: Select Case statement


<fieldset> Specifies self-contained content

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

A: False
Gets or sets the name of the current data set.

A: DataSetName
loops while or until a conditionis true

A: Do...Loop statement
Blade is a simple markup syntax for embedding server code (C# or VB) into
ASP.NET web pages.

A: False

Variable names should start with a letter and they are case sensitive.

A: True

Begins the initialization of the DataSet. The initialization occurs at run time

A: BeginInit

ADO.NET provides a bridge between the front end controls and the back end
database.

A: True

Strings are enclosed with grave accent(`) marks

A: False

A virtual path is shorthand to represent physical paths. If you use virtual paths,
you can move your pages to a different domain (or server) without having
toupdate the paths.

A: True

The Visual Studio IDE can only be used to create a Web-application.

A: False

Returns a copy of the DataSet with all changes made since it was loaded or the
AcceptChanges method was called

A: GetChanges

empty()
remove all child nodes from the set of matched elements.

A: empty()
The two parameters are the URL request method to use and the HTTP to send
the request to.

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

A: False
Type of JavaScript Array method that you can add value as the last item of the
array

A: push method
Razor code blocks are enclosed in @[ ... ]

A: False
C# code is case insensitive

A: False
When this access specifier is attached to either a property or a method, it
means that those members cannot be accessed from any external program

A: False
Type of JavaScript Array method if you want to know the number of elements in
an array

A: length property
An Integer data types are used to work with numbers. In this case, the numbers
are whole numbers like 10, 20 or 30.

A: True

6th Attempt 40/40


Returns a view of data in the data set.

The correct answer is: DefaultViewManager

brow se
is responsible for running JavaScript.

The correct answer is: Browser

jQuery animate()
performs custom animation using element’s style properties.

The correct answer is: jQuery animate() method

Microsoft Visual Studio is an integrated development environment (IDE) from


Microsoft. It is used to develop computer programs for Microsoft Windows.

The correct answer is 'True'.

Razor code blocks are enclosed in @[ ... ]

The correct answer is 'False'.

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

Describe what <b> tag is for

The correct answer is: Defines bold text

he DataSet contains DataTable objects and DataRelation objects.

The correct answer is 'True'.

The ADO.NET objects encapsulate all the data access operations and the
controls interact with these objects to display data, thus hiding the details of
movement of data

The correct answer is 'True'.

<fieldset> Specifies self-contained content

The correct answer is 'False'.

All modern browsers support the XHR object.

The correct answer is 'True'.

The Visual Studio IDE can only be used to create a Web-application.

The correct answer is 'False'.

AJAX stands for?

The correct answer is: Asynchronous JavaScript And XML

Accepts all changes made since the DataSet was loaded or this method was
called.

The correct answer is: AcceptChanges

runs code for each item in a collection or each element of an array

The correct answer is: For Each...Next statement

JSON uses the .json extension when it stands alone.

The correct answer is 'True'.

When sending request and retrieving the response, the first thing to do is
initiate
to Answer an XHR object.

The correct answer is: initiate

_________ is a key-value data format that is typically rendered in curly


braces.

The correct answer is: JSON

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

The DataRelation objects represent the relationship between two tables.

The correct answer is 'True'.

If you want to know the number of elements in an array, you can use this
property

The correct answer is: length property

Destructors are used to initializing the values of class fields when their
corresponding objects are created.

The correct answer is 'False'.

JSON is available for use by many languages including Python, PHP, Java
Ruby
and Answer .

The correct answer is: Ruby

XHR stands for?

The correct answer is: XMLHttpRequest

Ends the initialization of the data set

The correct answer is: EndInit

Returns a DataTableReader with one result set per DataTable

The correct answer is: CreateDataReader(DataTable[])

If you want to add new properties and methods, you can use this property

The correct answer is: prototype property

JavaScript is used mainly or enhancing the interaction of a user with the


webpage

The correct answer is 'True'.

Code statements end with semicolon

The correct answer is 'True'.

Keys need to be unique and can include whitespaces, so it’s best to use Answer
undersc
.

The correct answer is: underscores

When this access modifier is attached to either a property or a method, it means


that those members can be accessed from any external program.

The correct answer is 'True'.

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

Begins the initialization of the DataSet. The initialization occurs at run time

The correct answer is: BeginInit

You can assign a value to the variable while declaring the variable but not after
declaring the variable

The correct answer is 'False'.

The What statement is used to evaluate a boolean expression before


executing a set of statements.

The correct answer is 'False'.

Statements can be executed repeatedly in loops.

The correct answer is 'True'.

HTTP 302 Message Means The server can't find the requested page.

The correct answer is 'False'.

Each key-value pair is separated by a colon.

The correct answer is 'False'.

JSON ob
is a key-value data format that is typically rendered in curly braces.

The correct answer is: JSON object

The dataset represents a subset of the database. It does not have a continuous
connection to the database

The correct answer is 'True'.

Type of JavaScript Array method if you want to know the number of elements in
an array

The correct answer is: Length property

A String data type is used to work with String values. In C#, the datatype is
denoted by the keyword 'String'.

The correct answer is 'True'.

Choose The Rules for VBScript variable names

The correct answers are: Must begin with a letter, Cannot contain a period (.),
Cannot exceed 255 characters

7th Attempt 40/40


runs code a specified number of times

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

The correct answer is: For...Next statement

The dataset represents a subset of the database. It does not have a continuous
connection to the database

The correct answer is 'True'.

Gets a copy of DataSet with all changes made since it was loaded or the
AcceptChanges method was called, filtered by DataRowState

The correct answer is: GetChanges(DataRowState)

Indicates whether string comparisons within the data tables are case-sensitive.

The correct answer is: CaseSensitive

You can assign a value to the variable while declaring the variable but not after
declaring the variable

The correct answer is 'False'.

Returns a DataTableReader with one result set per DataTable

The correct answer is: CreateDataReader(DataTable[])

Razor code blocks are enclosed in @[ ... ]

The correct answer is 'False'.

Microsoft Visual Studio is an integrated development environment (IDE) from


Microsoft. It is used to develop computer programs for Microsoft Windows.

The correct answer is 'True'.

A while loop begins with the while keyword, followed by parentheses, where you
specify how long the loop continues, then a block to repeat.

The correct answer is 'True'.

The default scripting language in ASP is C++.

The correct answer is 'False'.

Accepts all changes made since the DataSet was loaded or this method was
called.

The correct answer is: AcceptChanges

loops while or until a conditionis true

The correct answer is: Do...Loop statement

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

HTTP 500 message means the server successfully processed the request.

The correct answer is 'False'.

Razor
is a markup syntax that lets you embed server-based code (Visual
Basic and C#) into web pages.

The correct answer is: Razor

An Integer data types are used to work with numbers. In this case, the numbers
are whole numbers like 10, 20 or 30.

The correct answer is 'True'.

What does JSON stands for?

The correct answer is: JavaScript Object Notation

runs code for each item in a collection or each element of an array

The correct answer is: For Each...Next statement

Choose The Rules for VBScript variable names

The correct answers are: Must begin with a letter, Cannot contain a period (.),
Cannot exceed 255 characters

VBScript is a light version of Microsoft's Visual Studio.

The correct answer is 'False'.

ADO.NET provides a bridge between the front end controls and the back end
database.

The correct answer is 'True'.

All modern browsers support the XHR object.

The correct answer is 'True'.

text( )
get the combined text contents of all matched elements.

The correct answer is: text( )

A double data type is used to work with decimals. In this case, the numbers are
whole numbers like 10.11, 20.22 or 30.33.

The correct answer is 'True'.

A _________ is a block of code which will be executed only if it is called.

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

The correct answer is: function

When sending request and retrieving the response, the first thing to do is
initiate
to Answer an XHR object.

The correct answer is: initiate

select one of two sets of lines to execute

The correct answer is: If...Then...Else statement

JSON uses the .json extension when it stands alone.

The correct answer is 'True'.

<fieldset> Specifies self-contained content

The correct answer is 'False'.

JSON obje
is a key-value data format that is typically rendered in curly braces.

The correct answer is: JSON object

Free resources and perform other cleanups

The correct answer is: Finalize

Choose what <data> is for

The correct answer is: Links the given content with a machine-readable
translation

C# code is case insensitive

The correct answer is 'False'.

Blade is a simple markup syntax for embedding server code (C# or VB) into
ASP.NET web pages.

The correct answer is 'False'.

Content block (from another file) can be imported anywhere in a web


page, and can contain text, markup, and code, just like any regular web page.

The correct answer is 'True'.

Ajax make use of the browser’s built-in XHR object to send and receive
asynchr
information to and from a web server Answer .

The correct answer is: asynchronously

The Visual Studio IDE can only be used to create a Web-application.

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

The correct answer is 'False'.

select one of many sets of lines to execute

The correct answers are: If...Then...ElseIf statement, or Select Case statement

Defines a piece of computer code

The correct answer is: <code>

Brow se
is responsible for running JavaScript.

The correct answer is: Browser

Creating variables in VBScript is most often referred to as "declaring" variables.

The correct answer is 'False'.

8th Attempt
runs code a specified number of times

The correct answer is: For...Next statement

Creating variables in VBScript is most often referred to as "declaring" variables.

The correct answer is 'False'.

Type of JavaScript Array method if you want to add new properties and method

The correct answer is: Prototype property

Variable
are used to store values or expressions

The correct answer is: Variables

Copies the structure of the DataSet, including all DataTable schemas, relations,
and constraints. Does not copy any data

The correct answer is: Clone

When sending request and retrieving the response, the first thing to do is
initiate
to Answer an XHR object.

The correct answer is: initiate

Returns a DataTableReader with one result set per DataTable

The correct answer is: CreateDataReader(DataTable[])

he DataSet contains DataTable objects and DataRelation objects.

The correct answer is 'True'.

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

square b
JavaScript uses Answer on either end of its array type.

The correct answer is: square brackets

The Visual Studio IDE can only be used to create a Web-application.

The correct answer is 'False'.

What does JSON stands for?

The correct answer is: JavaScript Object Notation

Gets the container for the component.

The correct answer is: CaseSensitive

XHR stands for?

The correct answer is: XMLHttpRequest

Copies both structure and data

The correct answer is: Copy

Choose The Rules for VBScript variable names

The correct answers are: Must begin with a letter, Cannot contain a period (.),
Cannot exceed 255 characters

Inline expressions (variables and functions) start with @

The correct answer is 'True'.

Specify a callback function to execute when animation is complete.

The correct answer is 'True'.

JSON ob
is a key-value data format that is typically rendered in curly braces.

The correct answer is: JSON object

Choose what <a> is for

The correct answer is: Defines a hyperlink

Send the request to the server using the send() method of the XHR object

The correct answer is 'True'.

Variables are declared with the let keyword

The correct answer is 'False'.

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

Indicates whether the component is currently in design mode.

The correct answer is: DesignMode

A String data type is used to work with String values. In C#, the datatype is
denoted by the keyword 'String'.

The correct answer is 'True'.

Razor code blocks are enclosed in @[ ... ]

The correct answer is 'False'.

If you want to add new properties and methods, you can use this property

The correct answer is: prototype property

This variable will point to an array or list of elements, which will be responsible
for storing the elements of the array.

The correct answer is 'True'.

<head> Defines a header for a document or section

The correct answer is 'False'.

Brow se
is responsible for running JavaScript.

The correct answer is: Browser

Indicates whether string comparisons within the data tables are case-sensitive.

The correct answer is: CaseSensitive

Gets a copy of DataSet with all changes made since it was loaded or the
AcceptChanges method was called, filtered by DataRowState

The correct answer is: GetChanges(DataRowState)

right
JSON values are found to the Answer of the colon.

The correct answer is: right

Describe what <b> tag is for

The correct answer is: Defines bold text

select one of two sets of lines to execute

The correct answer is: If...Then...Else statement

Downloaded by Val (medallajunior@gmail.com)


lOMoARcPSD|18956159

A double data type is used to work with decimals. In this case, the numbers are
whole numbers like 10.11, 20.22 or 30.33.

The correct answer is 'True'.

When this access modifier is attached to either a property or a method, it means


that those members can be accessed only by classes inherited from the
current class.

The correct answer is 'True'.

Type of JavaScript Array method that you can add value as the last item of the
array

The correct answer is: Push method

<fieldset> Specifies self-contained content

The correct answer is 'False'.

executes a set of code when a condition is true

The correct answer is: If statement

runs code for each item in a collection or each element of an array

The correct answer is: For Each...Next statement

VBScript is a light version of Microsoft's Visual Studio.

The correct answer is 'False'.

Downloaded by Val (medallajunior@gmail.com)

You might also like