Networking Fundamentals: Protocols, Cables, and Communication
Common LAN Protocol Families
SNA, NetWare, AppleTalk, NetBEUI, and TCP/IP.
Network Architecture Definition
A layered body of network protocols enabling communication between nodes.
The OSI Model
A reference model for layered architecture in computer networks and distributed systems, proposed by ISO’s Open Systems Interconnection standard. It’s a reference, not a network architecture.
LLC Sublayer Role
Ensures error-free communication of frames built from network layer information.
Ohm’s Law and Signal Attenuation
All
Read MoreCryptography Essentials: Keys, Hashes, and Authentication
X.509 Certificate Format
An X.509 certificate is a digital certificate used to establish the identity of an entity, such as a person or a website, and ensure secure communication.
Key Components
- Version: Specifies the X.509 version (usually v3).
- Serial Number: A unique identifier for the certificate issued by the Certificate Authority (CA).
- Signature Algorithm: The algorithm used by the CA to sign the certificate (e.g., RSA or ECDSA).
- Issuer: The CA that issued the certificate (e.g., “CN=Example CA”).
Network Fundamentals Exam (Version 4.0)
Below is an assessment of issues related to the subject, as presented in the review and scoring rules. The use of information in the Exam Viewer is subject to the terms of the Cisco Networking Academy Acceptable Use Policy. The purpose of the Exam Viewer is to review training materials. This material must not be distributed outside of a proctored and controlled setting. Misuse may result in limited access to exam content. Please remember to log off and close your browser window after using the Exam
Read MoreSorting, Heaps, and Graph Algorithms
Merge sort:
#include <stdio.H>
#include <stdlib.H>
#include <string.H>
#define MAX 10000
Int noofcomparision = 0;
Void merge(int arr[], int l, int mid, int h) {
Int n1 = mid + 1 – l;
Int n2 = h – mid;
Int a[n1], b[n2];
For (int i = 0; i < n1; i++) {
A[i] = arr[i + l];
}
For (int i = 0; i < n2; i++) {
B[i] = arr[i + mid + 1];
}
Int i = 0, j = 0, k = l;
While (i < n1 && j < n2) {
Noofcomparision++;
if (a[i] <= b[j]) {
arr[k] = a[i];
Read More
Understanding Computer Fundamentals: Data, Devices, and Memory
Why People Prefer Computers
Computers work faster than humans, find information quickly, store data efficiently, and operate tirelessly.
Data Types
Numeric: Integer and real.
Text: String.
Graphics: Pictures.
Date
Sound
Input Devices
Concept Keyboards
A flat board with programmable keys, used in primary education.
Light Pen
A pen-shaped wand with light sensors to select objects on screen.
Touch Screen
A flat screen that detects touch using infrared lasers, commonly found in restaurants.
OMR (Optical Mark Recognition)
Read MoreDBMS Essentials: Organization, Integrity, and Access
Database Management Systems (DBMS)
A DBMS is a software suite designed to access and manage databases. A database is a structured collection of related data.
Challenges of File Management
- Data Redundancy and Inconsistency: Data duplication across various files and formats.
- Physical-Logical Data Dependency: Changes in data structure require program modifications.
- Difficulty in Data Access: Accessing data requires specific program code for each query.
Database Systems
A database is a large, organized store
Read More