Test Reviewer Flashcards

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

A

ease

17
Q

Specifies an animation with the same speed from start to end

A

linear

18
Q

This is default

A

ease

19
Q

Specifies an animation with a slow start

A

ease-in

20
Q

Specifies an animation with a slow end

A

ease-out

21
Q

Specifies an animation with a slow start and end

A

ease-in-out

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

A

and tags

24
Q

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

A

computer program

25
Q

These programming instructions are called

A

statements

26
Q

A list of programming statements.

A

JavaScript program

27
Q

JavaScript statements are composed of:

A

Values, Operators, Expressions, Keywords, and Comments.

28
Q

first-name, last-name, master-card, inter-city.

A

Hyphens

29
Q

first_name, last_name, master_card, inter_city.

A

Underscore

30
Q

FirstName, LastName, MasterCard, InterCity

A

Upper Camel Case (Pascal Case)

31
Q

firstName, lastName, masterCard, interCity

A

Lower Camel Case

32
Q

What arithmetic operators is this “ + “

A

Addition

33
Q

What arithmetic operators is this “ - “

A

Subtraction

34
Q

What arithmetic operators is this “ * “

A

Multiplication

35
Q

What arithmetic operators is this “ / “

A

Division

36
Q

Look at the code below and analyze what would be the output:

<p></p>

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;

A

Isaac Newton is old 58 and short

37
Q

<p></p>

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;

A

1234 is Albert Einstein