IS 450 Exam 1

4.0(1)
studied byStudied by 195 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/92

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.

93 Terms

1
New cards

streaming applications vs. traditional web page delivery

humans consume audio and video streams in a continuous manner, and discontinuity. By contrast, a regular (nonstreaming) page can be delivered and read in bits and pieces.

2
New cards

what characterizes real-time audio and video applications

tighter timing constraints than streaming applications

3
New cards

during the initial years of internet access, how did most people obtain internet connectivity

work, school, dial-up modem at home

4
New cards

network

term used to describe physical links connecting two or more computers directly

5
New cards

what distinguishes multiple-access links from point-to-point links

the physical links of point-to-point are limited by a pair of nodes while multiple-access links can have more than a pair of nodes sharing a single link

6
New cards

characteristic of packet-switched networks

the nodes send discrete blocks of data to each other.

7
New cards

what is one of the most crucial functions that a network must provide

connectivity among a set of computers

8
New cards

what is multiplexing in network communication

a system resource is shared among multiple users

9
New cards

synchronous time-division multiplexing (STDM)

divides time into equal-sized quanta to share the physical link among multiple flows

10
New cards

what distinguishes statistical multiplexing from STDM

data are transmitted from each flow on demand rather than during a predetermined time slot

11
New cards

how does the concept of layering relate to logical process-to-process channels

implemented on top of a collection of physical host-to-host channels.

12
New cards

what happens when a switch receives packets faster than the shared link can accommodate

the switch is forced to buffer these packets in its memory. After an extended period of time, the switch will eventually run out of buffer space, and some packets will have to be dropped.

13
New cards

what functionality characterizes the request/reply channel used by file transfer and digital library applications

guarantees that every message sent by one side is received by the other side and that only one copy of each message is delivered.

14
New cards

purpose of abstraction in system design

to manage complexity

15
New cards

what are the 2 interfaces defined by a protocol

  1. service

  2. peer

16
New cards

body (payload)

the part of the message that contains the application’s data

17
New cards

what is the fundamental idea of packet switching

to multiplex multiple flows of data over a single physical link

18
New cards

what is the purpose of a demultiplexing key in a protocol’s header

determine which messages to pass up to RRP and which to pass up to MSP

19
New cards

7 layer OSI model

  1. physical

  2. data link

  3. network

  4. transport

  5. session

  6. presentation

  7. application

20
New cards

which layer of the OSI model implements process-to-process channels

transport

21
New cards

what is the primary function of the physical layer in the OSI model

handles the transmission of raw bits over a communications link

22
New cards

message

the unit of data exchanged at the transport layer

23
New cards

which layer of the OSI model manages the format of data exchanged between peers

presentation

24
New cards

which layer of the OSI model is responsible for tying together different transport streams in a single application

session

25
New cards

what is the purpose of the application layer in the OSI model?

enables web browsers to request pages from web servers

26
New cards

what is the fundamental unit of data exchanged at the data link layer

frame

27
New cards

what is the role of protocols in network communication

provides a communication service that higher-level objects (such as application processes, or perhaps higher-level protocols) use to exchange messages

28
New cards

what is the purpose of a protocol graph

the suite of protocols that make up a network system

29
New cards

how does the process of encapsulation work in a protocol graph

the process repeats on each level of the protocol graph;

HHP encapsulates RRP’s message by attaching a header of its own, then arrives to destination host

30
New cards

what happens when a message arrives at the destination host in terms of encapsulation

it is processed in the opposite order

31
New cards

latency in terms of propagation

propagation = distance/speed of light

32
New cards

latency in terms of transmit

transmit = size/bandwidth

33
New cards

latency in terms of queue delay

time packets are stored before forwarding them on an outbound link;

time taken for a signal to propagate from one end of a link to another

34
New cards

latency

propagation + transmit + queue

35
New cards

what does it mean when bits in the pipe are said to be “in flight”

if the receiver tells the sender to stop transmitting, it might receive up to one RTT × bandwidth's worth of data before the sender manages to respond.

36
New cards

what remains constant as bandwidth increases in high-speed networks

the speed of light

37
New cards

how does the RTT compare between 1-Gbps and a 1-Mbps network

Gbps link is the same 100 ms as Mbps

38
New cards

latency

starts to dominate network design thinking as bandwidth increases

39
New cards

jitter

variation in latency experienced by packets in a network

40
New cards

what is the purpose of storing frames in a buffer in the presence of jitter

receiver delays the frame, effectively smoothing out the jitter

41
New cards

how are links characterized

by the medium they use:

copper wire, twisted pair, coaxial cable, optical fiber

42
New cards

what is the main purpose of a network architecture

to provide a common abstraction of something as complex and diverse as a link.

43
New cards

what technology is likely to become an important part of the 5G mobile network

mmWave band

44
New cards

what is the role of modulation in the context of encoding binary data onto electromagnetic signals

vary the amplitude of a single wavelength

45
New cards

which technology is commonly used to connect homes and businesses over recently deployed fiber

PON (passive optical network)

46
New cards

what is the main task when turning nodes and links into usable building blocks

understand how to connect them in such a way that bits can be transmitted from one node to the other

47
New cards

which encoding scheme maps the data value 1 onto the high signal and 0 onto the low signal

nonreturn to zero (NRZ)

48
New cards

what problem is associated with long strings of consecutive 1s or 0s in NRZ encoding

several consecutive 1s means that the signal stays high on the link for an extended period of time; similarly, several consecutive 0s mean that the signal stays low for a long time;

  1. baseline wander: too many consecutive 1s or 0s cause this average to change, making it more difficult to detect a significant change in the signal.

  2. clock recovery: both the encoding and decoding processes are driven by a clock—every clock cycle, the sender transmits a bit and the receiver recovers a bit. If the receiver's clock is even slightly faster or slower than the sender's clock, then it does not correctly decode the signal.

49
New cards

how does NRZI address the issue of consecutive 1s in encoding

has the sender make a transition from the current signal to encode a 1 and stay at the current signal to encode a 0

50
New cards

what is the primary disadvantage of Manchester encoding

it doubles the rate at which signal transitions are made on the link, which means that the receiver has half the time to detect each pulse of the signal

51
New cards

which modulation scheme allows the encoding of 16 or even 64 different patterns during each clock interval

Quadrature Amplitude Modulation (QAM)

52
New cards

what is the relationship between bit rate and baud rate in Manchester encoding

bit rate is half the baud rate

53
New cards

what is the efficiency of the 4B/5B encoding

80% efficiency

54
New cards

how does 4B/5B encoding address the inefficiency of Manchester encoding

inserts extra bits into the bit stream so as to break up long sequences of 0s or 1s.

55
New cards

which of the following protocols uses only sentinel characters for framing

byte-oriented protocol

56
New cards

what is the problem with using sentinel characters for framing

one of the special characters might appear in the data portion of the frame

57
New cards

which protocol uses sentinels and character stuffing for framing

point-to-point protocol (PPP)

58
New cards

what action does the receiver take when it encounters five consecutive 1s during bit stuffing (HDLC protocol)

the receiver makes its decision based on the next bit it sees

if 0: receiver removes

if 1: error, whole frame discarded

59
New cards

how does the receiver determine the start and end of a frame in SONET

The first 2 bytes of the frame contain a special bit pattern

60
New cards

what is the purpose of scrambling the payload bytes in SONET

to ensure that there are plenty of transitions to allow the receiver to recover the sender's clock

61
New cards

how are packets transmitted in the PPP frame format

starting at the leftmost field

62
New cards

what action does the receiver take if the result of applying the error-detecting algorithm to the received message does not match the sender’s result

discarding the message of correcting it if possible

63
New cards

why is the term “checksum” sometimes used imprecisely in networking

it is used imprecisely to mean any form of error-detecting code, including CRCs

64
New cards

what combination of mechanisms is commonly used to achieve reliable delivery in networking

acknowledgments (ACK) and timeouts

65
New cards

what is the term for the general strategy of using acknowledgments and timeouts to implement reliable delivery

automatic repeat request (ARQ)

66
New cards

which ARQ algorithm is the simplest

stop-and-wait

67
New cards

what are the 3 roles that the sliding window algorithm can serve

  1. reliably deliver frames across an unreliable link

  2. to preserve the order in which frames are transmitted

  3. support flow control (keep the sender from overrunning the receiver)

68
New cards

what is the distinguishing feature of the ARPANET protocol compared to the sliding window protocol

it is able to keep the pipe full while still using the simple stop-and-wait algorithm.

69
New cards

what does the term “carrier sense” mean in the context of CSMA/CD

all the nodes can distinguish between an idle and a busy link

70
New cards

what does it mean for hosts in an Ethernet network to be in the same collision domain

they are all competing for access to the same link

71
New cards

what is the purpose of the preamble in an Ethernet frame

allows the receiver to synchronize with the signal

72
New cards

why must an Ethernet frame contain at least 46 bytes of data

it’s long enough to detect a collision

73
New cards

how are Ethernet addresses typically represented

48-bit address

74
New cards

why did the switch-based variant of the Ethernet succeed in replacing multi-access Ethernet

it could be deployed incrementally

75
New cards

why is media access control a central issue for wireless links

it is hard to control who receives your signal when you transmit over the air, issues of eavesdropping may also have to be addressed

76
New cards

frequency hopping

spread spectrum technique involving transmitting the signal over a random sequence of frequency

77
New cards

what does MIMO stand for in the context of wireless networks

multiple-input multiple-output

78
New cards

what is the purpose of spread spectrum techniques in wireless communication

deals with possible interference in the band. Provides a natural time slot for Bluetooth to use for synchronous time division multiplexing.

79
New cards

which spread spectrum technique adds redundancy to transmitted bits for greater tolerance of interference

direct sequence

80
New cards

what is the purpose of the RTS-CTS mechanism in the 802.11 networks

tells the nodes within range of the receiver that they should not send anything for a while

81
New cards

what is a commonly used mechanism for controlling access to wireless networks and transmitted data

wireless security

82
New cards

how many devices can be connected to a master device in a Bluetooth piconet

225

83
New cards

frequency hopping

spread spectrum technique Bluetooth uses to mitigate interference

84
New cards

role of the four addresses in the 802.11 frame format

  1. node sends probe frame

  2. APs reply with probe response frame

  3. node sends AP an association request frame

  4. AP replies with an association response frame

85
New cards

what is the purpose of the distribution system in an 802.11 network

connects access points (APs)

86
New cards

what happens if two nodes sent RTS frames at the same time in 802.11 networks

RTS frames collide. Nodes wait for a CTS frame, and if not received, they retry after a random delay

87
New cards

which standard is based on Bluetooth but excludes application protocols? It is designed for situations where low bandwidth and power consumption are crucial

IEEE 801.15.1

88
New cards

what is the primary technology used for fiber-based broadband delivery to homes and businesses

PON (passive optical network)

89
New cards

how is upstream traffic managed in a PON network

it is time-division multiplexed on the upstream wavelength, with each ONU periodically getting a turn to transmit

90
New cards

what is the primary difference between 4G and 5G regarding waveforms

5G defines a family of waveforms while 4G defines only one

91
New cards

what is the main innovation of LTE’s air interface

the allocation of available radio spectrum to UEs

92
New cards

what is the primary purpose of the Broadband Network Gateway (BNG) in a PON network

gateway between the access network and internet

93
New cards

what is the current bandwidth supported by G-PON (Gigabit-PON)

2.25 Gbps