CIS-3230 Exam 1

0.0(0)
studied byStudied by 0 people
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
Card Sorting

1/65

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.

66 Terms

1
New cards

open systems interconnection reference model (OSI Model)

Referred to as the network model. European networks use this model but did not catch on in North America. Most networks today use the Internet Model. This model has 7 layers: (7)Application, (6)Presentation, (5)Session, (4)Transport, (3)Network, (2)Data Link, (1)Physical. ALL PEOPLE SEEM TO NEED DATA PROCESSING.

2
New cards

osi physical layer

Primarily concerned with transmitting data bits over a communication circuit. Defines the rules for how ones and zeros are transmitted like voltages of electricity, number of bits sent per second, and the cables and connectors used. Uses network cable connecting computer to the rest of the network.

3
New cards

osi data link layer

Manages the physical transmission circuit and transforms it into a circuit that is free of transmission errors as far as layers above are concerned. This layer must create and recognize message boundaries, that is, it must mark where a message starts and ends. As well as solve problems caused by damage, lost, or duplicate messages so that the next layers are shielded from transmission errors (error detection and correction). Handles when a device can transmit so two computers do not try at once. Uses Ethernet.

4
New cards

osi network layer

Performs routing. Determines the next computer to which the message should be sent and follows the best rout through the network and finds the full address for that computer if needed. Uses IP.

5
New cards

osi transport layer

Deals with end-to-end issues like entering and departing from the network. It establishes, maintains, and terminates logical connections for the transfer of data between original sender and the final destination of the message. It also breaks a large data transmission into smaller packets, ensures all packets sent, eliminates duplicate packets and controls flow control. Can also perform error checking. Uses TCP.

6
New cards

local area network (LAN)

A group of computers located in the same general area. It covers a defined small area like a floor, a building or a group of buildings. It supports high-speed data transmission; commonly operating 100 million bits per second (100 Mbps).

7
New cards

backbone network (BN)

Most LANs are connected to this. It is a larger central network; that connects several LANs, other BNs, MANs, and WANs. It typically spans from hundreds of feet to several miles ad provides very high-speed data transmission commonly 100-1,000 Mbps.

8
New cards

wide area network (WAN)

This connects BNs and MANs. Most organizations do not build these on their own. Organizations usually lease circuits from IXCs (AT&T, Sprint) and use that to transmit data. Circuits for this come in all types and sizes, typically it is hundreds or thousands of miles. Data transmission rates from 64 Kbps to 10 Gbps.

9
New cards

intranet

a LAN that uses the same technologies as the internet (Java, HTML) but is open to only those inside the organization.

10
New cards

extranet

a LAN that uses the same technologies as the internet (Java, HTML) but is provided to invited users outside the organization.

11
New cards

osi session layer

Responsible for managing and structuring all sessions. Must arrange for all desired and required services between session participants like logging on to circuit equipment, transferring files, and performing security checks. Session termination or abort a session prematurely. Session accounting to send bill to correct party.

12
New cards

osi presentation layer

Formats the data for presentation to the user. Accommodates to different interfaces on different computers to the application program can run. Like displaying, formatting, and editing user inputs and outputs.

13
New cards

osi application layer

End user's access to the network. Primary purpose is to provide a set of tools for application programs. Network monitoring and network management. Uses HTTP.

14
New cards

server

Stores data or software that can be accessed by the clients. Several servers may work together over the network with a client.

15
New cards

client

The input and output hardware device at the user's end of a communication circuit.

16
New cards

circuit

The pathway through which messages travel; typically copper wire but now fiber-optic cable and wireless transmission are becoming common.

17
New cards

components of a network

a server, client and a circuit.

18
New cards

peer-to-peer network (P2P)

A set of similar computers that share their data and software with each other.

19
New cards

file server

Stores data and software that can be used by computers on the network.

20
New cards

web server

Stores documents and graphics that can be accessed from any web browser, such as Firefox. Can respond to requests from computers on the network.

21
New cards

mail server

Handles and delivers email over the network.

22
New cards

internet model

A five-layer network model most commonly used: (5)Application, (4)Transport, (3)Network, (2) Data Link, (1) Physical. Has never been formally defined.

23
New cards

protocol

Each layer uses formal language. Simply a set of rules that define what the layer will do and that provides a clearly defined set of messages that software at the layer needs to understand. All layers expect physical create a Protocol Data Unit (PDU).

24
New cards

protocol data unit (PDU)

Contains information that is needed to transmit the message through the network.

25
New cards

standards

Necessary in almost every business and public service entity. Ensures that hardware and software produced by different vendors can work together. Allows customers to buy hardware and software from any vendor as long has it meets standards.

26
New cards

international organization for standardization (ISO)

One of the most important standards-making bodies is this organization. Based in Geneva, Switzerland.

27
New cards

application architecture

The way in which the functions of the application layer software are spread among the clients and servers in the network.

28
New cards

application program

Can be divided into four general functions. Data storage, data access logic, application logic, and presentation logic.

29
New cards

host-based architecture

The server/host computer performs virtually all the work.

30
New cards

client-based architecture

The client computers perform most of the work.

31
New cards

client-server architecture

The work is shared between the servers and clients.

32
New cards

peer-to-peer architecture

Computers are both clients and servers and thus share the work.

33
New cards

thin-client

This approach places little or no application logic on the client.

34
New cards

thick-client

This approach places all or almost all of the application logic on the client.

35
New cards

Software as a Service (SaaS)

An organization outsources the entire application to the cloud provider. Based on multitenancy (no copies of same application, one shared). Email (Gmail) is an example.

36
New cards

Platform as a Service (PaaS)

Originally made application as well as your own data on the cloud infrastructure provided by your cloud supplier. Needed software and hardware infrastructure is called the platform and rented from cloud provider. Offers a much faster development.

37
New cards

Infrastructure as a Service (IaaS)

Cloud provider manages hardware, including servers, storage, and networking components. Sometimes referred to as HaaS or Hardware as a Service because only the hardware is provided.

38
New cards

hyper text transfer protocol (HTTP)

The way data is transferred to an external site through a server. Web browser issues a special packet called HTTP request that contains the URL. When server receives the HTTP request it processes and sends back an HTTP response.

39
New cards

HTTP request

request line: starts with command, request header: contains a variety of optional info like web browser, request body: contains info sent to the server like info user typed.

40
New cards

HTTP response

response status: contains HTTP version number (404 means not found), response header: contains variety of optional info like web server or URL, response body: is the web page itself.

41
New cards

telnet

Enables users to log in to servers (or other clients). Requires an application layer program on the client computer and an application layer program on the server or host computer. Once connection is established you must use the account name and password of an authorized user to log in.

42
New cards

logical circuit

Used to connect two devices, which refers to the transmission characteristics of the connection.

43
New cards

modem

A device at the sender's computer translates the computer's digital data into analog data that can be transmitted through the voice communication circuits.

44
New cards

codec

A device that translates analog voice data into digital form for transmission over digital computer circuits.

45
New cards

simplex transmission

One-way transmission, such as that with radios and TVs.

46
New cards

half-duplex transmission

Two-way transmission, but you can transmit in only one direction at a time.

47
New cards

full-duplex transmission

You can transmit in both directions simultaneously, with no turnaround time.

48
New cards

multiplexing

To break one high-speed physical communication circuit into several lower-speed logical circuits so that many different devices can simultaneously use it but still "think" that they have their own separate circuits.

49
New cards

twisted pair cable

The most commonly used kind of networking cable today. Insulated pairs of wires that can be packed close together.

50
New cards

coaxial cable

Has a copper core with an outer cylindrical shell for insulation. Less prone to interference and errors than twisted pair wires. Cost 3x more.

51
New cards

fiber-optic cable

Uses a very thin glass or plastic fiber. Transmissions are pulses of light.

52
New cards

radio transmission

Uses radio-wave frequencies to send data directly between transmitters and receivers.

53
New cards

microwave transmission

A form of point-to-point wireless transmission over unbounded media in which signals are sent via pulses of electromagnetic energy in the
microwave region of the spectrum.

54
New cards

satellite transmission

A wireless transmission system that uses satellites for broadcast communications.

55
New cards

parallel transmission

Internal transfer of binary data takes place inside a computer.

56
New cards

serial transmission

A stream of data is sent over a communication circuit sequentially in a bit-by-bit fashion.

57
New cards

digital transmission

Transmission of binary electrical or light pulses in that it only has two possible states, 1 or 0.

58
New cards

analog transmission

Occurs when the signal sent over the transmission media continuously varies from one state to another in a wave-like pattern much like the human voice

59
New cards

amplitude

Height of a wave measured in decibels (dB).

60
New cards

frequency

Length of a wave measured in hertz (Hz).

61
New cards

phase

The direction in which a wave begins measured in degrees.

62
New cards

modulation

A technical term referred to as shape changes.

63
New cards

basic modulation

The height of the wave changed.

64
New cards

frequency modulation

A change in the frequency of a carrier wave.

65
New cards

phase modulation

Changing the direction in which a wave starts to signal a 0 or a 1.

66
New cards

bandwidth

The difference between the highest and lowest point of a signal.