Theorie HTML Flashcards

1
Q

Was bedeutet “www” ausgeschrieben

A

World Wide Web

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

At the center of “the web today”

A

HTML Living Standard

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

The Web: Architecture

  • Client?
  • Server?
  • Interaction?
A

Client server architecture

  • client: browser
  • server: web server
  • interaction: request and response
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

World Wide Web Consortium

  • short?
  • Founded in?
  • founder and director?
A

World Wide Web Consortium

  • short: W3C
  • Standardize technologies for the World Wide Web
  • Founded: 1994 at the MIT
  • Founder and director: Tim Bernerse-Lee
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Basic Languages of the Web

A
  • HTML: Hypertext Markup Language

- CSS: Cascading Style Sheets

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

Browsers are used as…

A

.. Web clients

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

HTML is used to …

A

… specify contents and structure of documents

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

CSS is used to …

A

… style the document

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

What is a markup language

A

A markup language is a system for annotating a document in a way that is syntactically distinguishable from the text.

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

LaTeX (Converted to PDF)

A

LaTex is a document preparation system of the TEX typesetting program.

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

Basic Elements of the Web

A
  1. Resources: What are the possible types of resources?
  2. Address: What is the address of a resource?
  3. Protocol: How do client and server negotiate the transfer of resources?
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

GIF

A

Graphics Interchange Format

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

JPEG

A

Joint Photographic Expert Group

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

PNG

A

Portable Network Graphic

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

SVG

A

for vector graphics (generated, databased, interactive)

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

SVG and MathML can be embedded directly in…

A

HTML code

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

MathML support in browsers out of the box is inferior to

A

..SVG

18
Q

MathML support can be added …

A

with a JS library: MathJax. The technique is called “Polyfill”

19
Q

give an example for a simple encoding

A

ASCII

20
Q

ASCII

A

American Standard Code for Information Interchange

21
Q

How many bits does ASCII use

A

7 bits (2^7=128)

22
Q

How many bits does ISO encodings use

A

8 bits (2^8=256)

23
Q

UTF-8

  • ausgeschrieben?
  • variable length encoding?
  • backward compatible to?
A
  • Unicode Transformation Format

- backward compatible to ASCII

24
Q

how can you insert UTF-8 to your HTML files

A
25
Q

URL ausgeschrieben

A

Uniform Resource Locator

26
Q

Host

Port

A

host: domain name or IP address

port: service on host to connect with
- default for HTTP: 80
- default for HTTPS: 443

27
Q

Wieviele Bits haben:

  • IPv4?
  • IPv6?
A
  • IPv4: 32 Bit (2^32 addresses)

- IPv6: 128 Bit (2^128 addresses)

28
Q

was macht “the directory structure”

A

the directory structure directly corresponds to the ‘path’-part of the URL.

Important: clear directory structure

29
Q

check-tools?

A

lint tools, validators, test tools

30
Q

transform tools?

A

Sass, LESS to CSS, CoffeeScript to JavaScript

31
Q

Optimize tools?

A

Images, CSS, JavaScript (compress, join)

32
Q

photo editors and drawing applications

A

pixel and vector graphics

33
Q

A client requests resources form a

A

web server

34
Q

there a two different web servers

A

static and dynamic web servers

35
Q

Resources

A

HTML documents, CSS and JS-files, images, …

36
Q

SVG and MathML can be embeded in..

A

HTML

37
Q

which one is the preferred character encoding

A

UTF-8

38
Q

for what are URLs used

A

to address resources in the Web

39
Q

how can Hosts be identified

A

with IP addresses or domain names

40
Q

HTTP is the … at the application level

A

web protocol