Web_Technologies_Flashcards

(7 cards)

1
Q

How do we create a hyperlink using HTML?

A

By using the <a> tag with href attribute, e.g., <a>Click here</a>.</a>

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

How can we use JavaScript to change what appears on a web page?

A

By manipulating the DOM, e.g., document.getElementById(“demo”).innerHTML = “New content!”;

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

What is the difference between client-side and server-side processing?

A

Client-side processing happens in the browser, while server-side processing happens on a web server.

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

What are the advantages of client-side processing?

A

It’s faster and reduces load on the server.

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

What are the disadvantages of client-side processing?

A

It’s less secure and may not work uniformly across all browsers.

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

What are the advantages of server-side processing?

A

It’s more secure and can access databases.

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

What are the disadvantages of server-side processing?

A

It is slower and puts more load on the server.

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