LONG TEST Flashcards

1
Q

It normally measures in BPS, bits per second

A

Bandwidth

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

THE EARLY TECH

A

Radio, Telephone, Telegrah

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

The ARPANET was created in

A

1960

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

It identify a resources on WWW

A

URL(UNIFORM RESOURCE LOCATOR)

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

It publish documents

A

HTTP (Hyper Test Transfer Protocol)

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

It responds to HTML request

A

Software Program( Web server software)

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

It displays the HTML

A

Browser(Program)

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

HTML was created by?

A

Tim Berners Lee

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

Is HTML a programming language?

A

No

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

HTML files ends with

A

.html or html expansion

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

HTML 1.0 was created in

A

1991

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

The HTML 2.0 was created in

A

1995

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

The HTML 3.2 was created in

A

1997

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

The XHTML was created in

A

2000

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

the HTML 5 was created in

A

2014

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

What is the <html> means?

A

The root element of html code

17
Q

What does <!DOCTYPE html> means?

A

The document is html 5 document

18
Q

It is the document METADATA

A

<head>
</head>

19
Q

It’s a type of HTML element that defines the document title that is shown in a browser’s title bar or a page tab

A

<title>
</title>

20
Q

It is a type of element that contains all info related

A

<meta></meta>

21
Q

It is a type of element that correct current HTML file to an external source

A

<link></link>

22
Q

It is a type of element that is represents as document body

A

<body>
</body>

23
Q

It is a type of element that represents as comment

A

<!---->

24
Q

The most important to least important in headings

A

<h1> to <h6>
</h6></h1>

25
Q

It is a type of element that is represented as a paragraph

A

<p>
</p>

26
Q

It is a type of element that represents a preformatted text

A

<pre>
</pre>

27
Q

It is a type of element that represents a superscript

A

28
Q

It is a type of element that represents a subscript

A

29
Q

It is a type of element that represents a line break

A

<br></br>

30
Q

It is a type of element that represents a highlight text

A

<mark></mark>

31
Q

It is a type of element that represents a Horizontal Rule; thematic break

A

<hr></hr>

32
Q

It is a type of element that represents an emphasis

A

<em></em>

33
Q

It is a type of element that represents a bold text

A

<strong></strong>

34
Q

It is a type of element that represents an ordered list

A

<ol>
</ol>

35
Q

It is a type of element that represents an unordered list

A

<ul>
</ul>

36
Q

It is a type of element that represents a definition for a description

A

<dd>
</dd>

37
Q

It is a type of element that represents a definition LIST

A

<dl>
</dl>

38
Q

It is a type of element that represents a definition term of a definition list

A

<dt>
</dt>