TPT
Total:
$0.00

Percent Increase and Decrease Quiz - Page 3

94+ results
Filters
Programs & methods
Preview of Analysis of Algorithms II Complete Lesson  | Algorithm Analysis and Design

Analysis of Algorithms II Complete Lesson | Algorithm Analysis and Design

This lesson focuses on applying time complexity concepts to real problems using naive, efficient, and advanced algorithms. Ideal for Computer Science, ICT, IT Fundamentals, AP CS, and introductory Data Structures courses, with slides, teacher guide, assessments, and answer keys included. ────────── ⋆⋅☆⋅⋆ ────────── What’s Included 💡 Full Analysis of Algorithms II Slide Deck 💡 Detailed Teacher Guide & Teaching Script💡 Complete Assessment Test💡 Full Answer Key💡 Worked algorithm des
Preview of Searching Algorithms Lesson: Linear, Binary, Jump & Interpolation Search

Searching Algorithms Lesson: Linear, Binary, Jump & Interpolation Search

This lesson provides a complete foundation in Searching Algorithms, covering Linear Search, Binary Search, Jump Search, and Interpolation Search, including step-by-step execution, Python implementations, and time complexity analysis. ────────── ⋆⋅☆⋅⋆ ────────── What’s Included 💡 Full Searching Algorithms Slide Deck💡 Visual step-by-step search diagrams💡 Python code implementations💡 Exam-style search problems💡 Ready for in-person, online, or hybrid classrooms────────── ⋆⋅☆⋅⋆ ─────
Preview of Analysis of Algorithms I Complete Lesson  | Algorithm Analysis and Design

Analysis of Algorithms I Complete Lesson | Algorithm Analysis and Design

This lesson covers time complexity, asymptotic analysis, Big O, Θ, Ω notations, growth orders, and algorithm efficiency evaluation. Ideal for Computer Science, ICT, IT Fundamentals, AP CS, and introductory Data Structures courses, with slides, teacher guide, assessments, and answer keys included. ────────── ⋆⋅☆⋅⋆ ────────── What’s Included 💡 Full Analysis of Algorithms I Slide Deck💡 Detailed Teacher Guide & Teaching Script💡 Complete Assessment Test💡 Full Answer Key💡 Worked algorit
Preview of SQL Joins and Views Complete Lesson | Database Management System [DBMS]

SQL Joins and Views Complete Lesson | Database Management System [DBMS]

This lesson provides a complete understanding of SQL Joins and Views, covering all major join types, advanced join scenarios, UNION operations, and SQL views for data presentation and security. Ideal for Computer Science, ICT, IT Fundamentals, Database Systems, and AP CS–aligned courses. Designed to help students understand HOW data from multiple tables is combined and presented in real databases, using clear diagrams, real-world table examples, and fully worked SQL queries. ────────── ⋆⋅☆⋅
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 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 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 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 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 Evaluating Postfix Expression | Operations, Diagrams & Examples included

Evaluating Postfix Expression | Operations, Diagrams & Examples included

This lesson shows students how expressions are actually evaluated by computers by breaking down prefix, infix, and postfix notation and implementing a complete postfix expression evaluator using stacks in C++. Instead of memorizing rules, learners see how operator precedence disappears in postfix form and how stacks power real expression evaluation step by step. ────────── ⋆⋅☆⋅⋆ ────────── 🧠 What Students Will Actually Master ✨✨ ✏️ Difference between infix, prefix, and postfix expressio
Preview of Infix to Postfix Conversion Complete Lesson | Operations & Examples included

Infix to Postfix Conversion Complete Lesson | Operations & Examples included

This lesson teaches students how algebraic expressions are converted into machine-friendly form, showing exactly how stacks are used to transform infix expressions into postfix notation. Learners move from rules and precedence tables to real algorithms and working C++ code, building a strong foundation for expression evaluation, compilers, and advanced stack applications. ────────── ⋆⋅☆⋅⋆ ────────── 🧠 What Students Will Actually Master ✨✨ ✏️ Difference between infix, prefix, and postfix
Preview of Complete Computer Science & Python Programming Lessons [ULTIMATE CODING BUNDLE].

Complete Computer Science & Python Programming Lessons [ULTIMATE CODING BUNDLE].

This Bundle offers an all-in-one curriculum that combines core Computer Science concepts with practical Python programming skills. It covers everything from algorithms, flowcharts, memory management, and file systems to hands-on coding in Python. Designed for beginners and intermediate learners, this bundle is packed with engaging, classroom-ready content for a full academic term or self-paced study. ▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧ The Following Are Included in This Curriculum ✤ PDF Lessons ✤ Pow
Preview of Routing Fundamentals & Static Routing | CCNA 200-301 and Networking Lessons

Routing Fundamentals & Static Routing | CCNA 200-301 and Networking Lessons

This lesson is on Routing Fundamentals & Static Routing. Ideal for ICT, Computer Science, Networking, or certification prep (CCNA, CCNP, or CompTIA Network+), it introduces the core concepts of routing and explains how routers determine the best path for data to travel across networks. The lesson also covers static routing, demonstrating how to manually configure routes to control network traffic and ensure reliable communication between devices, helping learners build a solid foundation
Preview of IPv4 Addressing (Part 2) | CCNA 200-301 Prep and Networking Lessons

IPv4 Addressing (Part 2) | CCNA 200-301 Prep and Networking Lessons

This lesson is on IPv4 Addressing (Part 2). Ideal for ICT, Computer Science, Networking, or certification prep (CCNA, CCNP, or CompTIA Network+), it provides a deeper understanding of IPv4 addressing through a review and clarification of IP address classes. The lesson guides learners step-by-step on how to determine the maximum number of hosts, network address, broadcast address, first usable address, and last usable address for a given network, helping them strengthen their subnetti
Preview of Virtual Local Area Networks  Part 1  | CCNA 200-301 Prep and Networking Lessons

Virtual Local Area Networks Part 1 | CCNA 200-301 Prep and Networking Lessons

This lesson is on VLANs (Virtual Local Area Networks) – Part 1. Ideal for ICT, Computer Science, Networking, or certification prep (CCNA, CCNP, or CompTIA Network+), it covers the fundamentals of VLANs, including what a LAN is, broadcast domains, the definition and purpose of VLANs, and how to configure VLANs on Cisco switches. Learners will understand how VLANs segment networks for improved performance, security, and management, forming the foundation for advanced switching concepts. ◇◆
Preview of OSPF Part-3 | CCNA 200-301 Prep and Networking Lessons

OSPF Part-3 | CCNA 200-301 Prep and Networking Lessons

This lesson is on Open Shortest Path First (OSPF) – Part 3. Ideal for ICT, Computer Science, Networking, or certification prep (CCNA, CCNP, or CompTIA Network+), it covers OSPF network types, OSPF neighbor and adjacency requirements, and OSPF Link-State Advertisement (LSA) types. Students will learn how OSPF functions across different network topologies, the conditions required to form adjacencies, and how LSAs share routing information to maintain an accurate and efficient network topolog
Preview of Virtual Local Area Networks  Part 3  | CCNA 200-301 Prep and Networking Lessons

Virtual Local Area Networks Part 3 | CCNA 200-301 Prep and Networking Lessons

This lesson is on VLANs (Virtual Local Area Networks) – Part 3. Ideal for ICT, Computer Science, Networking, or certification prep (CCNA, CCNP, or CompTIA Network+), it covers advanced VLAN topics including Native VLAN configuration on a router, Wireshark traffic analysis, and Layer 3 (Multilayer) Switching. Learners will explore how routing between VLANs operates, how to analyze VLAN traffic, and how multilayer switches integrate routing and switching for high-performance enterprise netw
Preview of Virtual Local Area Networks  Part 2  | CCNA 200-301 Prep and Networking Lessons

Virtual Local Area Networks Part 2 | CCNA 200-301 Prep and Networking Lessons

This lesson is on Virtual Local Area Networks (VLANs) – Part 2. Ideal for ICT, Computer Science, Networking, or certification prep (CCNA, CCNP, or CompTIA Network+), it covers advanced VLAN concepts including what trunk ports are, the purpose of trunk ports, 802.1Q encapsulation, how to configure trunk ports, and Router on a Stick (ROAS). Learners will understand how VLANs communicate across multiple switches and routers, enabling inter-VLAN connectivity and efficient network segmentat
Preview of Virtual Local Area Networks  Part 2  | CCNA 200-301 Prep and Networking Lessons

Virtual Local Area Networks Part 2 | CCNA 200-301 Prep and Networking Lessons

This lesson is on Virtual Local Area Networks (VLANs) – Part 2. Ideal for ICT, Computer Science, Networking, or certification prep (CCNA, CCNP, or CompTIA Network+), it covers advanced VLAN concepts including what trunk ports are, the purpose of trunk ports, 802.1Q encapsulation, how to configure trunk ports, and Router on a Stick (ROAS). Learners will understand how VLANs communicate across multiple switches and routers, enabling inter-VLAN connectivity and efficient network segmentat
Preview of Switch Interfaces | CCNA 200-301 Prep and Networking Lessons

Switch Interfaces | CCNA 200-301 Prep and Networking Lessons

This lesson is on Switch Interfaces. Ideal for ICT, Computer Science, Networking, or certification prep (CCNA, CCNP, or CompTIA Network+), it explains the different types of interfaces found on network switches and their functions. The lesson covers topics such as access ports, trunk ports, and management interfaces, helping learners understand how switches connect and communicate with other devices, manage traffic within a network, and support efficient network design and configuration
Preview of IPv6 Part 2 | CCNA 200-301 Prep and Networking Lessons

IPv6 Part 2 | CCNA 200-301 Prep and Networking Lessons

This lesson is on IPv6 – Part 2. Ideal for ICT, Computer Science, Networking, or certification prep (CCNA, CompTIA Network+, or CCNP), it continues from Part 1 with a deeper look into IPv6 address configuration, including Modified EUI-64 address generation, and explains the different IPv6 address types such as Global Unicast, Unique Local, Link-Local, Multicast, and other specialized addresses used in modern IPv6 networks. ◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆◇◆ Things we’ll coverIPv6 address configurati
Preview of Introduction to Coding in Python - 38 LESSONS | Computer Science & Programming

Introduction to Coding in Python - 38 LESSONS | Computer Science & Programming

✤ This Lesson provides a beginner-friendly introduction to coding in Python, tailored for Computer Science and Programming education. Through 38 structured lessons, learners explore key programming concepts such as variables, loops, conditionals, functions, data structures, and file handling. Each lesson is practical, engaging, and designed to build both foundational knowledge and real-world coding skills. ▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧▧ The Following Are Included in This Curriculum✤ PDF Lessons ✤
Showing 49-72 of 94+ results