CS FINALS REVIEWER

studied byStudied by 1 person
5.0(1)
Get a hint
Hint

Internet

1 / 131

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

132 Terms

1

Internet

the go-to place for information, communication, banking, shopping, media and entertainment, and so much more.

New cards
2

History of the Internet (dates)

1957, 1969, 1970s, 1980s, 1990s, 21st century

New cards
3

1957

launch of Sputnik, development of Advanced Research Projects Agency (ARPA)

New cards
4

1969

first ever message sent through ARPANET, UCLA sent “log in” but Stanford only received “lo”. Only four computers were connected to the ARPANET

New cards
5

1970s

Ray Tomlinson created the first electronic mail (email). first computer-to-computer chat happened with Liza and Parry. First use of the term Internet.

New cards
6

1980s

Governments and universities all around the world started researching and implementing their networks.

New cards
7

1990s

ARPANET shut down. Tim Berners-Lee invented World Wide Web. Surfing the internet coined. First item ordered online was a pizza. Yahoo and Google were born

New cards
8

21st century

The 21st Century is known to be the decade when social networking sites emerged.

New cards
9

TCP/IP

Rules of communication for computers.

New cards
10

Packets

small pieces of information transmitted over a network

New cards
11

Transfer Control Protocol (TCP)

Transfer Control Protocol (TCP) breaks large packets into smaller ones.

New cards
12

Internet protocol (IP)

Internet Protocol (IP) addresses and routes packets.

New cards
13

IP Addresses

used by IP to identify destinations

New cards
14

Domain Name System (DNS)

allows the use of alphanumeric characters instead of numbers for IP addresses. (google.com/120.28.5.177)

New cards
15

Servers

machines that hold shared resources and always connected to the network.

New cards
16

Clients

machines for personal use that request a page from the server.

New cards
17

Internet Corporation for Assigned Names and Numbers (ICANN)

assigns domain names, IP addresses, protocol parameters, and port numbers.

New cards
18

World Wide Web

collection of interconnected documents and other web resources. just a service that runs on the Internet.

New cards
19

Internet vs internet

Internet is an electronic communications network that connects computer networks globally. “internet” is still a computer network, but is not connected to the Internet

New cards
20

ISP

Internet service provider

New cards
21

Types of Internet access technologies

Dial up and broadband

New cards
22

Dial-up

uses a modem and a phone call to connect, one of the slowest methods of accessing the Internet

New cards
23

Broadband

wide bandwidth, most used form of Internet access

New cards
24

Types of broadband

DSL, Cable connection, Fiber optic, Satellite, Mobile broadband

New cards
25

DSL

Digital Subscriber Line, utilizes unused telephone wires.

New cards
26

Cable connection

delivers data over the same cable used to deliver television data.

New cards
27

Fiber Optic

uses light to transmit data signals; fastest

New cards
28

Satellite

uses orbiting satellites to transmit and receive data

New cards
29

Mobile Broadband

wireless broadband technology accessible via smart devices (most used in the Philippines)

New cards
30

Types of Internet browsers

Opera, Safari, Google Chrome, Mozilla Firefox, Internet explorer, Microsoft Edge

New cards
31

The golden rule

Do unto others online as you would have done to you.

New cards
32

Cyberbullying

repeated use of the online platform to embarrass, strip dignity, sow fear, and incite violence against another person.

New cards
33

Not cyberbullying

express thoughts about a person, an incident, or an opinion

New cards
34

Three types of attack

Attack on reputation, attack on appearance, attack on victim’s opinion

New cards
35

Attack on reputation

Attacks on their reputation and branding (Leni Robredo, “Robredo Branding”)

New cards
36

Attack on appearance

Attacks on how someone looks (Nancy Binay, skin color)

New cards
37

Attack on victim’s opinion

Attacks on victim’s views and values (Senator Bong Go, Duterte)

New cards
38

Three manners of attack

Spreading edited images, spreading private videos, spreading lies

New cards
39

Trolling

act of triggering people on the Internet by starting arguments, posting off-topic messages, or provoking negative response.

New cards
40

Personal Information

any and all forms of data that identify an individual

New cards
41

Data Privacy Act 2012

states that the collection of personal data “must be a declared, specified, and legitimate purpose”. Also states such data must be “freely given, specific, and informed”.

New cards
42

Online Privacy

ability to control what information you share, who can see what you share, and what others can do with it

New cards
43

Digital Footprint

collected information about an individual across multiple websites

New cards
44

Surfing

go from one website to another in search of information of interest

New cards
45

Website

Set of related web pages served from a single web domain. Websites are accessible through URL

New cards
46

URL

the global address of a website. Consists of protocol, server name, path/filename, and anchors

New cards
47

Protocol

set of rules and formats for information exchange. Consists of HTTP, HTTPS, and FTP

New cards
48

HTTP

hypertext transfer protocol

New cards
49

HTTPS

hypertext transfer protocol secure

New cards
50

FTP

file transfer protocol

New cards
51

Server name

Internet address of the web server, right after protocol

New cards
52

Path/filename

folder and filename, after server name

New cards
53

Anchors

bookmarks within an HTML file (#)

New cards
54

Phishing

act of attempting to acquire information by masquerading as a trustworthy entity

New cards
55

Tags

used to implement html elements

New cards
56

Opening tag

has only brackets <…>

New cards
57

Closing tag

has a bracket followed by a forward slash and closed with another bracket </…>

New cards
58

Self-closing tag

opens and closes with one tag <tagname/>

New cards
59

1990

Tim Berners-Lee created the first Web Browser, the World Wide Web

New cards
60

Tim Berners-Lee

creator of first web browser

New cards
61

Mosiac

first web browser

New cards
62

HTML 1

1993, Tim Berners-Lee linked documents with hypertext; HTML was intended as platform-independent

New cards
63

HTML 5

established guidelines stating the adding of new features based on HTML, CSS, the DOM structure, and JavaScript standards; HTML became device-independent

New cards
64

Creating an HTML document

  1. Decide how your files will be organized

  2. Decide on a naming convention and be consistent with it (kebab-case, CamelCase, snake_case)

  3. Decide on a text editor

New cards
65

Document Object Model (DOM)

provides a common tree-like structure; shows the structure of tags

New cards
66

Document type

<!DOCTYPE html> is written at the start of an HTML document

New cards
67

HTML element

<html> . . . </html> is used to tell the browser uses HTML
        – has an attribute lang meaning language

New cards
68

Head element

includes information mostly invisible to the user
        > has the metadata, language, title, and supporting files
        > metadata tells the used character set/keywords/author/etc

New cards
69

Title element

  – declared inside the head
  – output is displayed on top of the browser
  – uses <title> . . . </title>

New cards
70

Body element

   – contains all displayed content on the screen
  – anything not on the body will NOT be displayed

New cards
71

Display

– contains the design elements
-either block, inline or inline-block

New cards
72

Inline

only takes up as much space as needed; ex: <span>, <a>, <img>

New cards
73

Block

can take up screen’s whole width and height ex. <div>, <h1>-<h6>, <p>, <header>, <footer>, <section>

New cards
74

Inline-block

formatted like an inline; modifications are allowed

New cards
75

Headings

- subsections; appear nested in the outline

– block elements that create a new line for the next elements

- h1 is the largest, h6 is the smallest

New cards
76

Paragraph

– block element that should only contain inline elements
        – body can have multiple paragraphs, but paragraphs cannot be declared inside one another
        – uses <p> . . . </p>

New cards
77

Divider

– generic section larger than a paragraph

– multiple dividers can be declared inside dividers

– uses <div> . . . </div>

New cards
78

Horizontal rule

– a partition that indicated a thematic break

– a self-closing tag, uses <hr>

New cards
79

Line breaks

– “breaks” a line and starts a new one

– a self-closing tag, uses <br>

New cards
80

Coding practices

  • use comment

  • declare <DOCTYPE! html>

  • type in lowercase for elements

  • close all elements

  • use indentation

New cards
81

Ordered list

        – lists whose items are denoted by a number or letter
        – uses <ol> . . . </ol>

New cards
82

Unordered list

        – lists whose items are denoted by bullet points or icons
        – uses <ul> . . . </ul>

New cards
83

Nested list

ordered/unoredered lists inside one another (make sure to use <li> and </li> and close the lists with the one inside going first>

New cards
84

Attributes

– provide additional information about an element
        – always specified in the opening tag

- use “type =” and always put the attribute in quotes

New cards
85

Special entities

typing these out in a paragraph or in <span> will still be okay but code might get confused

<p>typing these out in a paragraph or in &lt;span&gt; will still be okay but code might get confused</p>
New cards
86

Details

        – adds a paragraph of information that can be opened
        – uses <details> . . . </details>

New cards
87

Summary

        – what appears when details is clicked
        – uses <summary> . . . </summary>

New cards
88

Span

– inline tag for a plain text

New cards
89

Subscript

        – transforms text into a subscript <sub> </sub>
        – e.g. O₂

New cards
90

Superscript

        – transforms text into a superscript <sup> </sup>
        – e.g. 2²

New cards
91

Text-heavy pages

        – they are like “lite” versions of websites
        – they dwell less on images and visual aids

New cards
92

HTML images

        – used to insert images on the screen
        – written as <img> (self-closing tag)
        – carry two important attributes, src (source) and alt (alternative text)
        – support .svg, .gif, .bmp, .png, .jpg, and .jpeg

New cards
93

src

the file name and the file type, displays the SOURCE of the image (the picture)

New cards
94

alt

displays a brief description of the image proper just in case there are any errors or it cant load

New cards
95

Icons

    – used instead of texts
    – goal is to signify a common object that is universally understandable
    – some appear on browser tab or browser’s main body
    – e.g. home icon for home page, bell icon for notifications

New cards
96

Favicons

        – icons displayed in the browser’s tab
        –  has attributes rel =“icon” (for relation) and type =“image/png”
        – goes between <head> . . . </head>

– not displayed in Trinket

New cards
97

href vs. src

href (hyper-reference) is like the src, but href is generally used for HTML elements, whereas src is for the non-HTML elements

New cards
98

Font Awesome

        – a collection of icons used by developers for free
        – the icons are recognizable worldwide

To use Font Awesome in your code, the Content Delivery Network (CDN) should be linked in the head and the <i> tag should be declared in the body.

New cards
99

Copyright

“legal protection extended to the owner of the rights in an original work.”

New cards
100

Creative commons

license created for content creators to allow as many people to see, use, and share their work as possible

New cards

Explore top notes

note Note
studied byStudied by 110 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 995 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 11 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 7 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 1 person
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 26 people
Updated ... ago
4.5 Stars(2)
note Note
studied byStudied by 45 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 16 people
Updated ... ago
5.0 Stars(1)

Explore top flashcards

flashcards Flashcard61 terms
studied byStudied by 2 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard39 terms
studied byStudied by 1 person
Updated ... ago
5.0 Stars(1)
flashcards Flashcard141 terms
studied byStudied by 3 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard96 terms
studied byStudied by 52 people
Updated ... ago
5.0 Stars(4)
flashcards Flashcard45 terms
studied byStudied by 14 people
Updated ... ago
5.0 Stars(2)
flashcards Flashcard238 terms
studied byStudied by 26 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard200 terms
studied byStudied by 17 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard62 terms
studied byStudied by 1 person
Updated ... ago
5.0 Stars(1)