Lesson 3 -B Flashcards

1
Q

What is computer network?

A

A computer network consist of two or more computers connected together and sharing data.

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

what is OSI model?

A

teh OSI model is a standart for communication between computer

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

what is OSI stand for?

A

Open System Interconnect

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

what are the layers of the OSI Model?

A

Application (L7), eg: HTTP, HTTPS
6- Presentation , eg
5- Session , eg: creatting session between 2 machines
4 - Transport , eg: TCP , UDP
3- Network , eg: router, ipv4
2- Data link , eg: switches
1- Physical eg: ethernet cables

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

what is the difference between TCP and UDP?

A

UDP: (User Datagram Protocol) is a “non connection oriented”
protocol ex: video or audio playback
- Data transfer is faster
- UDP doesn’t check if all the packets reach their destination /
it does not resend missing packets.
- Packets are not ordered
TCP: (Transmission Control Protocol) is a “connection oriented”
protocol
- Data transfer takes more time
- Data get transferred completely, and missing packets are resend
- Packets are received in the same order as they are sent
- It has a 3 ways handshake check
* Synchronization: SYN,
* Synchronization Acknowledgement: SYN-ACK,
* Acknowledgement: ACK

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

What is an IP address?

A

it is a unique number assign to a device on a specific network.

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

Lab: What is the class of the IP address 192.168.1.45?

A

The first octet is 192. This number is in the range [192, 223]. Therefore the IP address 192.168.1.45 is from class C

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

What is a subnet mask?

A

it is a number that determine how many ip addresses we can have in the network.

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

what is protocol in Networking?

A

they are rules that govern how computers exchange data and enable effective communication.

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

convert 192.168.1.131 into bits

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

how many classes of ip addresses exist?

A

5 classes
A: 1-126
B: 128-191
C: 192-223
D: 224-239
E: 240-255

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

how many bits are in an ip address?

A

32

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

how many octets are in an ipv4 address?

A

4

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

what is the class of the IP address 10.0.0.3 with the subnet 255.255.0.0?

A

class B

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

What is the Class of the IP address 10.0.0.65 subnet 255.255.255.0?

A

C

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

what is the formular to calculate a subnet?

A

2^n-2
where n is the number of borrowed bits
- where - 2 ( Network address + Broadcast (the Gateway address)

17
Q

Let’s convert 192.168.0.1 in bits

A

192 ⇔ 1 1 0 0 0 0 0 0
168 ⇔ 1 0 1 0 1 0 0 0
0 ⇔ 0 0 0 0 0 0 0 0 and 1 ⇔ 0 0 0 0 0 0 0 1

18
Q

what is the difference betwwen an IP and a MAC Address?

A

MAC Address: It is the physical address of the NIC card assigned by the manufacturer, it can’t change.
IP Addrress: It is the logical address of the computer, it is assigned by the network administrator
it can change.