Web & Apps Basics Flashcards

(23 cards)

1
Q

What is a website at its core?

A

A collection of files (HTML, CSS, JS) stored on a server and accessed through the internet.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
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
3
Q

What does HTML do?

A

It structures the content on a webpage (text, images, links, etc.).

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 does CSS do?

A

It controls how a website looks — layout, colors, fonts, and style.

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

What does JavaScript (JS) do?

A

It makes websites interactive and dynamic (e.g. buttons, forms, animations).

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

What is the “frontend”?

A

Everything the user sees and interacts with — built using HTML, CSS, and JS.

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

What is the “backend”?

A

The server side that handles data, logic, and communication with databases or APIs.

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

What language does the browser understand directly?

A

HTML, CSS, and JavaScript.

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

What’s a web server?

A

A computer that stores website files and sends them to users when requested.

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

What’s a database used for in web apps?

A

To store, organize, and retrieve information (like user accounts or posts).

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

What does API stand for?

A

Application Programming Interface.

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

What does an API do?

A

It lets different software systems talk to each other and share data safely.

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

Give a simple example of an API.

A

A weather app using a weather service’s API to get live temperature data.

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

What’s an HTTP request?

A

A message sent from your device to a web server asking for data or a page.

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

What’s an HTTP response?

A

The server’s reply containing the data or webpage requested.

17
Q

What’s the difference between a website and a web app?

A

A website mainly shows information; a web app lets you interact and perform tasks (like logging in, sending messages, etc.).

18
Q

What’s the difference between a web app and a mobile app?

A

A web app runs in a browser; a mobile app is installed on your device.

19
Q

What does “client” mean in web development?

A

The user’s device or browser that requests and displays web content.

20
Q

What does “server” mean in web development?

A

The computer that processes requests and sends back data to the client.

21
Q

What does URL stand for?

A

Uniform Resource Locator — the address of a webpage.

22
Q

What does HTTPS mean?

A

HyperText Transfer Protocol Secure — it encrypts data between browser and server.

23
Q

What’s the basic cycle of how the web works?

A

The client sends a request → the server processes it → the client gets a response (page or data).