T3 Business Informatics

0.0(0)
Studied by 0 people
call kaiCall Kai
learnLearn
examPractice Test
spaced repetitionSpaced Repetition
heart puzzleMatch
flashcardsFlashcards
GameKnowt Play
Card Sorting

1/11

encourage image

There's no tags or description

Looks like no tags are added yet.

Last updated 2:52 PM on 3/17/26
Name
Mastery
Learn
Test
Matching
Spaced
Call with Kai

No analytics yet

Send a link to your students to track their progress

12 Terms

1
New cards

The Network "Tourism" Analogy

  1. Data: The tourists traveling to a destination.

  2. Packets: Individual travelers (data is broken into small pieces).

  3. Server: The destination (hotel/resort).

  4. Router & Switch: The transport hubs (airports) and local transfer stations .

  5. Protocol: The visa rules and regulations for travel.

  6. Bandwidth & Latency: The number of passengers per hour vs. the total travel time

2
New cards

Core Benefits of Networking

  1. Communication & Data Transfer: Instant messaging and sending "suitcases" of files between locations .

  2. Load Balancing: Distributing requests across multiple servers to prevent "crowded airports" .

  3. Redundancy/Availability: If one server or route fails, tourists can take an alternative path to reach the service

3
New cards

LAN vs. WAN vs. GAN

  • LAN (Local): Small area like a home or office. Like moving through internal corridors of one hotel .

  • WAN (Wide): Connects LANs across cities/regions using rented lines or VPNs. Like traveling between cities using highways .

  • GAN (Global): Global scale (e.g., The Internet). Relies on undersea fiber optics and satellites. Like international flight networks

4
New cards

Coordination Models (Client-Server vs. P2P)

Client-Server: A central server provides services; a client requests them.

  • Analogy: Sending a booking request to a hotel's official address .

Peer-to-Peer (P2P): No central server; every node can both request and provide resources.

  • Analogy: Travelers exchanging information or services directly with each other .

5
New cards

Network Topologies (Physical Structures)

  • Star: All nodes connect to a central hub. If the hub fails, everything stops. (Like a central airport hub) .

  • Bus: All nodes share one common line. If the cable breaks, the whole network is affected. (Like hotels on one main road) .

  • Ring: Nodes form a closed loop; data travels in one direction. (Like a fixed circular bus tour) .

  • Mesh: Nodes connect to multiple others. Highly reliable with alternative routes. (The Internet is largely a mesh)

6
New cards

Transfer Media (Cables & Wireless)

  • Copper Cables: Twisted-pair (LANs) or Coaxial (TV). Reliable for short distances but limited capacity .

  • Fiber Optic: Uses light pulses. Extremely high speed, low loss, and used for global connections (WANs/GANs) .

  • Wireless: Uses radio waves (Wi-Fi). Flexible like a "taxi" or "charter flight" that doesn't need a fixed road

7
New cards

The OSI 7-Layer Model (The Marketing Analogy)

These models provide a set of "rules" (protocols) so that different types of computers (like a Mac, a Windows PC, and a Linux server) can talk to each other

Layers 7–5 (Upper): Focus on preparing data.

  • Layer 7 – Application: The "Interface." This is where you interact with the software (e.g., writing an email). Analogy: The marketing team creates the message.

  • Layer 6 – Presentation: The "Translator." It formats, encrypts, or compresses data so the receiver can understand it. Analogy: Designing and translating the message for different regions.

  • Layer 5 – Session: The "Manager." It starts, stops, and manages the conversation between two devices. Analogy: Coordinating the timing of when the campaign goes live

Layers 4–1 (Lower): Focus on moving data.

  • Layer 4 – Transport: The "Quality Control." It ensures data is delivered reliably and in the right order. Analogy: Ensuring campaign materials are securely transferred to the media platform.

  • Layer 3 – Network: The "Post Office." It decides the best physical path (routing) for the data to take. Analogy: Selecting the specific channels (Social Media, TV, Email).

  • Layer 2 – Data Link: The "Technical Check." It organizes data into "frames" and checks for physical errors. Analogy: Verifying the ad is technically correct before publishing.

  • Layer 1 – Physical: The "Hardware." The actual transmission of bits through cables, light, or radio waves. Analogy: The internet infrastructure delivering the ad

8
New cards

TCP/IP Model (The Internet Standard)

While OSI is theoretical, TCP/IP is the practical model used by the actual Internet. It condenses the OSI layers into four:

  1. Application Layer: (Combines OSI 5, 6, 7) Handles protocols like HTTP (web) and FTP (files).

  2. Transport Layer: (OSI 4) Guarantees the data is complete and in order.

  3. Internet Layer: (OSI 3) Uses IP Addresses to route data across different networks.

  4. Link Layer: (OSI 1, 2) Handles the physical connection to the local network

9
New cards

Internet, Intranet, and Extranet

Internet: Public; accessible to everyone.

Intranet: Private; for employees only.

Extranet: Restricted; for business partners, clients, and suppliers.

  • Note: All three use the same underlying internet technologies

10
New cards

How a Webpage is Retrieved

The process of getting a webpage onto your screen involves a "Request-Response" cycle between your computer (the client) and a remote computer (the server) .

  1. The URL: You enter a URL (Uniform Resource Locator) like www.google.com into your browser. This is the specific address for the resource you want.

  2. The Request: Your browser acts as a "Client" and sends a request over the network to a Web Server.

  3. The Response (Static vs. Dynamic):

    • Static Pages: These are like pre-printed brochures. The web server finds the fixed HTML file and sends it back to you immediately. Every user sees the exact same content.

    • Dynamic Pages: These are like custom-made reports. The web server asks an Application Server to build the page on the spot. The application server pulls fresh data from a database (like your personal bank balance or latest social media feed) to create a custom HTML file just for you.

  4. Display: The finished page is sent back to your browser, which "translates" the code into the visual website you see

11
New cards

Internet vs. World Wide Web (WWW)

It is a common mistake to think these are the same thing, but they are different :

  • The Internet: The physical "railway tracks"—the global infrastructure of cables and routers.

  • The WWW: One "train" that runs on those tracks. It uses HTTP and HTML to show you websites via a browser .

  • Other Services: Email and FTP (File Transfer Protocol) are different "trains" that also use the Internet but are not part of the Web


  1. HTML (HyperText Markup Language)

  • Definition: This is the standard language used to create the structure of a webpage.

  • Function: It uses "tags" to tell the browser what is a heading, what is a paragraph, and where to put a link or an image.

  • Analogy: If a website were a house, HTML would be the blueprint and the physical walls.

2. HTTP (HyperText Transfer Protocol)

  • Definition: The set of rules used for transmitting web pages over the internet.

  • Function: When you see http:// in a URL, it means your browser and the server are agreeing to use this specific "language" to exchange web data.

  • Analogy: If HTML is the "letter" inside the envelope, HTTP is the postal service rules that determine how that letter is addressed and delivered.

  1. Email

  • Function: It is an independent service from the World Wide Web, though we often access it through web browsers today. It relies on its own set of protocols (like SMTP or IMAP) to send and store messages.

4. FTP (File Transfer Protocol)

  • Definition: A specialized protocol used specifically for uploading and downloading files between a client and a server.

  • Function: While you can download files via HTTP, FTP is more efficient for moving very large files or managing folders on a remote server.

  • Analogy: If HTTP is like looking at a book in a library, FTP is like moving crates of books from one warehouse to another

12
New cards

Static vs. Dynamic Webpages

When you request a page from a Web Server, it can be delivered in two ways:

  • Static Pages: These are like printed brochures. The server just sends the exact same HTML file to every user.

  • Dynamic Pages: These are built "on the fly." An Application Server pulls fresh data from a database (like your specific bank balance or a Facebook feed) and creates a custom page just for you

Explore top notes

note
UNIT 3 APUSH
Updated 521d ago
0.0(0)
note
2.1 Population Distribution Notes
Updated 1174d ago
0.0(0)
note
Unit 1 notes LT 2: Lab Terms
Updated 1275d ago
0.0(0)
note
Operations Management
Updated 840d ago
0.0(0)
note
第一课 你周末有什么打算
Updated 1160d ago
0.0(0)
note
4.4-4.7 Presentation
Updated 109d ago
0.0(0)
note
UNIT 3 APUSH
Updated 521d ago
0.0(0)
note
2.1 Population Distribution Notes
Updated 1174d ago
0.0(0)
note
Unit 1 notes LT 2: Lab Terms
Updated 1275d ago
0.0(0)
note
Operations Management
Updated 840d ago
0.0(0)
note
第一课 你周末有什么打算
Updated 1160d ago
0.0(0)
note
4.4-4.7 Presentation
Updated 109d ago
0.0(0)

Explore top flashcards

flashcards
OS - teória
60
Updated 439d ago
0.0(0)
flashcards
7th Grade STAAR Vocabulary
56
Updated 351d ago
0.0(0)
flashcards
voc11
34
Updated 833d ago
0.0(0)
flashcards
Envol 5 - Unité 7
46
Updated 983d ago
0.0(0)
flashcards
BJU Physical Science Chapter 2
23
Updated 528d ago
0.0(0)
flashcards
Mandarin 3 Semester 1 Final
244
Updated 829d ago
0.0(0)
flashcards
OS - teória
60
Updated 439d ago
0.0(0)
flashcards
7th Grade STAAR Vocabulary
56
Updated 351d ago
0.0(0)
flashcards
voc11
34
Updated 833d ago
0.0(0)
flashcards
Envol 5 - Unité 7
46
Updated 983d ago
0.0(0)
flashcards
BJU Physical Science Chapter 2
23
Updated 528d ago
0.0(0)
flashcards
Mandarin 3 Semester 1 Final
244
Updated 829d ago
0.0(0)