Week 09 - World Wide Web Analysis 2 (L26-L30) Flashcards

1
Q

What is DOM?

A

DOM - Document Object Model; programming interface for developers to change document structure of HTML pages;

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

What are Server Side Scripting Languages and how are they used?

A

PHP, PERL, JAVA. Scripts that dynamically generate content on the server. e.g. Request to databases.

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

What are Client Side Scripting Languages and how are they used?

A

Scripts that work on the client. E.g. JavaScript, VBScript. Can dynamically create content on client-side; used for dynamic content, validation and help

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

List some IIS log file formats

A
  • W3C extended
  • W3C centralized
  • Centralized binary loggging
  • IIS standard logging
  • NCSA log file format
  • ODBC logging
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

What is nginx?

A

Web server

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

What is XML?

A

Extensible Markup Language; defines what data actually means. Can have custom tags.

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

What is HTML?

A

Hypertext Markup language. Language that defines how a websites looks like

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

Apache log - explain: %h, %l, %u, %s, %b, %t, %r, %U

A
  • h: Hostname;
  • l: remote username;
  • u: remote username;
  • s: status;
  • b: bytes;
  • t: time;
  • r: first line of request;
  • U: requested URL
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

What is XHTML? What are the main differences to HTML?

A
  • HTML with XML extension.
  • All tags needs to be closed.
  • All tags in small letters.
  • Tags that don’t have ending per definition have special tag
  • Correct DOCTYPE at the beginning.
  • All tags needs to be nested.
  • All tag attributes needs to be added properly.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly