You are on page 1of 2

TLE REVIEWER (by Mira<33)

1.) This event fires, for a specific DOM node, when an element gains focus – focus
2.) This event fires on the node representing the <form> element when a user submits a form. -
submit
3.) It fires when the user moves the cursor, which was outside an element before, inside the
element. – mouseover
4.) The browser can start playing a media (has buffered enough to begin) -canplay
5.) It fires when the webpage finishes loading. It can also fire on nodes of elements like images,
scripts or objects. -load
6.) Change an image when a user holds down the mouse button. -on mouse down
7.) It fires when we resize the browser window. -resize
8.) This fires, for a specific DOM node, when an element loses focus- blur
9.) This event fires before the users leave the page, i.e., the webpage is unloading. – unload
10.)It fires when the user presses a key that results in printing a character on the screen. -keypress
11.)The event fires when the user scrolls up/down on the browser window. It can relate to the entire
page or a specific element -scroll
12.)This event fires when the browser encounters a JavaScript error or an asset that doesn’t exist -
error
13.)It fires when the status of various form elements change. -change
14.)This event fires when the user clicks the primary mouse button, in quick succession, twice -
dblclick
15.) ISO Date format – The International Standard “2015-03-25”
16.)Which does not belong? ( Drop downlist, Input, Button) – Drop-downlist
17.)Which does not belong?{(newDate (Y,M); newDate(Y,M,D); newDate (M,D,H)} -newDate (M,D,H)
18.)If the type attribute is omitted in the input element, the input field gets the default type: – Text
19.)How would you add space inside the text field? – use padding attribute
20.)Which is not acceptable in declaring variable – var return;
21.)Which input element/attribute can be a submit button- image
22.)Which does not belong? -SetFullYear()
23.)Which element is used to create multi-line text input? -textarea
24.)This events fire when the mouse moves or the user clicks a button. -Mouse events
25.)Which does not belong? - &&
26.)All JavaScript variable must be verifies with __? -unique names
27.)! -logical operations
28.) && -logical operators
29.) < -Comparison or Relational Operations
30.)* -Mathematical operation
31.)-- -Comparison or Rational Operations
32.)An HTML form facilitates the user to enter data that is to be sent to the Server for processing
such as name, email address, password, phone number, etc.
33.)Which element are used to create a drop-down list? - <select> & <option>
34.)The name attribute is needed to reference the form data after the form is submitted. If you omit
the name attribute, no data from the drop-down lost will be submitted. -TRUE
35.)The following are form elements of an HTML document except__? -dropdown textarea
36.)Which defines a text-area? - <textarea>
37.)While the value in <input type=”hidden”> is not displayed to the user in the page’s content, it is
visible (and can be edited) using any browser’s developer tools or “View Source” functionality.
You can also use these hidden inputs as a form of security. – False
38.)The form should accept email address as user input and should display an error message when it
receives invalid input. - Input type=”email”
39.)Lisa, a web designer would like to create a form to collect user data such as a survey on user’s
recent online shopping experience. If she would use a graphical control element that would
allow the user to choose only one of a predefined set of mutually exclusive options through
rating based on how important they survey category is, which is the best solution that she could
add to her web design? WHY? – Radio buttons; only one is allowed to use a graphical control
element.
40.)What happen if you add this code in your CSS file for the class container? “.container
input:checked~.checkmark { background-color: lightpink;} – When the checkbox is checked it
changes to color lightpink.

CODING ( chance na katulad sa practical test )

You might also like