extra Flashcards

1
Q

What are the key components of networking?

A

Protocols (e.g., TCP/IP), Hardware (e.g., routers, switches), and Transmission Media (e.g., Ethernet cables, optical fibers).

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

What is the difference between LAN and WAN?

A

• LAN: Local Area Network; small scale (e.g., office), uses Ethernet.
• WAN: Wide Area Network; large scale (e.g., Internet), connects multiple LANs.

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

Name the 7 layers of the OSI model.

A
  1. Physical
  2. Data Link
  3. Network
  4. Transport
  5. Session
  6. Presentation
  7. Application
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What are the layers of the TCP/IP model?

A
  1. Application
  2. Transport
  3. Internet
  4. Network Interface
  5. Hardware
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Define bit rate and latency.

A

• Bit Rate: The speed at which data is transmitted, measured in bits per second.
• Latency: The time it takes for a bit to reach its destination.

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

What are FTP and SMB used for?

A

• FTP: File Transfer Protocol for transferring files.
• SMB: Server Message Block for file and printer sharing.

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

What is the range of Class A IP addresses?

A

1.0.0.0 to 126.0.0.0.

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

What is the purpose of a subnet mask?

A

It separates the network and host portions of an IP address.

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

What does DNS do?

A

Resolves domain names (e.g., www.google.com) to IP addresses.

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

What are the steps in a TCP three-way handshake?

A
  1. SYN (Client to Server)
  2. SYN-ACK (Server to Client)
  3. ACK (Client to Server)
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What are the key features of UDP?

A

• Connectionless
• No error recovery
• Low overhead
• Best-effort delivery

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

What does ARP do?

A

Resolves IP addresses to MAC addresses within a local network.

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

What is IPSec used for?

A

To provide secure communication through authentication and encryption.

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

What is the key difference between the OSI and TCP/IP models?

A

• OSI Model: 7 layers, includes Presentation and Session layers.
• TCP/IP Model: 5 layers, combines Presentation and Session layers into the Application layer.

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

What is multicast communication?

A

Messages sent to a specific group of recipients who have joined a multicast group.

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

What does the ping command do?

A

Sends ICMP Echo Request packets to test connectivity and measures round-trip time.

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

What features make TCP reliable?

A

• Connection-oriented
• Error recovery with ACKs
• Sequencing for ordered delivery
• Sliding window for flow control.

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

Name three types of modulation.

A
  1. Amplitude Modulation (AM)
  2. Frequency Modulation (FM)
  3. Phase Shift Modulation (PSM).
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
19
Q

What is a packet sniffer? Name one example.

A

A tool to monitor and debug network traffic. Example: Wireshark.

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

Why was IPv6 developed, and what is its structure?

A

Developed due to IPv4 exhaustion; it uses 128-bit addresses, written in hexadecimal (e.g., 3A57:0000:9CD5:3412:912D:6738:1928).

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

What is the main responsibility of the Physical Layer in the OSI model?

A

Handles raw data transmission over physical media such as cables and wireless signals.

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

Which OSI layers map to the TCP/IP Application Layer?

A

The Application, Presentation, and Session layers of the OSI model.

23
Q

How is a MAC address structured?

A

A 48-bit address, usually displayed in hexadecimal, divided into six groups separated by colons (e.g., 00:1A:2B:3C:4D:5E).

24
Q

Why is subnetting useful in networks?

A

It improves network efficiency by segmenting traffic and reducing congestion.

25
Q

What is the function of a default gateway?

A

It routes packets from a local network to external networks, such as the Internet.

26
Q

What are the five steps in the TCP/IP data transmission process?

A
  1. Application layer encodes the user request.
  2. Transport layer segments data and adds port numbers.
  3. Internet layer appends IP addresses.
  4. Network Interface layer resolves MAC addresses.
  5. Hardware transmits the data as signals.
27
Q

What is the primary purpose of ICMP?

A

To report network errors and diagnose issues, such as unreachable destinations or timeouts.

28
Q

What is the typical speed of Fast Ethernet?

29
Q

What does NAT do?

A

It maps private IP addresses to a single public IP address for Internet access.

30
Q

How does the traceroute command work?

A

It tracks the path packets take to reach a destination by incrementing the TTL value and recording each router’s response.

31
Q

What is a VLAN?

A

A Virtual Local Area Network that segments a physical network into multiple logical networks.

32
Q

What standard is used for high-speed WLANs?

A

IEEE 802.11ac.

33
Q

Name two commonly used cryptographic protocols for secure communication.

A

TLS (Transport Layer Security) and IPSec.

34
Q

What is the difference between a hub and a switch?

A

• Hub: Broadcasts data to all devices.
• Switch: Forwards data to specific devices based on MAC addresses.

35
Q

What is DHCP used for?

A

Dynamic Host Configuration Protocol automatically assigns IP addresses to devices on a network.

36
Q

What is packet switching?

A

A method where data is broken into packets and transmitted over a network independently.

37
Q

What does CSMA/CD stand for, and what does it do?

A

Carrier Sense Multiple Access with Collision Detection; it helps manage data transmission in Ethernet networks to avoid collisions.

38
Q

What is a key difference between IPv4 and IPv6?

A

IPv4 uses 32-bit addresses, while IPv6 uses 128-bit addresses for a larger address space.

39
Q

What is a star topology?

A

A network design where all devices connect to a central hub or switch.

40
Q

What is a VPN, and how does it work?

A

A Virtual Private Network securely connects devices over the Internet using encryption and tunneling protocols.

41
Q

What does the Transport Layer in the OSI model ensure?

A

It provides reliable data transfer through mechanisms like segmentation, acknowledgment, and flow control.

42
Q

What is the difference between bandwidth and throughput?

A

• Bandwidth: Maximum data transfer capacity of a network.
• Throughput: Actual amount of data successfully transferred.

43
Q

What is the primary function of a firewall?

A

To monitor and control incoming and outgoing network traffic based on security rules.

44
Q

What is encapsulation?

A

The process of wrapping data with protocol-specific headers and trailers as it moves through layers.

45
Q

What is the main feature of a link-state routing protocol?

A

Each router maintains a complete map of the network topology to calculate the shortest path.

46
Q

How does a Token Ring Network operate?

A

A token circulates around the network, granting permission to transmit data.

47
Q

What is the purpose of an ICMP Echo Reply?

A

To respond to an ICMP Echo Request, indicating connectivity and round-trip time.

48
Q

Name two common types of DNS records.

A
  1. A Record: Maps domain names to IPv4 addresses.
  2. MX Record: Specifies mail servers for email delivery.
49
Q

What does QoS achieve in networking?

A

It prioritizes certain types of network traffic to ensure performance for critical applications.

50
Q

What is a broadcast domain?

A

A network segment where all devices receive broadcast frames sent by any device.

51
Q

What is the difference between static and dynamic IP addressing?

A

• Static IP: Manually assigned, does not change.
• Dynamic IP: Automatically assigned by DHCP and may change over time.

52
Q

What is the purpose of the TTL field in an IP packet?

A

It limits the lifespan of a packet by decrementing at each hop to prevent infinite loops.

53
Q

What is the role of a proxy server?

A

It acts as an intermediary between clients and servers, providing caching, filtering, and anonymity.