TPT
Total:
$0.00

Percent Increase and Decrease Quiz - Page 5

180+ results
Filters
Standard
Preview of Binary Expression Tree Complete Lesson| Operations, Diagrams & Examples included

Binary Expression Tree Complete Lesson| Operations, Diagrams & Examples included

This lesson shows students how mathematical expressions are represented, evaluated, and traversed using trees, turning abstract expressions into working data structures with a complete C++ implementation. Learners see how operands and operators form a binary tree, how expressions are constructed from postfix notation using stacks, and how different traversals produce prefix, infix, and postfix expressionsβ€”exactly how compilers and calculators work internally. ────────── β‹†β‹…β˜†β‹…β‹† ──────────
Preview of Complete Lesson on Linux System, C Programming, Processes & System Internals

Complete Lesson on Linux System, C Programming, Processes & System Internals

This is a complete introductory lesson on Linux System Programming. Perfect for Computer Science, Linux Administration, Programming, Operating Systems, C Programming, DevOps fundamentals, and technical training programs across high school, college, university, and professional settings. The lesson includes easy-to-follow explanations, command demonstrations, configuration steps, system utilities, hands-on examples, and a practical assignment, making it fully ready for direct classroom use. ──
Preview of AP Business with Personal Finance Lesson 4.3 Strategy and Decision Making

AP Business with Personal Finance Lesson 4.3 Strategy and Decision Making

Strategy + PACED Decision Model β€” a complete AP Business lesson packet for Unit 4, Topic 4.3. PACED 5-step, ROI, REAL Spotify case study, slides, MCQs, PACED Mini-FRQ, all keys. What This Topic Solves Teaching Topic 4.3 in a brand-new AP course shouldn't mean building from scratch. This packet hands you everything you need for the 5-day arc β€” a branded slide deck, vocab-targeted guided notes with answer key, a real-feeling case study with full Teacher Key, an AP-style MCQ practice set, a Min
Preview of Heap Data Structure Complete Lesson | Operations, Diagrams & Examples included

Heap Data Structure Complete Lesson | Operations, Diagrams & Examples included

This lesson teaches students how priority-based data structures work internally by breaking down the Heap data structure from concept to full C++ implementation. Learners see how heaps maintain order efficiently, why they are stored as arrays, and how insertion and deletion automatically preserve the heap propertyβ€”the same logic used behind priority queues and scheduling systems. ────────── β‹†β‹…β˜†β‹…β‹† ────────── 🧠 What Students Will Actually Master ✨✨ ✏️ What a Heap is and why it’s used ✏️
Preview of Database Security and Access Control Full Lesson | Database Management System

Database Security and Access Control Full Lesson | Database Management System

This is a Complete lesson on Database Security and Access Control, covering authentication, authorization, access control, encryption, auditing, and real-world security risks. Ideal for Computer Science, ICT, IT Fundamentals, Database Systems, and AP CS–aligned courses. Designed to help students understand HOW databases protect sensitive data from unauthorized access, using real MySQL commands, security scenarios, and industry-aligned best practices. ────────── β‹†β‹…β˜†β‹…β‹† ────────── What’s In
Preview of Queue Complete Lesson | Operations, Diagrams & Examples Included

Queue Complete Lesson | Operations, Diagrams & Examples Included

This lesson gives students a clear, practical understanding of the Queue data structure, showing how FIFO systems work, how queues are implemented, and where they are used in real computing systems. Learners see queues as both a concept and a working C++ implementation, removing confusion around insertion/removal rules, memory limits, and design choices. ────────── β‹†β‹…β˜†β‹…β‹† ────────── 🧠 What Students Will Actually Master ✨✨ ️✏️ What a Queue is and why it exists ✏️ The FIFO (First In, Fir
Preview of SQL Constraints and Indexing Complete Lesson  | Database Management System

SQL Constraints and Indexing Complete Lesson | Database Management System

This lesson provides a complete understanding of SQL Constraints and Indexing, covering data integrity rules, database keys, constraint types, cascading actions, and performance optimization using indexes.Designed to help students understand HOW databases enforce correctness and improve performance, using real-world table designs, full SQL examples, and practical integrity-violation scenarios. ────────── β‹†β‹…β˜†β‹…β‹† ────────── What’s Included πŸ’‘ Full SQL Constraints and Indexing Slide DeckπŸ’‘ D
Preview of Computer Science Lesson on Operating System Basics, Types & System Structure

Computer Science Lesson on Operating System Basics, Types & System Structure

This Curriculum introduces students to the foundations of how computer systems work and how operating systems function. Perfect for ICT, Computer Science, Software Engineering, Networking programs, Diploma/TVET learners, university CS1/CS2 courses, and OS theory classes. This lesson provides clear explanations, diagrams, system architecture visuals, OS history, memory layouts, system types, and real-world examples to help students build a solid conceptual understanding of Operating Systems bef
Preview of Database Design and Normalization Complete Lesson | Database Management System

Database Design and Normalization Complete Lesson | Database Management System

This lesson provides a complete foundation in Database Design and Normalization, covering data redundancy, functional dependencies, normalization forms (1NF–BCNF), and real-world design decisions. Designed to help students understand WHY good database design matters before writing SQL, using clear tables, step-by-step decompositions, and exam-ready normalization examples. ────────── β‹†β‹…β˜†β‹…β‹† ────────── What’s Included πŸ’‘ Full Database Design & Normalization Slide DeckπŸ’‘ Detailed Teacher No
Preview of Introduction to Algorithms: Analysis, Design, Time & Space Complexity and Python

Introduction to Algorithms: Analysis, Design, Time & Space Complexity and Python

This lesson provides a complete, beginner-friendly introduction to Algorithms, covering algorithm concepts, analysis and design, time and space complexity, algorithm vs pseudocode, major algorithm types, and Python tools (Anaconda, Jupyter, Spyder). ────────── β‹†β‹…β˜†β‹…β‹† ────────── What’s Included πŸ’‘ Full Introduction to Algorithms Slide Deck (PPT + PDF)πŸ’‘ Clear visual explanations and diagramsπŸ’‘ Pseudocode examplesπŸ’‘ Python-based algorithm lab overviewπŸ’‘ Ready for in-person, online, or hybrid
Preview of Getting started with neural networks using Keras and Tensorflow | Deep Learning

Getting started with neural networks using Keras and Tensorflow | Deep Learning

This resource is a complete lesson on Getting Started with Neural Networks using Keras and TensorFlow, perfect for Machine Learning, Deep Learning, Artificial Intelligence, Data Science, and advanced ICT or Computer Science courses. The lesson introduces students to the structure of neural networks, how layers and models work, the role of loss functions and optimizers, the relationship between TensorFlow and Keras, and how to set up a practical deep learning workspace. It also includes hands-
Preview of Huffman’s Algorithm Complete Lesson | Operations, Diagrams & Examples included

Huffman’s Algorithm Complete Lesson | Operations, Diagrams & Examples included

This lesson teaches students how real-world data compression works by walking through Huffman’s Algorithm from concept to full C++ implementation. Learners see how character frequencies drive compression, how a binary tree is constructed using a priority queue, and how variable-length binary codes are generatedβ€”exactly the techniques used in text compression and image formats like JPEG. ────────── β‹†β‹…β˜†β‹…β‹† ────────── 🧠 What Students Will Actually Master ✨✨ ✏️ What Huffman Coding is and w
Preview of Stacks in Data Structures Lesson | Operations, Diagrams & Examples Included

Stacks in Data Structures Lesson | Operations, Diagrams & Examples Included

This lesson gives students a clear and practical understanding of the Stack data structure, showing how stacks work, how they are implemented, and where they are used in real systems β€” using complete C++ examples, not abstract theory. Students learn stacks as both a concept and a working data structure, removing confusion around LIFO behavior, memory limits, and implementation choices. ────────── β‹†β‹…β˜†β‹…β‹† ────────── 🧠 What Students Will Actually Master ✨✨ ✏️ What a Stack is and why it exi
Preview of Doubly Linked List Complete Lesson | Operations, Diagrams & Examples included

Doubly Linked List Complete Lesson | Operations, Diagrams & Examples included

This lesson gives students a clear, practical understanding of Doubly Linked Lists, showing how bidirectional data structures work internally and how they are implemented correctly in C++ using dynamic memory and pointers. Learners move beyond theory to see exactly how nodes are connected, updated, and removed, building confidence with pointer-heavy data structures that often confuse students. ────────── β‹†β‹…β˜†β‹…β‹† ────────── 🧠 What Students Will Actually Master ✨✨ ✏️ What a Doubly Linked Li
Preview of Algorithm Analysis & Design: Time Complexity and Asymptotic Notations

Algorithm Analysis & Design: Time Complexity and Asymptotic Notations

This lesson provides a complete, concept-clear foundation in Time Complexity and Asymptotic Notations, covering performance analysis, worst-case, best-case, and average-case analysis, Big O, Big Ξ©, Big Θ notations, and orders of growth. ────────── β‹†β‹…β˜†β‹…β‹† ────────── What’s Included πŸ’‘ Full Time Complexity and Asymptotic Notations Slide Deck (PPT + PDF)πŸ’‘ Growth comparison graphsπŸ’‘ Worked Big-O example problemsπŸ’‘ Algorithm analysis case studiesπŸ’‘ Ready for in-person, online, or hybrid cla
Preview of Hash Tables Complete Lesson | Operations, Diagrams & Examples included

Hash Tables Complete Lesson | Operations, Diagrams & Examples included

This lesson teaches students how constant-time data access is achieved using Hash Tables, one of the most powerful and widely used data structures in computer science. Learners understand how keys are transformed into addresses, why collisions occur, and how different collision-resolution strategies work in practiceβ€”the same principles used in databases, compilers, and caching systems. ────────── β‹†β‹…β˜†β‹…β‹† ────────── 🧠 What Students Will Actually Master ✨✨ ✏️ What a Hash Table is and why
Preview of Algorithm Analysis & Design | Brute Force and Exhaustive Search Complete Lesson

Algorithm Analysis & Design | Brute Force and Exhaustive Search Complete Lesson

This lesson provides a complete foundation in Brute Force and Exhaustive Search within Algorithm Analysis and Design, covering brute-force strategy, selection sort, bubble sort, linear (sequential) search, brute-force string matching, and exhaustive search for optimization problems including Traveling Salesman Problem, Knapsack Problem, and Assignment Problem. ────────── β‹†β‹…β˜†β‹…β‹† ────────── What’s Included πŸ’‘ Full Brute Force Slide Deck (PPT + PDF)πŸ’‘ Full Exhaustive Search Slide Deck (PPT +
Preview of FIVE Unit 2 Projects Bundle - AP Human Geography - Population & Migration

FIVE Unit 2 Projects Bundle - AP Human Geography - Population & Migration

Unit 2: Population & Migration Project Bundle5 Zero-Prep, Data-Driven Projects for AP Human Geography – Unit 2Product Overview: Transform how you teach Unit 2: Population and Migration Patterns and Processes with this complete, no-prep project bundle that brings key AP Human Geography concepts to life through hands-on analysis, real-world data, and creative application. Each of the five projects is directly aligned to the AP Human Geography Course and Exam Description (CED) and focuses on es
Preview of How Convolutional Neural Networks Work and See Images Complete Lesson

How Convolutional Neural Networks Work and See Images Complete Lesson

This lesson helps students understand HOW CNNs interpret images mathematically and visually, using clear diagrams, X/O image examples, filter matrices, and step-by-step convolution walkthroughs. ────────── β‹†β‹…β˜†β‹…β‹† ────────── What’s Included πŸ’‘ Full How CNNs Work & See Images Slide Deck (PPT + PDF)πŸ’‘ Visual CNN architecture diagramsπŸ’‘ Step-by-step convolution and filtering visualsπŸ’‘ Worked image-to-feature-map examplesπŸ’‘ Ready for in-person, online, or hybrid classrooms────────── β‹†β‹…β˜†β‹…β‹† ───
Preview of Priority Queue Complete Lesson | Operations, Diagrams & Examples included

Priority Queue Complete Lesson | Operations, Diagrams & Examples included

This lesson teaches students how priority-based data processing works, showing how elements are stored, ordered, and removed based on priority rather than insertion order. Learners understand why priority queues are essential in real systems and how they are implemented using linked lists and heaps, including a full C++ template-based implementation. ────────── β‹†β‹…β˜†β‹…β‹† ────────── 🧠 What Students Will Actually Master ✨✨ ✏️ What a Priority Queue is and why it’s used ✏️ Difference between a
Preview of A Beginner-Friendly Lesson on CNN Architecture, Layers & How They Work

A Beginner-Friendly Lesson on CNN Architecture, Layers & How They Work

This is a complete lesson on Convolutional Neural Networks (CNNs) β€” one of the most essential architectures in Deep Learning and Computer Vision. Perfect for Machine Learning, Artificial Intelligence, Data Science, Computer Science, and advanced ICT courses at the high school, college, university, or bootcamp level. The lesson explains what CNNs are, how they work, why they are powerful, and what each component does, supported with clear diagrams, real examples, architecture visuals, filter ex
Preview of Algorithm Analysis & Design: Limits, Growth Rates & Runtime Analysis

Algorithm Analysis & Design: Limits, Growth Rates & Runtime Analysis

This lesson provides a complete foundation in Orders of Growth within Algorithm Analysis and Design, covering relative rates of growth, logarithmic, polynomial, exponential and factorial functions, limits-based comparisons, L’HΓ΄pital’s Rule, Stirling’s Formula, and Big-O classifications. ────────── β‹†β‹…β˜†β‹…β‹† ────────── What’s Included πŸ’‘ Full Orders of Growth Slide Deck (PPT + PDF)πŸ’‘ Growth comparison graphs and figuresπŸ’‘ Worked mathematical examples using limitsπŸ’‘ Algorithm runtime estimat
Preview of Algorithm Analysis & Design: Mathematical Analysis of Recursive Algorithms

Algorithm Analysis & Design: Mathematical Analysis of Recursive Algorithms

This lesson provides a complete, concept-clear foundation in the Mathematical Analysis of Recursive Algorithms, covering recurrence relations, basic operation counting, forward and backward substitution, and mathematical evaluation of recursive algorithm efficiency. ────────── β‹†β‹…β˜†β‹…β‹† ────────── What’s Included πŸ’‘ Full Mathematical Analysis of Recursive Algorithms Slide Deck (PPT + PDF)πŸ’‘ Worked recursive algorithm examplesπŸ’‘ Forward and backward substitution solutionsπŸ’‘ Operation-count
Preview of Merge Sort Complete Lesson | Operations, Diagrams & Examples included

Merge Sort Complete Lesson | Operations, Diagrams & Examples included

This lesson teaches students how efficient sorting works at scale using Merge Sort, a classic divide-and-conquer algorithm known for its consistent performance. Learners clearly see how an array is recursively divided, how sorted subarrays are merged, and why Merge Sort outperforms basic sorting algorithmsβ€”all supported by a complete C++ implementation. ────────── β‹†β‹…β˜†β‹…β‹† ────────── 🧠 What Students Will Actually Master ✨✨ ✏️ What Merge Sort is and why it’s efficient ✏️ The Divide & C
Showing 97-120 of 180+ results