1.3 Exchanging data

0.0(0)
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/82

encourage image

There's no tags or description

Looks like no tags are added yet.

Study Analytics
Name
Mastery
Learn
Test
Matching
Spaced

No study sessions yet.

83 Terms

1
New cards

Lossy Compression

Removes non essential data from a file leading to a noticeable decrease in accuracy of the data. Data lost is non-recoverable.

2
New cards

Lossless Compression

Retains all the data in the file by only storing the instructions needed to reconstruct the original file. No data is lost.

3
New cards

Flat file

a single table and a usually written out as "Entity1(Attribute1, Attribute2, Attribute3...)"

4
New cards

Relational database

Separate tables are made for each entity.

5
New cards

Primary key

Unique identifier.

6
New cards

Secondary key

Allows database to be searched through quickly.

7
New cards

Foreign key

Attribute that links two tables together.

8
New cards

Entity relationship modelling

One-to-one - Each entity can only be linked to one other entity.
One-to-many - One table can be associated with many other tables.
Many-to-many - One entity can be associated with many other entities and the other way around.

9
New cards

Normalisation

Optimally designing data tables by reducing data redundancy and repetition.

10
New cards

1NF

Table with no repeating attributes.

11
New cards

2NF

Data that repeats across multiple records is removed and put into a new table with appropriate relationships, no partial dependencies.

12
New cards

3NF

All attributes that are not the primary key are fully dependent on the primary key, key dependency.

13
New cards

Indexing

Used to look up and access data quickly.

14
New cards

Capturing Data

Before data is added to a database, it has to be captured or inputted by some means or another
This can either be done by manual methods or automatic methods such as OCR, MICR or barcode readers.

15
New cards

SELECT

Collect fields from a given table

16
New cards

FROM

Specifies which table the info will come from

17
New cards

WHERE

Specifies the search criteria

18
New cards

ORDER BY

SELECT MovieTitle, DatePublished
FROM Movie
WHERE DatePublished BETWEEN #01/01/2000# AND #31/12/2005#
ORDER BY DatePublished (ASC/DESC)

19
New cards

JOIN

Combines rows from multiple tables based on a common field.
SELECT Movie.MovieTitle, Director.DirectorName, Movie.MovieCompany
FROM Movie
JOIN Director
ON Movie.DirectorName = Director.DirectorName

20
New cards

CREATE

Make new database.
CREATE TABLE TableName
(
Attribute1 INTEGER NOT NULL, PRIMARY KEY,
Attribute2 VARCHAR(20) NOT NULL
)

21
New cards

ALTER

Add/delete/modify columns
ALTER TABLE TableName
ADD AttributeX and their dataTypes

ALTER TABLE TableName
DROP COLUMN AttributeX

ALTER TABLE TableName
MODIFY COLUMN AttributeX NewDataType

22
New cards

INSERT INTO

Insert a new record
INSERT INTO (column1, column2, ...)
VALUES (value1, value2, ...)

23
New cards

UPDATE

Update a record
UPDATE TableName
SET column1 = value1, column2 = value2
WHERE columnX = value

24
New cards

DELETE

Delete a record
DELETE FROM TableName
WHERE columnX = value

25
New cards

Referential Integrity

Ensuring consistency

26
New cards

ACID

ACID guarantees that transactions are processed.
Atomicity
Consistency
Isolation
Durability

27
New cards

Atomicity

All transactions will succeed or fail, never stop mid-way.

28
New cards

Consistency

Each transaction must obey defined validation rules of the database.

29
New cards

Isolation

No transaction should overwrite other transactions done by deciding the order of transactions and doing it in the correct order.

30
New cards

Durability

Once transaction has begun it must be completed!

31
New cards

Physical topology

Physical layout

32
New cards

Logical topology

Way in which data flows

33
New cards

Bus topology

All terminals (devices) are connected to a backbone cable
+
Cheaper to set up, doesn't require any additional hardware
-
If backbone cable fails, the entire network gets disconnected
As traffic increases, performance decreases
All computers can see the data transmission

<p>All terminals (devices) are connected to a backbone cable<br>+<br>Cheaper to set up, doesn't require any additional hardware<br>-<br>If backbone cable fails, the entire network gets disconnected<br>As traffic increases, performance decreases<br>All computers can see the data transmission</p>
34
New cards

Star Topology

Uses a central node (switch/computer) to direct the flow of data
+
Performance is consistent even if network is being heavily used
If one cable fails, only that station is affected
Transmits data faster, so it gives better performance than bus topology
It's easy to add new stations
No data collisions
-
Expensive due to switch and cabling
If the central switch fails, the rest of the network fails

<p>Uses a central node (switch/computer) to direct the flow of data<br>+<br>Performance is consistent even if network is being heavily used<br>If one cable fails, only that station is affected <br>Transmits data faster, so it gives better performance than bus topology <br>It's easy to add new stations <br>No data collisions<br>-<br>Expensive due to switch and cabling <br>If the central switch fails, the rest of the network fails</p>
35
New cards

Mesh Topology

Every node is connected to every other node
+
No cabling cost
As nodes increase, the reliability and speed of network becomes better
Nodes automatically get incorporated
It's faster since nodes don't go through a central switch
-
You have to purchase devices with wireless capabilities Maintaining the network is difficult

<p>Every node is connected to every other node<br>+<br>No cabling cost <br>As nodes increase, the reliability and speed of network becomes better <br>Nodes automatically get incorporated <br>It's faster since nodes don't go through a central switch<br>-<br>You have to purchase devices with wireless capabilities Maintaining the network is difficult</p>
36
New cards

Protocols

Rules defining how devices communicate with each other`

37
New cards

TCP/IP (Transmission Control Protocol) Stack

Stack of networking protocols that work together passing packets during communication.

<p>Stack of networking protocols that work together passing packets during communication.</p>
38
New cards

Application layer

Sending:
Specifies which protocol needs to be used in order to relate the application that's being sent.
Receiving:
Presents the data to the recipient in the form it was sent.

39
New cards

Transport layer

Sending:
Establishes an end to end connection between the source and recipient computer, splits the data into packets, labels them and requests retransmission of any lost packets.
Receiving:
Removes the port number and reassembles the packets.

40
New cards

Network layer

Sending:
Adds IP addresses
Receiving:
Removes the IP addresses

41
New cards

Link layer

Sending:
Connection between the network devices and adds the MAC address identifying the NIC of the source and destination computers.
Receiving:
Removes the MAC addresses.

42
New cards

LAN

Local area network spread over a small geographical area

43
New cards

WAN

Wide area network spread over a large geographical area that requires extra hardware.

44
New cards

DNS

Domain name system is the system given to the method of naming internet resources, they translate domain names into IP addresses when we access a website.

45
New cards

Circuit switching

A method of communication where a direct link is created between two devices
Link maintained for the entire conversation
The two devices must transfer and receive data at the same rate
+
Quicker reconstruction
No delay in speech
-
Bandwidth wasted
Must transfer and receive at the same rate
Can corrupt or lose data

46
New cards

Packet Switching

A method of communicating packets of data across a network
A packet is just a section of the data
Packets aren't limited to a single route
+
Multiple methods to ensure data arrives
Can transfer over very large networks
Can use any path
-
Time is spent deconstructing and reconstructing data packets

47
New cards

Data packets

Segments of data contain information:
○ Header
■ Sender and the recipient's IP addresses
■ Protocol being used
■ Order of the packets
■ Time To Live / Hop Limit
○ Payload
■ The raw data
○ Trailer
■ Checksum, or cyclic redundancy check

48
New cards

Firewalls

Prevent unauthorised access to a network by comparing packets against a set of rules set by the firewall software.

49
New cards

Proxy servers

● Act as an intermediary, collecting and sending the data on behalf of the user
● Protect the privacy of the user who remains anonymous
● Cache frequently used website data making it faster to load
● Reduce the web traffic
● Can be used by administrators to prevent access to sensitive or irrelevant information at work or at school

50
New cards

Encryption

Keep data secure

51
New cards

Network interface card (NIC)

Required to connect to a network and assigns a unique MAC address to each device.

52
New cards

Switches

Used to direct flow of data across the network most commonly used in a star topology.

53
New cards

Wireless access point (WAP)

Allow devices to connect to a network wirelessly, used in mesh networks.

54
New cards

Routers

Used to connect two or more networks together.

55
New cards

Gateways

Used when protocols aren't the same between networks and translates the protocols so that they are the same.

56
New cards

Client server

The server is a powerful central computer, the server holds all the important info and has extra processing power.
+
Secure
Central backups stop the need for client backups
Sharing data and resources
-
Expensive
Need trained staff to maintain

57
New cards

Peer to peer network

Computers are connected to each other so they can share files, cheap to set up, allows users to share resources, and easy to maintain.

58
New cards

Code written within these tags is interpreted as HTML.

<html>(CODE)</html>

59
New cards

Link a CSS file.

<link rel="stylesheet" href="(LOCATION)">

60
New cards

Define the heading area.

<head>(CODE)</head>

61
New cards

Set the name of the tab.

<title>(TITLE)</title>
Needs to be within the head tags

62
New cards

Define the body of the code.

<body>(CODE)</body>

63
New cards

Create a header.

<h(NUM)>(TEXT)</h(NUM)>

64
New cards

Create an image.

<img src="(URL)" alt="(TEXT)" width="(X)" height="(Y)">

65
New cards

Create a hyperlink.

<a href="(LOCATION)">(TEXT)</a>

66
New cards

Create a division of a page that can be referred uniquely by a name.

<div id="(NAME)">(CODE)</div>

67
New cards

Create a form.

<form>(CODE)</form>

68
New cards

Create a textbox/submit button.

<input type="(text/submit)" name="(NAME)">
Has to be within form tags

69
New cards

Create a paragraph.

<p>(TEXT)</p>

70
New cards

Create an ordered/unordered list.

<(ol/ul)><li>(TEXT)</li></(ol/ul)>

71
New cards

The tags used to write in javascript.

<(script)>(CODE)</(script)>

72
New cards

How to use CSS directly into an h1 element.

<h1 style="color:blue;">

73
New cards

How to edit a h1 tag in a css file.

h1{ color:blue; }

74
New cards

How to create a class.

.infoBox{ background-color: green; }

75
New cards

How to create an identifier

#menu{ background-color: #A2441B; }

76
New cards

Keywords for background color, border color, border style, border width, font family, font size, height, and width.

background-color
border-color
border-style
border-width
font-family
font-size
height
width

77
New cards

How to change the contents of a HTML element.

chosenElement = document.getElementById("example");
chosenElement.innerHTML = "Hello World";

78
New cards

How to write directly to the document.

document.write("Hello World");

79
New cards

How to use an alert box.

alert("Hello World");

80
New cards

Search engine

Program that searches through a database of the internet addresses. They rely on index of web pages, and web crawlers.

81
New cards

Page rank algorithm

Determines the page rank of how many incoming links it has from other web pages and the page rank of the web pages that link to it.

<p>Determines the page rank of how many incoming links it has from other web pages and the page rank of the web pages that link to it.</p>
82
New cards

Server side processing

Client sends data to a server for it to be processed. So that no info is processed on client side. Beneficial because it doesn't require plugins, can perform large calculations, not browser dependent, and its more secure.

83
New cards

Client side processing

Processing is done on the local device. Beneficial because webpage can immediately respond to user actions, execute quickly, gives devs more control over behaviour and look.