web development study cards Flashcards

1
Q

Where does HTML code get interpreted?

A

in the browser on the client machine

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

Our development stack will be

A

A client side running react and a server side running node.js/express

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

What is the purpose of the DNS ?

A

Translate a domain name into a physical IP address

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

Which one is not true about HTML?

A

It contains methods and constructs to dynamically update a document

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

Which of the following is NOT a protocol that runs on the Internet?

A

JSON

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

What does an http status code 401 mean?

A

Unauthorized request

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

Which one is not a type of style sheet we discussed?

A

internal

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

External type of style sheet?

A

a separate file linked to html web page

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

inline type of style sheet?

A

it’s defining a single elects with insert shell sheets in an html document.

<p>isa</p>

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

It is a series of numbers that identifies a computer on the internet.

A

An IP address

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

After a WWW client 1. Sends an HTTP request to a web server2. The server processes the request What does the server send back? (select the best answe

A

An HTTP response that may include an HTML fil

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

The CSS box model is essentially a box that wraps around every HTML element. It consists of

A

margins, borders, padding, and the actual content

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

internal type of style sheet

A

its using an style sheet inside the html file.

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

an disadvantage of css listen in class

A

faster load of pages

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

How many pixels high would the following div tag require?
div {
width: 100px;
height: 150px;
border: 5px solid gray;
margin: 10 px; }

A

180 pixels

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

Which of the following is NOT a border type:

A

bevel

17
Q

Which one is not a type of style sheet we discussed?

A

internal

18
Q

Howdy <div style='border:5px solid #000000;'> Partner </div>

A

It will create a box around Partner on a new line under Howdy

19
Q

<span>Partner</span>

A

It sets adds 25 px from the top, 5px from the right, 25px to the bottom and 5px from the left;

20
Q

How many pixels high would the following div tag require?

div {width: 100px;
height: 150px;
border: 5px solid gray;
margin: 10 px;
padding:
5px;box-size:
border-box;
}

A

170 pixels

21
Q

What is the best description of the following CSS?
img {
float: left;
padding: 12px
}

A

Move img tags to the left of their container and remove them from the flow of the document

22
Q

What is the best description of what this CSS setting does?
flex-basis: 0

A

collapse the flex item to the size of the content only