TPT
Total:
$0.00

Percent Increase and Decrease Quiz - Page 4

150+ results
Filters
Standard
Preview of CheckBox, RadioButton, Dialogs, Snackbar & Spinner with  XML + Kotlin Examples

CheckBox, RadioButton, Dialogs, Snackbar & Spinner with XML + Kotlin Examples

This is a lesson on Advanced Android UI Components and User Notifications. It takes students beyond basic layouts and teaches them how to build interactive, user-friendly app interfaces using CheckBox, RadioButton, RadioGroup, Toasts, Custom Toasts, Snackbars, AlertDialogs, List Dialogs, Custom Dialogs, and Spinners. ────────── ⋆⋅☆⋅⋆ ────────── 📦 What’s Included Ready-to-teach lesson slides on Advanced Android UI Components Complete XML layout files for every UI component Fully written Kot
Preview of Sorting Algorithm I Complete Curriculum  | Algorithm Analysis and Design

Sorting Algorithm I Complete Curriculum | Algorithm Analysis and Design

This is a Complete Lesson on Sorting Algorithms, covering Bubble Sort, Selection Sort, and Insertion Sort, step-by-step execution, and time complexity analysis (O(n²)). Ideal for Computer Science, ICT, IT Fundamentals, Algorithm Analysis & Design, and AP CS–aligned courses, with slides, assessments, and answer keys included. ────────── ⋆⋅☆⋅⋆ ────────── What’s Included 💡 Full Sorting Algorithms I Slide Deck💡 Complete Assessment Test💡 Answer Key & Marking Scheme💡 Visual sorting dia
Preview of Binary Search Tree Complete Lesson  | Operations, Diagrams & Examples included

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

This lesson gives students a deep, practical understanding of Binary Search Trees, showing how ordered data is stored, searched, traversed, and modified efficiently using a full C++ implementation. Learners move beyond diagrams to see exact algorithms in action—including searching, traversal strategies, and the hardest operation: deletion—building confidence with one of the most important non-linear data structures. ────────── ⋆⋅☆⋅⋆ ────────── 🧠 What Students Will Actually Master ✨✨ ✏️
Preview of AVL Tree Complete Lesson | Operations, Diagrams & Examples included

AVL Tree Complete Lesson | Operations, Diagrams & Examples included

This lesson teaches students how self-balancing trees work by breaking down AVL Trees from concept to full C++ implementation. Perfect For Data Structures & Algorithms, C++ Programming, Computer Science & ICT Lessons. Learners see why ordinary BSTs degrade into linked lists, how height imbalance is detected, and how rotations restore balance automatically—ensuring fast search, insertion, and deletion at all times. ────────── ⋆⋅☆⋅⋆ ────────── 🧠 What Students Will Actually Master ✨✨ ✏️
Preview of Streams and File Handling Complete Lesson | Object Oriented Programming ( C++ )

Streams and File Handling Complete Lesson | Object Oriented Programming ( C++ )

This lesson introduces students to Streams and File Handling in C++. It is designed for AP Computer Science, Intro to C++, Object-Oriented Programming, College CS1/CS2, homeschool advanced programming, and coding bootcamps. ────────── ⋆⋅☆⋅⋆ ────────── ✨✨ What Students Will Learn ✨✨ ✔ Stream Classes (istream, ostream, iostream) ✔ Stream Hierarchy & Inheritance ✔ ios Base Class & Stream Buffer ✔ Input and Output Stream Functions ✔ Disk File I/O with ifstream, ofstream, fstream ✔ Formatted File
Preview of Analysis of Algorithm Complete Lesson | Operations, Diagrams & Examples Included

Analysis of Algorithm Complete Lesson | Operations, Diagrams & Examples Included

This lesson teaches students how to think about algorithm efficiency, not just how to code. Learners understand why some solutions scale and others fail, and how to compare algorithms independent of hardware, language, or input data. It moves from intuition to rigor—bridging real program timing with mathematical analysis—so students can predict performance before implementation. ────────── ⋆⋅☆⋅⋆ ────────── 🧠 What Students Will Actually Master ✨✨ ✏️ What an algorithm is vs a program vs
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 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 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 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 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 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
Showing 73-96 of 150+ results