IS 450 Exam 1

studied byStudied by 181 people
4.0(1)
Get a hint
Hint

streaming applications vs. traditional web page delivery

1 / 92

encourage image

There's no tags or description

Looks like no one added any tags here yet for you.

93 Terms

1

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.

New cards
2

what characterizes real-time audio and video applications

tighter timing constraints than streaming applications

New cards
3

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

work, school, dial-up modem at home

New cards
4

network

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

New cards
5

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

New cards
6

characteristic of packet-switched networks

the nodes send discrete blocks of data to each other.

New cards
7

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

connectivity among a set of computers

New cards
8

what is multiplexing in network communication

a system resource is shared among multiple users

New cards
9

synchronous time-division multiplexing (STDM)

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

New cards
10

what distinguishes statistical multiplexing from STDM

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

New cards
11

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.

New cards
12

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.

New cards
13

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.

New cards
14

purpose of abstraction in system design

to manage complexity

New cards
15

what are the 2 interfaces defined by a protocol

  1. service

  2. peer

New cards
16

body (payload)

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

New cards
17

what is the fundamental idea of packet switching

to multiplex multiple flows of data over a single physical link

New cards
18

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

New cards
19

7 layer OSI model

  1. physical

  2. data link

  3. network

  4. transport

  5. session

  6. presentation

  7. application

New cards
20

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

transport

New cards
21

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

handles the transmission of raw bits over a communications link

New cards
22

message

the unit of data exchanged at the transport layer

New cards
23

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

presentation

New cards
24

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

session

New cards
25

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

enables web browsers to request pages from web servers

New cards
26

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

frame

New cards
27

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

New cards
28

what is the purpose of a protocol graph

the suite of protocols that make up a network system

New cards
29

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

New cards
30

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

it is processed in the opposite order

New cards
31

latency in terms of propagation

propagation = distance/speed of light

New cards
32

latency in terms of transmit

transmit = size/bandwidth

New cards
33

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

New cards
34

latency

propagation + transmit + queue

New cards
35

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.

New cards
36

what remains constant as bandwidth increases in high-speed networks

the speed of light

New cards
37

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

Gbps link is the same 100 ms as Mbps

New cards
38

latency

starts to dominate network design thinking as bandwidth increases

New cards
39

jitter

variation in latency experienced by packets in a network

New cards
40

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

receiver delays the frame, effectively smoothing out the jitter

New cards
41

how are links characterized

by the medium they use:

copper wire, twisted pair, coaxial cable, optical fiber

New cards
42

what is the main purpose of a network architecture

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

New cards
43

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

mmWave band

New cards
44

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

vary the amplitude of a single wavelength

New cards
45

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

PON (passive optical network)

New cards
46

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

New cards
47

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

nonreturn to zero (NRZ)

New cards
48

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.

New cards
49

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

New cards
50

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

New cards
51

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

Quadrature Amplitude Modulation (QAM)

New cards
52

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

bit rate is half the baud rate

New cards
53

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

80% efficiency

New cards
54

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.

New cards
55

which of the following protocols uses only sentinel characters for framing

byte-oriented protocol

New cards
56

what is the problem with using sentinel characters for framing

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

New cards
57

which protocol uses sentinels and character stuffing for framing

point-to-point protocol (PPP)

New cards
58

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

New cards
59

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

New cards
60

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

New cards
61

how are packets transmitted in the PPP frame format

starting at the leftmost field

New cards
62

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

New cards
63

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

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

New cards
64

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

acknowledgments (ACK) and timeouts

New cards
65

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

automatic repeat request (ARQ)

New cards
66

which ARQ algorithm is the simplest

stop-and-wait

New cards
67

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)

New cards
68

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.

New cards
69

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

New cards
70

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

New cards
71

what is the purpose of the preamble in an Ethernet frame

allows the receiver to synchronize with the signal

New cards
72

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

it’s long enough to detect a collision

New cards
73

how are Ethernet addresses typically represented

48-bit address

New cards
74

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

it could be deployed incrementally

New cards
75

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

New cards
76

frequency hopping

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

New cards
77

what does MIMO stand for in the context of wireless networks

multiple-input multiple-output

New cards
78

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.

New cards
79

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

direct sequence

New cards
80

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

New cards
81

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

wireless security

New cards
82

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

225

New cards
83

frequency hopping

spread spectrum technique Bluetooth uses to mitigate interference

New cards
84

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

New cards
85

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

connects access points (APs)

New cards
86

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

New cards
87

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

New cards
88

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

PON (passive optical network)

New cards
89

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

New cards
90

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

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

New cards
91

what is the main innovation of LTE’s air interface

the allocation of available radio spectrum to UEs

New cards
92

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

gateway between the access network and internet

New cards
93

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

2.25 Gbps

New cards

Explore top notes

note Note
studied byStudied by 14 people
Updated ... ago
5.0 Stars(2)
note Note
studied byStudied by 12 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 91 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 19 people
Updated ... ago
5.0 Stars(2)
note Note
studied byStudied by 10 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 47 people
Updated ... ago
5.0 Stars(2)
note Note
studied byStudied by 8 people
Updated ... ago
5.0 Stars(1)
note Note
studied byStudied by 6999 people
Updated ... ago
4.8 Stars(6)

Explore top flashcards

flashcards Flashcard50 terms
studied byStudied by 9 people
Updated ... ago
5.0 Stars(2)
flashcards Flashcard59 terms
studied byStudied by 7 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard84 terms
studied byStudied by 7 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard28 terms
studied byStudied by 8 people
Updated ... ago
5.0 Stars(2)
flashcards Flashcard269 terms
studied byStudied by 1 person
Updated ... ago
5.0 Stars(1)
flashcards Flashcard20 terms
studied byStudied by 45 people
Updated ... ago
5.0 Stars(3)
flashcards Flashcard68 terms
studied byStudied by 4 people
Updated ... ago
5.0 Stars(1)
flashcards Flashcard40 terms
studied byStudied by 12 people
Updated ... ago
5.0 Stars(1)