TPT
Total:
$0.00

Place Value Array

103+ results
Filters
Subject
Standard
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 Implementing Array Algorithms - Unit 4 Lesson 5 | Goldie's AP® CSA Curriculum

Implementing Array Algorithms - Unit 4 Lesson 5 | Goldie's AP® CSA Curriculum

AP Computer Science AUnit 4: Data Collections Lesson 5: Implementing Array AlgorithmsFull Lesson Plan, Guided Notes, Slides & Homework In this lesson, students will explore and implement common array algorithms in Java, such as finding maximum values, calculating sums, checking conditions, swapping, shifting, reversing, and working with arrays of objects. These algorithms are foundational for data processing and are frequently encountered in both the AP CSA exam and real-world programming. W
Preview of Operator Overloading Complete Lesson  | Object Oriented Programming ( C++ )

Operator Overloading Complete Lesson | Object Oriented Programming ( C++ )

This lesson introduces students to Operator Overloading, Unary & Binary Operators, Comparison Operators, Safe Arrays, Type Conversions, and Inter-Class Conversions 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 ✨✨ ✔ What Operator Overloading Is & Why It Matters ✔ Overloading Unary Operators (++ prefix & postfix) ✔ Returni
Preview of Recursive Searching and Sorting - Unit 4 Lesson 18 | Goldie's AP® CSA Curriculum

Recursive Searching and Sorting - Unit 4 Lesson 18 | Goldie's AP® CSA Curriculum

AP Computer Science AUnit 4: Data Collections Lesson 18: Recursive Searching and SortingFull Lesson Plan, Guided Notes, Slides & Homework In this lesson, students will explore recursive approaches to binary search and merge sort. They will learn to trace recursive logic and be able to explain how recursive sorting and searching methods work. Emphasis is placed on understanding recursive structure rather than writing full implementations from scratch. What’s Included: Detailed lesson planStud
Preview of Structures Complete Lesson | Object Oriented Programming ( C++ )

Structures Complete Lesson | Object Oriented Programming ( C++ )

This lesson introduces students to Structures in C++, a foundational concept in Object-Oriented Programming that teaches how to group related data into a single, organized unit. 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 ✨✨ ✔ What a Structure Is ✔ Purpose of Structures in Organizing Data ✔ Declaring a Structure ✔ Creating Stru
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 Complete C Programming Lesson on Functions, Structures & Dynamic Memory

Complete C Programming Lesson on Functions, Structures & Dynamic Memory

This Curriculum introduces students to one of the most important foundations of programming: functions, variables, scope, memory layout, structures, typedef, pointers, pointer arithmetic, and dynamic memory allocation. Perfect for ICT, Computer Science, Programming Fundamentals, Software Engineering foundations, and CS1-level courses. This lesson includes clear explanations, diagrams, code examples, memory maps, structure modeling, pointer behavior demonstrations, and practical applications, m
Preview of 2D Arrays - Unit 4 Lesson 11 | Goldie's AP® CSA Curriculum

2D Arrays - Unit 4 Lesson 11 | Goldie's AP® CSA Curriculum

AP Computer Science AUnit 4: Data Collections Lesson 11: 2D ArraysFull Lesson Plan, Guided Notes, Slides & Homework In this lesson, students will learn how to create, access, and manipulate two-dimensional (2D) arrays. They will explore how 2D arrays are structured as arrays of arrays, practice accessing elements by row and column indices, and perform operations using those elements. What’s Included: Detailed lesson planStudent guided notesEditable PowerPoint presentationInstructional video
Preview of Implementing 2D Array Algorithms - Unit 4 L13 | Goldie's AP® CSA Curriculum

Implementing 2D Array Algorithms - Unit 4 L13 | Goldie's AP® CSA Curriculum

AP Computer Science AUnit 4: Data Collections Lesson 13: Implementing 2D Array AlgorithmsFull Lesson Plan, Guided Notes, Slides & Homework In this lesson, students will implement and analyze several algorithms that operate on 2D arrays using nested loops. They will learn how to perform linear search, calculate sums across rows and columns, and identify minimum values in columns. What’s Included: Detailed lesson planStudent guided notesEditable PowerPoint presentationInstructional video of th
Preview of Complete C Programming Lesson on Loops, Arrays & Strings with Examples

Complete C Programming Lesson on Loops, Arrays & Strings with Examples

This Curriculum provides a complete, student-friendly walkthrough of loops, control flow, break/continue behavior, arrays, multidimensional arrays, strings, and essential string functions in C. Perfect for ICT, Computer Science, Programming Fundamentals, Software Engineering basics, and CS1-level courses. Each lesson includes clear explanations, step-by-step examples, full C code, flowcharts, diagrams, array memory layouts, and practical applications, helping learners truly understand how loops
Preview of Intro to Java Unit 3 Bundle — Objects, Classes, Arrays, ArrayLists & Inheritance

Intro to Java Unit 3 Bundle — Objects, Classes, Arrays, ArrayLists & Inheritance

Created by
Mr. H Codes
Intro to Java Unit 3 Complete Bundle (With Final Project)Teach Object-Oriented Programming with confidence using this complete, classroom-ready Unit 3 bundle for Intro to Java / AP Computer Science A! This bundled resource includes 8 fully designed Java lessons (3.1–3.8) PLUS a high-engagement Monster Arena Battle Simulator Final Project that ties together all major concepts from the unit. This unit guides students from basic object understanding to full multi-class OOP programs using methods
Preview of Implementing Array List in Data Structures Complete Lesson [ C++ Included ]

Implementing Array List in Data Structures Complete Lesson [ C++ Included ]

This lesson teaches students how lists are actually implemented under the hood using arrays, showing how insertion, deletion, and access work at the memory level. Learners move beyond using built-in containers to building their own List data structure from scratch, understanding why operations cost time and how data shifting affects performance. ────────── ⋆⋅☆⋅⋆ ────────── 🧠 What Students Will Actually Master ✨✨ ️✏️What a List ADT is and why it’s used ✏️ How an Array List stores eleme
Preview of Arrays with Safer Internet Day

Arrays with Safer Internet Day

Created by
amira tarek
Arrays in programming with Safer Internet Day in a way students will not forget. While learning about arrays, students explored how data is stored in ordered lists — just like how social media platforms organize users, posts, likes, and comments inside structured systems. We used: 📍 Maps to represent how data flows between users 🎮 Different levels to simulate privacy settings (public, friends, private) 🧠 Array indexing to show how one small action (like sharing personal info) can affect
Preview of Array vs Linked List CER | Programming | Case Study

Array vs Linked List CER | Programming | Case Study

📘 Full Length National Standard-Aligned DBQ CER Style Worksheet - Claim Evidence Reasoning | Array vs Linked List Case Study Worksheet | Evidence-Based Reading Engage your students in high-level critical thinking and evidence-based analysis on the subject of Computer Programming, with this Full Length DBQ CER Style Worksheet. This resource is designed to help students analyze real-world topics, interpret informational texts, and support answers with evidence—all while staying accessible f
Preview of Boundary Value Analysis CER | Programming | Case Study

Boundary Value Analysis CER | Programming | Case Study

📘 Full Length National Standard-Aligned DBQ CER Style Worksheet - Claim Evidence Reasoning | Boundary Value Analysis Case Study Worksheet | Evidence-Based Reading Engage your students in high-level critical thinking and evidence-based analysis on the subject of Computer Programming, with this Full Length DBQ CER Style Worksheet. This resource is designed to help students analyze real-world topics, interpret informational texts, and support answers with evidence—all while staying accessibl
Preview of Array vs Linked List DBQ/CER | Computer Science Worksheet | Standard Aligned

Array vs Linked List DBQ/CER | Computer Science Worksheet | Standard Aligned

📘 Full Length National Standard-Aligned DBQ CER Style Worksheet - Claim Evidence Reasoning | Array vs Linked List Worksheet | Evidence-Based Reading Engage your students in high-level critical thinking and evidence-based analysis on the subject of Computer Science, with this Full Length DBQ CER Style Worksheet. This resource is designed to help students analyze real-world topics, interpret informational texts, and support answers with evidence—all while staying accessible for high school l
Preview of Missing Value Handling DBQ/CER | Big Data Worksheet | NGSS Standard Aligned

Missing Value Handling DBQ/CER | Big Data Worksheet | NGSS Standard Aligned

📘 Full Length National Standard-Aligned DBQ CER Style Worksheet - Claim Evidence Reasoning | Missing Value Handling Worksheet | Evidence-Based Reading Engage your students in high-level critical thinking and evidence-based analysis on the subject of Computer Science, with this Full Length DBQ CER Style Worksheet. This resource is designed to help students analyze real-world topics, interpret informational texts, and support answers with evidence—all while staying accessible for high school
Preview of The p Value Mystery DBQ/CER | Big Data Worksheet | NGSS Standard Aligned

The p Value Mystery DBQ/CER | Big Data Worksheet | NGSS Standard Aligned

📘 Full Length National Standard-Aligned DBQ CER Style Worksheet - Claim Evidence Reasoning | The p Value Mystery Worksheet | Evidence-Based Reading Engage your students in high-level critical thinking and evidence-based analysis on the subject of Computer Science, with this Full Length DBQ CER Style Worksheet. This resource is designed to help students analyze real-world topics, interpret informational texts, and support answers with evidence—all while staying accessible for high school le
Preview of Array vs Linked List DBQ/CER | Big Data Worksheet | NGSS Standard Aligned

Array vs Linked List DBQ/CER | Big Data Worksheet | NGSS Standard Aligned

📘 Full Length National Standard-Aligned DBQ CER Style Worksheet - Claim Evidence Reasoning | Array vs Linked List Worksheet | Evidence-Based Reading Engage your students in high-level critical thinking and evidence-based analysis on the subject of Computer Science, with this Full Length DBQ CER Style Worksheet. This resource is designed to help students analyze real-world topics, interpret informational texts, and support answers with evidence—all while staying accessible for high school l
Preview of Array vs Linked List CER | Computer Programming | GATE Middle School

Array vs Linked List CER | Computer Programming | GATE Middle School

📘 Full Length Standard Aligned DBQ CER Style Worksheet - Claim Evidence Reasoning | Array vs Linked List Case Study Worksheet | Evidence-Based Reading Engage your students in high-level critical thinking and evidence-based analysis on the subject of Computer Programming, with this Full Length DBQ CER Style Worksheet. This resource is designed to help students analyze real-world topics, interpret informational texts, and support answers with evidence—all while staying accessible for gifted &
Preview of Boundary Value Analysis CER | Computer Programming | GATE Middle School

Boundary Value Analysis CER | Computer Programming | GATE Middle School

📘 Full Length Standard Aligned DBQ CER Style Worksheet - Claim Evidence Reasoning | Boundary Value Analysis Case Study Worksheet | Evidence-Based Reading Engage your students in high-level critical thinking and evidence-based analysis on the subject of Computer Programming, with this Full Length DBQ CER Style Worksheet. This resource is designed to help students analyze real-world topics, interpret informational texts, and support answers with evidence—all while staying accessible for gifte
Preview of Array vs Linked List DBQ/CER | Computer Science | GATE Middle School

Array vs Linked List DBQ/CER | Computer Science | GATE Middle School

📘 Full Length Standard Aligned DBQ CER Style Worksheet - Claim Evidence Reasoning | Array vs Linked List Worksheet | Evidence-Based Reading Engage your students in high-level critical thinking and evidence-based analysis on the subject of Computer Science, with this Full Length DBQ CER Style Worksheet. This resource is designed to help students analyze real-world topics, interpret informational texts, and support answers with evidence—all while staying accessible for gifted & talented middl
Preview of Missing Value Handling DBQ/CER | Big Data Standard-Aligned | GATE Middle School

Missing Value Handling DBQ/CER | Big Data Standard-Aligned | GATE Middle School

📘 Full Length Standard Aligned DBQ CER Style Worksheet - Claim Evidence Reasoning | Missing Value Handling Worksheet | Evidence-Based Reading Engage your students in high-level critical thinking and evidence-based analysis on the subject of Computer Science, with this Full Length DBQ CER Style Worksheet. This resource is designed to help students analyze real-world topics, interpret informational texts, and support answers with evidence—all while staying accessible for gifted & talented mid
Preview of The p Value Mystery DBQ/CER | Big Data Standard-Aligned | GATE Middle School

The p Value Mystery DBQ/CER | Big Data Standard-Aligned | GATE Middle School

📘 Full Length Standard Aligned DBQ CER Style Worksheet - Claim Evidence Reasoning | The p Value Mystery Worksheet | Evidence-Based Reading Engage your students in high-level critical thinking and evidence-based analysis on the subject of Computer Science, with this Full Length DBQ CER Style Worksheet. This resource is designed to help students analyze real-world topics, interpret informational texts, and support answers with evidence—all while staying accessible for gifted & talented middle
Showing 1-24 of 103+ results