cst final Flashcards

1
Q

How do you end a line of javascript code?

A

;

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is an Event Handler?

A

Event handlers can be used to handle and verify user input, user actions, and browser actions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

onchange

A

An HTML element has been changed

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

onclick

A

The user clicks an HTML element

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

onload

A

onload

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Is Javascript case sensitive?

A

Yes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

What is a cue?

A

::cue CSS pseudo-element can be used to style captions and other cues in media with VTT tracks

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

How can a cue be used?

A

::cue(<selector>) OR ::cue</selector>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

How do you make multiple Line JS comments?

A

/*

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Rowspan

A

Specific to table cells for controlling their vertical span within a table

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

How do you comment in a VTT file?

A

NOTE:

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

Spanning

A

Used to group inline elements for styling or scripting purposes

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

control attribute for video/audio purpose

A

The “controls” attribute in HTML is used with the <video> and <audio> elements to include a set of playback controls for the user. These controls typically consist of a play/pause button, volume control, progress bar, and other features, depending on the browser and platform.</audio></video>

EX: <video></video>

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Same Style rule, multiple elements

A

If you want to apply the same style rule to multiple HTML elements using CSS, you can group those elements together in the CSS rule by separating them with commas.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

When would you need to specify a file name for a video or audio file, particularly for older browsers

A

If it didnt support modern features.

You would use a parameter : A parameter in this context likely refers to a setting or piece of information that you provide to control the behavior of something.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

css animations

A

Allow you to create smooth and visually appealing transitions or movements on web pages without relying on JavaScript or other scripting languages.

17
Q

Common animation properties

A

Animation name, duration, timing function, delay, iteration count, direction, and fill mode

18
Q

Fieldset

A

The <fieldset> element in HTML is used to group related elements within a web form and is often accompanied by the <legend> element to provide a title or caption for the grouping.

19
Q

Forms

A

<form> : various form elements and attributes are used to collect and submit user input

Common examples: <input></input> with type="text", <textarea> , <select> , <button>
action and method
</button></select></textarea></form>

20
Q

input type

A

the type attribute is used within the <input></input> element to define the type of data that the input field is expected to accept.

<input></input> text, password, checkbox, submit, reset, file

21
Q

Table

A

an HTML element used to organize and display data in a structured grid or tabular format. Tables are composed of rows and columns, with each intersection of a row and column referred to as a cell. The primary HTML elements used to create tables are <table>, <tr> (table row), <th> (table header cell), and <td> (table data cell).

22
Q

Rows

A

A row is a horizontal group of cells within a table.

23
Q

Column

A

A column is a vertical group of cells within a table.