Test Reviewer Flashcards

(37 cards)

1
Q

Is usually located at the top of the website (or right below a top navigation menu).

A

Header

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

It often contains a logo or the website name.

A

Header

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

Contains a list of links to help visitors navigating through your website

A

Navigation Bar

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

often used for mobile browsers

A

1-column

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

often used for tablets and laptops

A

2-column

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

only used for desktops

A

3-column

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

Placed at the bottom of your page. and it often contains information like copyright and contact info

A

Footer

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

specifies a delay for the start of an animation.

A

animation-delay

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

specifies the number of times an animation should run

A

animation-iteration-count

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

specifies whether an animation should be played forwards, backwards or in alternate cycles.

A

animation-direction

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

The animation is played inforwards. This is default

A

normal

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

The animation is played in backwards

A

reverse

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

The animation is played forwards first, then backwards

A

alternate

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

The animation is played backwards first, then forwards

A

alternate-reverse

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

specifies the speed curve of the animation.

A

animation-timing-function

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

Specifies an animation with a slow start, then fast, then end slowly

17
Q

Specifies an animation with the same speed from start to end

18
Q

This is default

19
Q

Specifies an animation with a slow start

20
Q

Specifies an animation with a slow end

21
Q

Specifies an animation with a slow start and end

22
Q
  • Lets you define your own values in a cubic-bezier function
A

cubic-bezier(n,n,n,n)

23
Q

JavaScript code is inserted between

24
Q

A list of “instructions” to be “executed” by a computer.

A

computer program

25
These programming instructions are called
statements
26
A list of programming statements.
JavaScript program
27
JavaScript statements are composed of:
Values, Operators, Expressions, Keywords, and Comments.
28
first-name, last-name, master-card, inter-city.
Hyphens
29
first_name, last_name, master_card, inter_city.
Underscore
30
FirstName, LastName, MasterCard, InterCity
Upper Camel Case (Pascal Case)
31
firstName, lastName, masterCard, interCity
Lower Camel Case
32
What arithmetic operators is this " + "
Addition
33
What arithmetic operators is this " - "
Subtraction
34
What arithmetic operators is this " * "
Multiplication
35
What arithmetic operators is this " / "
Division
36
Look at the code below and analyze what would be the output:

var person = { firstName: "Isaac", lastName : "Newton", id : 4343, age: 58, tone: "Fair", built: "Short", fullName : function() { return this.firstName + " " + this.lastName + " is old" + this.age + "and" + this.built; } }; document.getElementById("demo").innerHTML = person.fullName;
Isaac Newton is old 58 and short
37

var person = { firstName: "Albert", lastName : "Einstein", id : 1234, age: 50, tone: "Fair", built: "Tall", fullName : function() { return this.id + " is " + this.firstName + "" + this.lastName; } }; document.getElementById("demo").innerHTML = person.fullName;
1234 is Albert Einstein