Topic Library

Filter by Focus
All Abnormal Psychology Acoustics Algebra Algorithms Analytical Chemistry Anatomy Anatomy APIs & Frameworks Artificial Intelligence Assembly Languages Assessment Assessment Astrophysics Basics of Computer Science Behavioral Psychology Big Data Biochemistry Biochemistry Biochemistry Bioinformatics Bioinformatics Botany Botany Business Intelligence Calculus Cardiac Cell Biology Cell Biology Classical Mechanics Clinical Psychology Cloud Computing Cloud Data Systems Coercive Social Influence Cognitive Psychology Community Health Compiled Languages Condensed Matter Data Analysis Data Engineering Data Governance Data Structures Data Visualization Databases Databases Developmental Biology Developmental Biology Developmental Psychology DevOps Diabetes Differential Equations Discrete Math Documentation Ecology Ecology Educational Psychology Electromagnetism Emotion & Motivation Endocrine Environmental Chemistry Ethics & Law Ethics & Law ETL & Pipelines Evolution Evolution Exploratory Data Analysis Fluid Dynamics Foundations of Data Science Functional Programming Fundamentals Fundamentals of Nursing Gastrointestinal Genetics Genetics Geometry Health Promotion Human Biology Human Biology Immunology Immunology Industrial Chemistry Inorganic Chemistry Interpreted Languages Leadership & Management Leadership & Management Linear Algebra Machine Learning Materials Chemistry Maternal & Newborn Maternal & Newborn Mathematical Logic Medical-Surgical Medical-Surgical Memory Mental Health Mental Health Microbiology Microbiology Models Molecular Biology Molecular Biology NCLEX NCLEX Readiness Neurological Neuropsychology Neuroscience Neuroscience Nuclear Chemistry Nuclear Physics Number Theory Nursing Process Nutrition Nutrition Object-Oriented Programming Operating Systems Optics Organic Chemistry Orthopedics Particle Physics Pathophysiology Pathophysiology Patient Safety Pediatrics Pediatrics Personality Psychology Pharmacology Pharmacology Physical Chemistry Physiology Physiology Probability Psychological Research Methods Psychopathology Quantum Mechanics Relativity Respiratory Scripting Languages Skills Social Psychology Software Engineering Statistical Mechanics Statistics Statistics Systems Biology Systems Biology Testing Theoretical Chemistry Therapeutic Approaches Thermodynamics Trigonometry Version Control Web Development Zoology Zoology

B

Binary
basics_of_computer_science Binary is the base-2 number system that uses only 0 and 1. Computers store and process data as bits, which combine into bytes and larger units. Understanding binary explains how numbers, text, images,...

F

Fundamentals Of Computing
memory basics_of_computer_science Computing turns information into action using layers of abstraction, from bits and logic up to software and networks. You write source code that becomes instructions a CPU can execute, using memory an...

G

Graph Cost
algorithms data_structures basics_of_computer_science Graph cost captures how we measure and optimize over weighted graphs, usually by minimizing or maximizing sums of edge weights. Core problems include building minimum spanning trees, finding shortest ...
Greedy Algorithm
algorithms data_structures basics_of_computer_science python A greedy algorithm builds a solution step by step by always taking the locally best option available. It is fast and simple, often relying on sorting or priority queues to repeatedly pick the next bes...

H

Hexadecimal
basics_of_computer_science Hexadecimal is a base-16 numeral system that uses digits 0–9 and letters A–F to represent values compactly. It maps cleanly to binary because one hex digit equals four bits, making it ideal for readin...

I

Introduction to Data Structures
data_structures algorithms basics_of_computer_science memory software_engineering Data structures are ways to organize data so operations like access, insert, delete, and search are efficient. The right structure can turn a slow program into a fast one by shaping how data is stored...

P

Pagerank
algorithms basics_of_computer_science PageRank is a link analysis algorithm that assigns importance scores to nodes in a directed graph using the random surfer model. It models a Markov chain where a surfer follows links with probability ...
Pseudocode
algorithms basics_of_computer_science Pseudocode is a language-agnostic way to describe algorithms and program logic using plain, structured steps. It removes syntax details so you can focus on thinking clearly about the procedure. Teams ...

S

Shortest Path Problem (SSP)
data_structures algorithms basics_of_computer_science Shortest path problems ask for the minimum-cost route between nodes in a graph. Cost can mean hops, time, distance, or any additive weight on edges. Different constraints call for different algorithms...

T

Token
basics_of_computer_science apis_&_frameworks A token is a small, meaningful unit used to represent information in computing. In code, lexers convert raw text into tokens that parsers can understand. In security and APIs, tokens carry identity an...