basic network info Flashcards

pages 1 - 36

1
Q

what is a dedicated server

A

a server that performs one funtion

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

what is a peer to peer network

A

a network where all computers can share resources eg drive sharing

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

what does LAN stand for & what does it do

A

Local Area network - a network that is in the same office or building

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

what does Wan stand for & what does it do

A

same as LAN but in a large geographic area normally used to connect two offices

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

what operates on level 1 and 2 the osi model

A

Ethernet

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

What is a node

A

a device connected to the network

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

what is a star topology

A

all notes are connected via a switch in the middle

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

what layer does a hub work on

A

1

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

what layer does a switch work on

A

2 as it uses mac addresses to allow to route the packets

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

what is a mesh network

A

a network where multiple switches are connected to allow for redentecy

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

what is the max transmit length of a twisted pair cable with out a repeater

A

100 meters

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

what does NIC stand for

A

Network Interface Card

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

what are mac addresses used for

A

used to keep track of devices on a network for routing perpouses

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

What Layer are Mac addresses on

A

2

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

what happens on level 2 of the OSI model

A

exchange of basic information most importantly the ability every device on a network using mac address

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

how many bits are mac adresses

A

48

17
Q

how many bits in a mac address octet

A

8

18
Q

what command prompt is used to see basic network information

A

ipconfig /all

19
Q

where does a network packet originate from

A

sender

20
Q

what does a packet contain

A

Mac Address of sender and receiver, header information and the payload

21
Q

what is a preamble

A

the first 56 bits of binary to synchronize to sycrosise clocks

22
Q

what is a frame

A

the data after the preamble in a packet

23
Q

what is the standard packet format for Ethernet

A

Preamble 56 bits
start of frame marker 1 bit
Destination Mac address six bytes
Sender Mac Address six bytes
Ethertyoe 2 bytes
payload between 46 to 1500 bytes
Frame check sequence 4 bytes

24
Q

in a packet what is a ethertype

A

2 bytes that specify the protocol in a payload

25
Q

in a packet what is a frame check sequence

A

four bytes at the end of a packet to ensure the data was sent correctly

26
Q

what do hubs do to reserved packets

A

only amplify and send to all ports

27
Q

what is a colison in terms of sending packets over ethernet

A

2 packets getting sent on the same line causing both packets to be destroyed

28
Q

what is a broadcast packet

A

a packet that is suppose to be sent to all nodes on a network

29
Q

what is the most common use for a broadcast packet

A

DHCP

30
Q

what does DHCP stand for

A

Dynamic Host Configuration Protocol

31
Q

what could be used between these two

if
else

A

elif

32
Q

def addition(num1,num2)

A

perimeters

33
Q

how would you hand numbers to to this funtion

def addition(num1,num2)

A

x= addition(1,2)

34
Q

do the values for entering data into a functions parameters need to be in the same order as the def

A

yes

35
Q

whats the diffrence between appended and write

A

write will clear all data where as append will add

36
Q

what would go into between the blank ‘’ to write to this file

savefile = Open(‘exaplefile.txt’,’’)

A

w

37
Q

what is the funtion Open used for

A

read write or appened

38
Q
A