1.3 Networks Flashcards

(26 cards)

1
Q

what is data integrity?

A

The maintenance and consistency of data in a data store. The data store must reflect the reality that it represents.

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

what is referential integrity?

A

Referential integrity refers to the accuracy and consistency of data within a relationship in a relational data base.

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

What is atomicity?

A

It is one of the set rules to ensure data integrity by making sure A Change to a database is either completely performed or not at all. A half-completed change must not be saved back to the database.

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

what is consistancy?

A

It is one of the set rules to ensure data integrity by making sure Any change in the database must retain the overall state of the database

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

what is isolation?

A

It is one of the set rules to ensure data integrity by making sure A transaction must not be interrupted by another transaction must occur in isolation so other user or processes cannot access the data concerned.

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

What is record locking?

A

It is a method of keeping a transaction to a database uninterrupted by locking the record(s) that are currently being affected by a transaction. Once the transaction is fully complete, the record can be editted by another.

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

What is Durability?

A

It is one of the set rules to ensure data integrity by making sure Once a change has been made to a database, it must not be lost due to a system failure. (by storing the database in a secondary or a non-volitile storage option)

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

what is transaction processing?

A

Any information processing that is divided into individual, indivisible operations called transactions.

Each one has to succeed or fail as a complete unit - never partially completed.

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

What does the TCP(Transmission Control Protocol) protocol do?

A

The TCP protocol provides error-free transmission between two routers.

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

What does the IP(Internet Protocol) protocol do?

A

The internet Protocol routes packets across a wide area network.

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

what does UDP (User Datagram Protocol) do?

A

It is an alternative to TCP but has no error checking, it is used to send short messages using datagrams, where speed is more important than accuracy.

Has an open two way connection making it ideal for online gaming.

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

What does HTTP(Hypertext Transfer Protocol) and HTTPS (Secure) do?

A

It is a way for a client and server to send and recieve requests and deliver HTML web pages.

HTTPS is the same but it has encryption and authentication, used in websites that have sensitive information like passwords.

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

What does FTP (File Transfer Protocol) do?

A

It is a protocol used for sending files between computers, normally on a wide area network.

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

What does SMTP (Simple Mail Transfer Protocol) do?

A

It transfers outgoing emails between servers and from email clients to servers.

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

What does POP (Post Office Protocol) do?

A

It retrieves emails from a mail server and transfers them to your device, removing them from the server in the process.

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

What does IMAP (Internet Message Access Protocol) do?

A

It keeps emails on the mail server, maintaining synchronicity between devices.

17
Q

What are the 4 layers of the TCP stack?

A

Application
Transport
Internet
Link

18
Q

What does the Application layer do?

A

Network Applications such as web browsers or email programs operate at this layer.

19
Q

What protocols are present in the Application Layer?

A

FTP, HTTP, HTTPS, SMTP, IMAP

20
Q

What does the Transport layer do in the TCP Stack?

A

Sets up communication between two hosts - they agree settings such as language and packet size.

21
Q

What protocols are present in the Transport Layer?

22
Q

What does the internet layer do in the TCP stack?

A

Addresses and packages data for transmission. Routes packets across the network.

23
Q

What protocols are in the internet layer of the TCP stack?

24
Q

What does the Link Layer do in the TCP Stack?

A

Network hardware and connection port standards. Operating system device drivers also sit here. Facilitates the transmission of binary via any media.

25
What are the 8 steps where a website is searched for using URLs, IP addresses and Web servers?
1. A website is hosted on a webserver 2. Website/webserver has an IP address 3. Browser sends URL to DNS. 4. URL has an IP address linked to it. 5. If DNS cannot find the IP address then it passes requrest to higher DNS and returns an error if it cannot be found. 6. IP address is sent back to the browser/computer. 7. Browser sends request to IP/web server. 8. Webserver process request for website and web page/ file is sent to the user.
26
How does a DNS (Domian Name System) work?
1.DNS is used to resolve IP corresponding to URL 2. Request sent to DNS server 3. Resolver checks its cache and if it doesn't hold the URL, it passes it in to the TLD Name server which checks its cache and returns the answer. 4. The IP address is returned back up to the requesting client. 5. Or an error if no IP for URL is found.