1.3.4 Web technologies - Oscar Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What is an IDE?

A

An Integrated Development Environment (IDE) is a software application that provides a comprehensive set of tools for software development.

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

What is search engine indexing?

A

Process of collecting, analysing, and storing web content to provide fast, relevant search results.

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

What is the PageRank algorithm?

A

Pages are ranked by the number and quality of links pointing to them.

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

What is server side processing?

A

server side processing refers to operations that are executed on a web server rather than on the user’s device

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

What is client-side processing?

A

Client side processing refers to operations that are executed in the user’s device, rather than in a web server

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

Advantages of client side processing?

A
  • Speed
  • Offline Capabilities
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

Advantages of server of server side processing?

A
  • Security
  • Centralised Control
  • Complex Operations
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

Disadvantages of server side processing?

A
  • Higher server load
  • Latency
  • Increased Expenses
  • Scalability Issues
  • Dependency on internet connection
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Disadvantages of client side processing?

A
  • Browser Compatibility
  • Performance Issues
  • Initial Load Time
  • Dependency On JavaScript
  • Security Concerns
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

Is HTML a programming language?

A

No

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

What is CSS used for in web development?

A

It used for the aesthetics of the app

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

What is JS used for in web development?

A

It is used for the functionalities such as buttons

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

Which is less expensive, client side or server side processing?

A

Server side

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

What does JS stand for?

A

JavaScript

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

Does client side processing require a server?

A

no

16
Q

Which uses more system resources, client or system side processing?

A

client side

17
Q

What does HTML stand for?

A

Hypertext Markup Language

18
Q

What is a HTML element?

A

A HTML element is composed of a webpage defined by a start tag content and an end tag

19
Q

What is the purpose of HTML tags?

A

HTML tags are used to create elements and structure content on a web page

20
Q

What is the purpose of the <!DOCTYPE html> tag?

A

Defines the document type and HTML version

21
Q

What does the <a> tag do?</a>

A

Defines a hyperlink to link one page to another

22
Q

Purpose of <img></img> tag

A

used to embed an image in a HTML page

23
Q

purpose of <div>

A

used to define sections within a in a HTML document

24
Q

purpose of <h> tags</h>

A

represents different levels of headings

25
Q

purpose of <p> tags

A

defines a paragraph in a HTML document

26
Q

Difference between <ul> and <ol> tags?

A

<ul> defines an unordered list and <ol> defines an ordered list
</ol></ul>

27
Q

Inside which HTML element do we put JavaScript?

A
<script>

</script>
28
Q
A