SLR 12/ Web Technology Flashcards

1
Q

Explain Indexing

A
  1. Programs called crawlers travel the web indexing pages
  2. They follow internal and external links in and out of web pages
  3. They also read metadata inside web pages to pull out keywords and other data that can be used to help find and index the webpage
  4. All this information gets stored in the index of a search engine.
    5.This index needs to be constantly updated so broken links are removed and new web pages are added.
    6.When you carry out a search in a search engine, it is the index that is searched, not the world wide web.
    7.The information in the index can be searched quickly and returns your results list.
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

Identify the parts of Google PageRank algorithm

PR(A) = (1-d) + d(PR(T1)/C(T1) + … + PR(Tn)/C(Tn))

A

PR(A) is the PageRank of the page you want to rank.​

PR(Ti) is the PageRank of any pages that link to the page you want to rank.​

C(Ti) is the number of outbound links on the pages that link to the page you want to rank.​

d is the damping factor, set between 0 and 1 (normally around 0.85).

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

What does Client Side Mean?

A

In web development, ‘client side’ refers to everything in a web application that is displayed or takes place on the client (end user device). This includes what the user sees, such as text, images, and the rest of the UI, along with any actions that an application performs within the user’s browser.

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

What does Sever Side Mean?

A

Sever Side means everything that happens on the server, instead of on the client. In the past, nearly all business logic ran on the server side, and this included rendering dynamic webpages, interacting with databases, identity authentication, and push notifications.

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