Introduction To ASP.NET Flashcards

1
Q

Who created the World Wide Web, and when was it introduced?

A

Tim Berners-Lee created the World Wide Web in 1990 and 1991.

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

What is the difference between the ‘Web’ and the ‘Internet’?

A

The Web is a collection of interconnected documents accessible via hypertext links, while the Internet is the global network that hosts the Web and other services.

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

What is a hyperlink?

A

A hyperlink is a reference to a specific web page that users can click to navigate to that page.

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

What is a URL?

A

A URL (Uniform Resource Locator) is a unique address used to identify a web page on the Web.

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

What is the function of a web browser?

A

A web browser is a program that displays web pages on the screen.

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

What is the role of a web server?

A

A web server delivers web pages, handles requests, and provides responses to browsers.

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

What was the first graphical web browser, and when was it created?

A

NCSA Mosaic, created in 1993 at the University of Illinois.

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

Which browser controlled 75% of the market shortly after its release in 1994?

A

Netscape Navigator.

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

When was Microsoft Internet Explorer released?

A

In 1996.

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

What event led to rapid development of advanced web page standards?

A

The browser wars over Dynamic HTML (DHTML).

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

What is the World Wide Web Consortium (W3C), and when was it established?

A

The W3C oversees the development of web technology standards, and it was established in 1994.

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

What is HTML?

A

Hypertext Markup Language, a markup language used to define the logical structure of web documents.

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

What is an HTML element?

A

A tag pair and the data it contains, determining how content is displayed on a web page.

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

What is the root element of an HTML document?

A

The element that contains all other elements, typically <html>.

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

What are the two main sections of an HTML document?

A

The <head> (information used by the browser) and <body> (the content displayed on the web page).

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

What is a two-tier client/server system?

A

A system where the client handles the user interface and the server manages data and processing.

17
Q

What protocol facilitates communication between a web browser and a web server?

A

HTTP (Hypertext Transfer Protocol).

18
Q

What are the tiers in a three-tier client/server system?

A

Client tier, processing tier, and data storage tier.

19
Q

What is JavaScript, and what does it enable?

A

JavaScript is a client-side scripting language that allows developers to create interactive web pages.

20
Q

What are the limitations of JavaScript?

A

It cannot create network connections, access databases, or execute system commands on a client.

21
Q

What is the purpose of the

 element in HTML?
A

It tells the browser to interpret and execute the JavaScript code it contains.

22
Q

What is an object in JavaScript?

A

A collection of programming code and data treated as a unit.

23
Q

How do you assign a value to a variable in JavaScript?

A

Using the = operator, e.g., var myVariable = 5;.

24
Q

What is an event in JavaScript?

A

A specific circumstance, like a user action, that JavaScript can detect and respond to.

25
How do you add comments in JavaScript?
Use // for single-line comments and /* */ for multi-line comments.