Web Development Flashcards

717

1
Q

What does HTML stand for?

A

HyperText Markup Language

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

What is the purpose of HTML?

A

To structure content on the web by defining elements like headings, paragraphs, links, and images.

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

What is a tag in HTML?

A

A tag is a markup element that defines the start and end of an HTML element, usually enclosed in angle brackets (e.g., <p></p>).

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

What does CSS stand for?

A

Cascading Style Sheets

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

What is the purpose of CSS?

A

To control the layout, style, and presentation of HTML elements on a web page.

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

What is the box model in CSS?

A

The box model describes the rectangular boxes generated for elements, consisting of margins, borders, padding, and the actual content area.

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

What is responsive web design?

A

An approach to web design that makes web pages render well on various devices and window or screen sizes.

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

What is JavaScript?

A

A high-level, dynamic programming language used to create interactive effects and dynamic content on web pages.

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

What are variables in JavaScript?

A

Variables are containers for storing data values. They can be declared using let, const, or var.

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

What is the difference between let, const, and var?

A

let allows block-scoped variable declaration; const declares block-scoped constants that cannot be reassigned; var is function-scoped and can be redeclared.

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

What is a function in JavaScript?

A

A function is a reusable block of code designed to perform a specific task when invoked.

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

What is the DOM?

A

The Document Object Model (DOM) is a hierarchical representation of the webpage that allows JavaScript to interact and manipulate the content and structure of a document.

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

What is an event in JavaScript?

A

An event is an action that occurs as a result of user interaction, such as clicks, key presses, or mouse movements.

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

What is AJAX?

A

Asynchronous JavaScript and XML (AJAX) is a technique for creating fast and dynamic web pages by sending and retrieving data asynchronously without refreshing the page.

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

What does JSON stand for, and what is its purpose?

A

JSON stands for JavaScript Object Notation; it’s a lightweight data interchange format easy for humans to read and write and easy for machines to parse and generate.

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

What are JavaScript frameworks and name a few?

A

JavaScript frameworks are pre-written JavaScript code libraries that simplify complex tasks. Examples include React, Angular, and Vue.js.

17
Q

What is the Internet?

A

A global network of interconnected computers that communicate using standardized protocols.

18
Q

What protocol is primarily used for data transmission on the Internet?

A

TCP/IP (Transmission Control Protocol/Internet Protocol).

19
Q

Who is credited with inventing the World Wide Web?

A

Tim Berners-Lee.

20
Q

What does HTTP stand for and what is its purpose?

A

Hypertext Transfer Protocol; it’s the protocol used for transmitting web pages on the Internet

21
Q

What role do web browsers play in relation to the World Wide Web?

A

They are applications that allow users to access and interact with web content.

22
Q

What is HTML and its significance?

A

Hypertext Markup Language; it’s the standard markup language for creating web pages.

23
Q

What does a URL represent?

A

Uniform Resource Locator; it serves as the address to access resources on the Internet.

24
Q

In what year was the World Wide Web first proposed?

A

1989.

25
Q

Name two key characteristics of the Internet.

A

Decentralization and scalability.

26
Q

What distinguishes the World Wide Web from the Internet?

A

The Web is a collection of information accessed via the Internet, while the Internet is the underlying infrastructure that connects all devices.

27
Q

Which of the following elements is used to define the structure of a webpage?

A

<div>
</div>

28
Q

Which HTML tag is used to create a hyperlink?

A

<a></a>

29
Q

Which method is used to send data to the server in a form?

A

POST

30
Q

Which of the following is a semantic HTML element?

A

<article>
</article>

31
Q

Which of the following techniques is used to improve website loading speed?

A

Lazy loading

32
Q

Which of the following is an example of a CSS preprocesser?

A

LESS

33
Q
A