TPT
Total:
$0.00

Percent Increase and Decrease Quiz - Page 5

220+ results
Filters
Subject
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 Coding, Logic & Game Design STEM Bundle | Computer Science Units For K - 9 Grade

Coding, Logic & Game Design STEM Bundle | Computer Science Units For K - 9 Grade

Created by
Think Tank STEM
💻 Computer Science & Game Design STEM Mega Bundle | Coding, Logic & Digital Skills (K–9)Empower students to think like programmers and designers with this comprehensive Computer Science STEM Mega Bundle! This hands-on collection introduces essential technology concepts—including coding, algorithms, encryption, and game design—through engaging, creative challenges that make learning meaningful and interactive. Perfect for a wide range of grade levels, this bundle helps students explore how com
Preview of Complete Linux Programming Lesson on Semaphores, Shared Memory & Message Queues

Complete Linux Programming Lesson on Semaphores, Shared Memory & Message Queues

This is a complete lesson on Linux Inter-Process Communication (IPC) using Message Queues, Shared Memory, and Semaphores. Perfect for Operating Systems, Linux System Programming, C Programming, Computer Science, and Software Engineering at the college, university, and technical-training levels. It introduces students to three major System V IPC mechanisms and shows how processes exchange data, synchronize critical sections, and safely coordinate access to shared resources. The lesson includes
Preview of Linux IPC with Pipes and FIFOs Lesson on Process Communication

Linux IPC with Pipes and FIFOs Lesson on Process Communication

This resource is a complete lesson on Inter-Process Communication (IPC) using Pipes in Linux System Programming. Perfect for Operating Systems, Linux Programming, System Programming, C Programming, and Computer Science courses at the college, university, or technical-training level. It introduces students to how processes communicate, how pipes work, how to use popen and pclose, how to create and use unnamed pipes, how pipes work across a fork, and how to use FIFOs (named pipes) for communicat
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 Linux Processes and Signals Lesson with fork(), exec(), wait() & C Examples

Linux Processes and Signals Lesson with fork(), exec(), wait() & C Examples

This is a complete lesson on Linux System Programming: Processes and Signals. Perfect for Operating Systems, Linux Programming, System Programming, C Programming, Computer Science, and Engineering courses at the college, university, or technical-training level. It introduces students to how Linux manages running programs, how processes are created, how parents and children behave, how programs are replaced using exec, how zombie processes form, and how signals are sent, handled, and controlle
Preview of Introduction To Data Structures, Algorithms & Dynamic Array [ Includes C++ ]

Introduction To Data Structures, Algorithms & Dynamic Array [ Includes C++ ]

This lesson gives learners the mental framework behind why data structures exist, when to use each one, and how to implement them correctly . Perfect For Programming, Coding, Computer Science & ICT classes ────────── ⋆⋅☆⋅⋆ ────────── 🧠 What Students Will Actually Master ✨✨✏️What data structures are — and why they exist✏️How data organization impacts speed and memory✏️How to choose the right data structure for a problem ✏️Arrays vs Dynamic Arrays — when fixed size fails✏️Array vs Linked
Preview of Stored Procedures and Functions Complete Lesson  | Database Management System

Stored Procedures and Functions Complete Lesson | Database Management System

This lesson provides a complete foundation on Stored Procedures and Functions in MySQL, covering procedure creation, parameters, execution, functions, and real-world database logic implementation. Ideal for Computer Science.Designed to help students understand HOW logic is stored, reused, and secured inside the database, using clear syntax, step-by-step examples, and realistic employee-database scenarios. ────────── ⋆⋅☆⋅⋆ ────────── What’s Included 💡 Full Stored Procedures and Functions
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 Computer Science & Digital Literacy STEM Bundle | Coding, AI & Online Safety

Computer Science & Digital Literacy STEM Bundle | Coding, AI & Online Safety

Created by
Think Tank STEM
💻🤖 Computer Science & Digital Literacy STEM Mega Bundle | Coding, AI & Online Safety (K–9) Prepare students for the digital world with this powerful Computer Science & Digital Literacy STEM Mega Bundle! This collection of hands-on activities introduces key technology concepts—including coding, data processing, artificial intelligence, and internet safety—through engaging, real-world challenges. Designed to grow with your learners, this bundle combines creativity, critical thinking, and pro
Preview of Using GPS and Location Services in Android | Mobile Applications Development

Using GPS and Location Services in Android | Mobile Applications Development

This is a complete lesson on GPS, Location Services, and Google Maps Integration in Android. Perfect for Android Development, Mobile App Development, Kotlin Programming, ICT, Computer Science, or App Design. ✨✨It teaches students how to retrieve device location, request permissions, display latitude/longitude, and show the user’s exact position on a Google Map. ✨✨Students are guided step-by-step through Android permissions, accessing the device’s last known location, working with the Fu
Preview of App Deployment and Publishing | Mobile Applications Development

App Deployment and Publishing | Mobile Applications Development

This is a complete lesson on Android App Deployment and Publishing, Perfect for Android Development, Mobile App Development, Kotlin Programming, ICT, Computer Science, Software Engineering, or App Design. It guides students through everything they need to know before releasing an Android application. ✨✨ This lesson provides a professional, real-world introduction to how apps are packaged, signed, versioned, and published on the Google Play Store. ✨✨ Learners are walked step-by-step through AP
Preview of Using RecyclerView and Custom Adapter in Android | Mobile Apps Development

Using RecyclerView and Custom Adapter in Android | Mobile Apps Development

This is a complete lesson on RecyclerView and Custom Adapters in Android. If you teach Android Development, Mobile App Development, Kotlin Programming, ICT, Computer Science, or App Design, this lesson gives students everything they need to build fast, efficient, and professional list-based UIs. Learners are guided step-by-step through creating a RecyclerView, building layouts for list items, writing a complete custom adapter, handling click events, using ViewHolder patterns, and displaying da
Preview of Backup and Recovery Complete Lesson | Database Management System

Backup and Recovery Complete Lesson | Database Management System

This lesson provides a complete foundation in Database Backup and Recovery, covering backup types, recovery techniques, mysqldump usage, automation, and disaster recovery planning. Ideal for Computer Science, ICT, IT Fundamentals, Database Systems, and AP CS–aligned courses. Designed to help students understand HOW databases protect data from loss and ensure availability, using real MySQL commands, step-by-step backup and restore workflows, and business-ready disaster recovery examples.
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
Showing 97-120 of 220+ results