<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="de">
	<id>https://staging.moocwiki.org/index.php?action=history&amp;feed=atom&amp;title=English%3ABlock-Based_Coding</id>
	<title>English:Block-Based Coding - Versionsgeschichte</title>
	<link rel="self" type="application/atom+xml" href="https://staging.moocwiki.org/index.php?action=history&amp;feed=atom&amp;title=English%3ABlock-Based_Coding"/>
	<link rel="alternate" type="text/html" href="https://staging.moocwiki.org/index.php?title=English:Block-Based_Coding&amp;action=history"/>
	<updated>2026-08-12T02:40:48Z</updated>
	<subtitle>Versionsgeschichte dieser Seite in MOOCsWiki Staging</subtitle>
	<generator>MediaWiki 1.45.3</generator>
	<entry>
		<id>https://staging.moocwiki.org/index.php?title=English:Block-Based_Coding&amp;diff=43701&amp;oldid=prev</id>
		<title>Glanz: aiMOOC über GPT aiMOOC Action erstellt</title>
		<link rel="alternate" type="text/html" href="https://staging.moocwiki.org/index.php?title=English:Block-Based_Coding&amp;diff=43701&amp;oldid=prev"/>
		<updated>2026-08-11T21:23:10Z</updated>

		<summary type="html">&lt;p&gt;aiMOOC über GPT aiMOOC Action erstellt&lt;/p&gt;
&lt;p&gt;&lt;b&gt;Neue Seite&lt;/b&gt;&lt;/p&gt;&lt;div&gt;{{T}}&lt;br /&gt;
[[Category:English]]&lt;br /&gt;
[[Category:Block-Based Coding]]&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Introduction =&lt;br /&gt;
&lt;br /&gt;
Block-based coding is a way to create computer programs by dragging and connecting visual blocks. Each block represents an instruction or a piece of information. Instead of typing every symbol, you can focus on what you want the computer to do and how the instructions fit together. Platforms such as [[English:Scratch (programming language)|Scratch]] and editors built with [[English:Blockly|Blockly]] use this visual approach.&lt;br /&gt;
&lt;br /&gt;
In this aiMOOC, you will learn how to build clear instructions, use repetition and decisions, store information, test your ideas, and improve a program when something goes wrong. You will also create your own small projects. The examples are designed for Grades 5–6, but the same ideas appear in many kinds of [[English:Computer programming|computer programming]].&lt;br /&gt;
&lt;br /&gt;
[[File:Scratch 3.0 editor.png|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
Watch this official Scratch Team introduction and notice how blocks snap together to create actions:&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=9jTPZfhuVro|500|center}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Learning goals:&amp;#039;&amp;#039;&amp;#039; By the end of the course, you should be able to explain what an [[English:Algorithm|algorithm]] is, arrange instructions in a useful [[English:Sequence|sequence]], use a [[English:Loop (computing)|loop]], make choices with a [[English:Conditional (computer programming)|conditional]], store changing information in a [[English:Variable (computer science)|variable]], respond to events, and use [[English:Debugging|debugging]] to improve a project.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= How Block-Based Coding Works =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Blocks as Instructions ==&lt;br /&gt;
&lt;br /&gt;
A block is a visual piece of code. Blocks often have shapes that show where they can connect. A motion block might move a character. A sound block might play a sound. A control block might repeat another group of blocks. When blocks are connected in a stack, the computer follows the instructions in the order the programming environment defines.&lt;br /&gt;
&lt;br /&gt;
This makes programming easier to explore because you can see many possible commands and build with them like puzzle pieces. It does not mean the thinking is simple. You still need to plan, test, make decisions, and solve problems.&lt;br /&gt;
&lt;br /&gt;
[[File:Scratch blocks.png|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Algorithms and Sequences ==&lt;br /&gt;
&lt;br /&gt;
An &amp;#039;&amp;#039;&amp;#039;algorithm&amp;#039;&amp;#039;&amp;#039; is a clear set of steps for completing a task or solving a problem. In coding, the order of those steps matters. A &amp;#039;&amp;#039;&amp;#039;sequence&amp;#039;&amp;#039;&amp;#039; is a set of instructions arranged in the order they should happen.&lt;br /&gt;
&lt;br /&gt;
Imagine telling a character to walk to a treasure chest. If the character turns before moving, it may head in the correct direction. If you move first and turn later, the character may miss the chest. A useful programmer question is: &amp;#039;&amp;#039;&amp;#039;What should happen first, next, and last?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
&lt;br /&gt;
You can practice algorithms without a computer. Write directions for making a paper airplane, moving through a simple classroom maze, or drawing a shape. Then ask a classmate to follow your instructions exactly. If the result is not what you expected, improve the instructions.&lt;br /&gt;
&lt;br /&gt;
[[File:Cjam-maze-your-first-program.png|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Events: What Starts the Code? ==&lt;br /&gt;
&lt;br /&gt;
Many block-based projects use [[English:Event-driven programming|event-driven programming]]. An &amp;#039;&amp;#039;&amp;#039;event&amp;#039;&amp;#039;&amp;#039; is something that happens and causes code to run. Examples include clicking a green flag, pressing a key, touching a sprite, receiving a message, or starting a game.&lt;br /&gt;
&lt;br /&gt;
Events help different parts of a project react to the user or to one another. For example, pressing the space bar might make a character jump, while touching a goal might play a celebration sound.&lt;br /&gt;
&lt;br /&gt;
[[File:Scratch 3.0 Screenshot When Green Flag Clicked.png|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Loops: Repeat Without Copying ==&lt;br /&gt;
&lt;br /&gt;
A &amp;#039;&amp;#039;&amp;#039;loop&amp;#039;&amp;#039;&amp;#039; repeats instructions. Loops are useful when the same action needs to happen many times. Instead of placing ten identical movement blocks in a row, you might place one movement block inside a repeat block.&lt;br /&gt;
&lt;br /&gt;
Some loops repeat a fixed number of times. Others continue until a condition becomes true, and some continue for as long as the program runs. Choosing the right loop can make code shorter, clearer, and easier to change.&lt;br /&gt;
&lt;br /&gt;
[[File:Blockly for loop.png|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
Try this thinking challenge: A sprite should draw a square. The same move-and-turn pattern happens four times. Which instructions belong inside the loop, and which instruction tells the loop how many times to repeat?&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Conditionals: Let the Program Decide ==&lt;br /&gt;
&lt;br /&gt;
A &amp;#039;&amp;#039;&amp;#039;conditional&amp;#039;&amp;#039;&amp;#039; lets a program choose what to do based on a condition. The basic idea is: &amp;#039;&amp;#039;&amp;#039;if something is true, do an action&amp;#039;&amp;#039;&amp;#039;. Some conditionals also include an &amp;#039;&amp;#039;&amp;#039;else&amp;#039;&amp;#039;&amp;#039; choice for what to do when the condition is false.&lt;br /&gt;
&lt;br /&gt;
A game could use a conditional such as: if the player touches the star, increase the score. An interactive story could use: if the answer is correct, show the next scene; else, give a helpful hint.&lt;br /&gt;
&lt;br /&gt;
[[File:Blockly Conditions.png|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
Conditionals are powerful because they make a project respond differently in different situations. They are a key part of interactive games, quizzes, simulations, and stories.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Variables: Remember Changing Information ==&lt;br /&gt;
&lt;br /&gt;
A &amp;#039;&amp;#039;&amp;#039;variable&amp;#039;&amp;#039;&amp;#039; is a named place where a program stores a value that can change. In a game, a variable might store the score, number of lives, time remaining, or current level. In a quiz, it might store the number of correct answers.&lt;br /&gt;
&lt;br /&gt;
A variable has a name so the programmer knows what it represents. Clear names such as &amp;#039;&amp;#039;&amp;#039;score&amp;#039;&amp;#039;&amp;#039; or &amp;#039;&amp;#039;&amp;#039;lives&amp;#039;&amp;#039;&amp;#039; are usually easier to understand than unclear names such as &amp;#039;&amp;#039;&amp;#039;thing1&amp;#039;&amp;#039;&amp;#039;.&lt;br /&gt;
&lt;br /&gt;
[[File:Blockly Variables.png|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
This official Scratch Team video shows ways to use variables and lists in Scratch:&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=bwuwRFvNuW8|500|center}}&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Functions and Custom Blocks ==&lt;br /&gt;
&lt;br /&gt;
As projects grow, programmers often group useful instructions together. A [[English:Subroutine|function]] or custom block can give a name to a group of steps so that the same idea can be used again. For example, a custom block called &amp;#039;&amp;#039;&amp;#039;celebrate&amp;#039;&amp;#039;&amp;#039; might play a sound, change a costume, and show a message.&lt;br /&gt;
&lt;br /&gt;
This is an early form of &amp;#039;&amp;#039;&amp;#039;abstraction&amp;#039;&amp;#039;&amp;#039;: you can use a helpful idea without having to think about every small step each time.&lt;br /&gt;
&lt;br /&gt;
[[File:Blockly Functions.png|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Sprites, Stages, and Interaction ==&lt;br /&gt;
&lt;br /&gt;
In Scratch, a &amp;#039;&amp;#039;&amp;#039;sprite&amp;#039;&amp;#039;&amp;#039; is a programmable character or object. Sprites can move, change costumes, make sounds, detect other objects, and respond to events. The stage is the area where the project is shown.&lt;br /&gt;
&lt;br /&gt;
You can combine movement, loops, events, conditionals, and variables to build a game. For example, a character can jump when a key is pressed, repeatedly check whether it touches an obstacle, and change a score when it reaches a goal.&lt;br /&gt;
&lt;br /&gt;
[[File:Scratchblocks.png|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
Here is an official Scratch Team tutorial that turns several coding ideas into a jumping game:&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=1jHvXakt1qw|500|center}}&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Debugging and Improving Your Program =&lt;br /&gt;
&lt;br /&gt;
Programs do not always work correctly on the first try. &amp;#039;&amp;#039;&amp;#039;Debugging&amp;#039;&amp;#039;&amp;#039; means finding and fixing problems in code. A bug might come from an instruction in the wrong place, a loop that repeats too many times, a condition that never becomes true, or a variable that is changed at the wrong moment.&lt;br /&gt;
&lt;br /&gt;
A strong debugging routine is to test one part at a time. First, describe what you expected. Next, observe what actually happened. Then, inspect the blocks connected to that behavior. Change one thing, test again, and keep notes if the project is complicated.&lt;br /&gt;
&lt;br /&gt;
Errors are useful information. They show you where your idea and the computer&amp;#039;s actions are different. Good programmers test often instead of waiting until the whole project is finished.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Plan, Build, Test, Improve =&lt;br /&gt;
&lt;br /&gt;
A useful coding cycle is &amp;#039;&amp;#039;&amp;#039;plan, build, test, improve&amp;#039;&amp;#039;&amp;#039;. Start with a small goal. Build the simplest version that works. Test it with different inputs. Then improve the design, instructions, sounds, graphics, or rules.&lt;br /&gt;
&lt;br /&gt;
For a small game, you might first make one character move. Next, add an event that starts the game. Then add an obstacle, a condition that detects a collision, and a score variable. Finally, ask a classmate to play and explain anything that is confusing.&lt;br /&gt;
&lt;br /&gt;
[[File:SCRATCH BLOCK PLATFORMER.svg|500px|frameless|center]]&lt;br /&gt;
&lt;br /&gt;
This Code.org video introduces elementary computer science learning with a mix of digital and unplugged activities:&lt;br /&gt;
&lt;br /&gt;
{{#ev:youtube|https://www.youtube.com/watch?v=rNIM1fzJ8u0|500|center}}&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Block Coding and Text Coding =&lt;br /&gt;
&lt;br /&gt;
Block-based coding and text-based coding use many of the same ideas: sequences, loops, conditionals, variables, events, and reusable parts. The main difference is how the instructions are written and arranged.&lt;br /&gt;
&lt;br /&gt;
In block coding, the shapes and menus can help you see what fits together. In text coding, you type words and symbols using the rules of a programming language. Learning to think clearly about algorithms and program structure in blocks can prepare you to understand text code later.&lt;br /&gt;
&lt;br /&gt;
Remember that Blockly itself is a library used to build block-based editors; it is not a programming language by itself. Different tools built with blocks can use different commands and rules.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Creative and Responsible Coding =&lt;br /&gt;
&lt;br /&gt;
Coding is a creative activity. You can use it to tell stories, make art, model ideas from science, practice mathematics, create quizzes, build games, or control supported physical devices.&lt;br /&gt;
&lt;br /&gt;
When you share a project, protect personal information and follow your teacher&amp;#039;s or family&amp;#039;s rules for online accounts. Use images, sounds, and code that you are allowed to use. If you remix another person&amp;#039;s project, give credit when the platform or license requires it. Be respectful when giving feedback, and focus comments on how the project could become clearer, more interesting, or easier to use.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Interactive Tasks =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Quiz: Test Your Knowledge ==&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is the main purpose of a loop in a program?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(To repeat instructions)&lt;br /&gt;
(!To rename a sprite)&lt;br /&gt;
(!To draw a backdrop)&lt;br /&gt;
(!To delete every block)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is a sequence in coding?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(Instructions in the order they run)&lt;br /&gt;
(!A list of player names)&lt;br /&gt;
(!A collection of sound files)&lt;br /&gt;
(!A type of computer screen)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What can start an event-driven script?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(A key press)&lt;br /&gt;
(!A paper notebook)&lt;br /&gt;
(!A desk lamp)&lt;br /&gt;
(!A printed worksheet)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Which coding idea lets a program choose an action based on a condition?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(A conditional)&lt;br /&gt;
(!A costume)&lt;br /&gt;
(!A speaker)&lt;br /&gt;
(!A backdrop)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What does a variable do?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(It stores a value that can change)&lt;br /&gt;
(!It always stops the program)&lt;br /&gt;
(!It removes all events)&lt;br /&gt;
(!It turns every block into text)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is debugging?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(Finding and fixing problems in code)&lt;br /&gt;
(!Decorating a computer case)&lt;br /&gt;
(!Typing the same block many times)&lt;br /&gt;
(!Changing every sprite name)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is an algorithm?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(A clear set of steps for a task)&lt;br /&gt;
(!A computer monitor)&lt;br /&gt;
(!A type of background music)&lt;br /&gt;
(!A drawing tool only)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Why can block shapes be helpful?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(They show how code pieces can connect)&lt;br /&gt;
(!They guarantee every program is correct)&lt;br /&gt;
(!They remove the need to test)&lt;br /&gt;
(!They make all projects identical)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;Which variable name is clearest for points in a game?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(score)&lt;br /&gt;
(!thing)&lt;br /&gt;
(!xstuff)&lt;br /&gt;
(!unknown)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{MC}}&lt;br /&gt;
&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;What is a good way to test a project?&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
(Try different inputs and observe results)&lt;br /&gt;
(!Assume the first version works)&lt;br /&gt;
(!Change many things before testing)&lt;br /&gt;
(!Ignore unexpected behavior)&lt;br /&gt;
&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Memory Game ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;memo-quiz&amp;quot;&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| Sequence || Commands placed in the order they should happen&lt;br /&gt;
|-&lt;br /&gt;
| Loop || A structure that repeats instructions&lt;br /&gt;
|-&lt;br /&gt;
| Event || Something that happens and starts code&lt;br /&gt;
|-&lt;br /&gt;
| Variable || A named place that stores a changing value&lt;br /&gt;
|-&lt;br /&gt;
| Conditional || A structure that chooses an action using a true or false test&lt;br /&gt;
|-&lt;br /&gt;
| Debugging || The process of finding and fixing problems&lt;br /&gt;
|}&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Drag and Drop ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;lueckentext-quiz&amp;quot;&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! Match the correct terms.&lt;br /&gt;
! Topic&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;repeat block&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Runs code again&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;if block&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Makes a decision&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;event block&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Starts code after something happens&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;variable block&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Stores changing information&lt;br /&gt;
|-&lt;br /&gt;
| &amp;#039;&amp;#039;&amp;#039;motion block&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
| Changes a character position&lt;br /&gt;
|}&lt;br /&gt;
{{E}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
...&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Crossword Puzzle ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;div class=&amp;quot;kreuzwort-quiz&amp;quot;&amp;gt;&lt;br /&gt;
{|&lt;br /&gt;
|-&lt;br /&gt;
| Algorithm || What do we call a clear set of steps for solving a problem?&lt;br /&gt;
|-&lt;br /&gt;
| Sequence || What do we call instructions placed in the order they run?&lt;br /&gt;
|-&lt;br /&gt;
| Variable || What stores a named value that can change?&lt;br /&gt;
|-&lt;br /&gt;
| Debugging || What is the process of finding and fixing program mistakes?&lt;br /&gt;
|-&lt;br /&gt;
| Sprite || What is a programmable character or object in Scratch?&lt;br /&gt;
|-&lt;br /&gt;
| Loop || What structure repeats instructions?&lt;br /&gt;
|}&lt;br /&gt;
{{E}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== LearningApps ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe&amp;gt; https://learningapps.org/index.php?s=Block-Based+Coding &amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
== Cloze Text ==&lt;br /&gt;
&lt;br /&gt;
&amp;lt;quiz display=simple&amp;gt;&lt;br /&gt;
{&amp;#039;&amp;#039;&amp;#039;Complete the text.&amp;#039;&amp;#039;&amp;#039;&amp;lt;br&amp;gt;&lt;br /&gt;
|type=&amp;quot;{}&amp;quot;}&lt;br /&gt;
In block-based coding, you build a program by connecting visual { blocks }. The order in which instructions run is called a { sequence }. A clear plan of steps for solving a problem is an { algorithm }. An { event } can start a script when something happens. A { loop } repeats instructions without copying the same code again and again. A { conditional } checks a situation and helps the program choose what to do. A { variable } stores information that may change while the program runs. Finding and fixing problems in a program is called { debugging }.&lt;br /&gt;
&amp;lt;/quiz&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Open-Ended Tasks =&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
=== Easy ===&lt;br /&gt;
# [[English:Sequence Challenge|Sequence Challenge]]: Write six simple instructions for moving a classroom object from one safe place to another, then ask a partner to follow the sequence exactly and improve any unclear step.&lt;br /&gt;
# [[English:Loop Art|Loop Art]]: Use a block-based editor to create a repeating movement or drawing pattern, then explain which instructions are inside the loop and why.&lt;br /&gt;
# [[English:Debugging Detective|Debugging Detective]]: Take a small block program that does not behave as expected, identify one likely bug, test one change, and record what happened.&lt;br /&gt;
# [[English:Coding Storyboard|Coding Storyboard]]: Draw a four-panel storyboard for a short animation and label the event, movement, sound, or message that should happen in each scene.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
=== Standard ===&lt;br /&gt;
# [[English:Interactive Story Project|Interactive Story Project]]: Build a short interactive story with at least two sprites, one event, one loop, and one conditional, then ask a classmate to test the choices.&lt;br /&gt;
# [[English:Game Score System|Game Score System]]: Create a simple game in which a variable stores the score, explain exactly when the score changes, and test whether it works after restarting the game.&lt;br /&gt;
# [[English:Class Coding Interview|Class Coding Interview]]: Interview a classmate, teacher, family member, or local technology worker about how they solve problems with digital tools, then summarize two ideas that connect to algorithms or debugging.&lt;br /&gt;
# [[English:Unplugged Algorithm Test|Unplugged Algorithm Test]]: Design a paper-based maze or movement challenge, write an algorithm for solving it, let two people test the instructions, and revise the algorithm using their feedback.&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
=== Advanced ===&lt;br /&gt;
# [[English:Maze Game Design|Maze Game Design]]: Build a maze or obstacle game that combines events, loops, conditionals, and at least one variable, then create a short test plan for unusual player actions.&lt;br /&gt;
# [[English:Block-to-Text Comparison|Block-to-Text Comparison]]: Choose a small block program and rewrite its logic as clear pseudocode or beginner-friendly text code, then compare what is easy to see in each version.&lt;br /&gt;
# [[English:Coding Tutorial Video|Coding Tutorial Video]]: Record a short tutorial video that teaches one coding concept such as loops, events, variables, or debugging, using your own example and a clear explanation.&lt;br /&gt;
# [[English:Coding Exhibition|Coding Exhibition]]: Visit a school makerspace, computer lab, robotics club, or digital exhibition with teacher or family permission, observe one coded system, and create a poster or slide explaining how sequences, decisions, repetition, or stored data might be involved.&lt;br /&gt;
&lt;br /&gt;
{{:Open Task - Create a MOOC}}&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Learning Assessment =&lt;br /&gt;
&lt;br /&gt;
# [[English:Algorithm Reasoning|Algorithm Reasoning]]: Explain why changing the order of two instructions can change a program&amp;#039;s result, and give a block-coding example.&lt;br /&gt;
# [[English:Loop Application|Loop Application]]: Redesign a repeated sequence so that it uses a loop, then explain how the change improves the program.&lt;br /&gt;
# [[English:Conditional Transfer|Conditional Transfer]]: Create a real-life if-then rule and show how the same reasoning could control a choice in a game or interactive story.&lt;br /&gt;
# [[English:Variable Analysis|Variable Analysis]]: Describe a project that needs a variable, state what value it stores, and explain when that value should change.&lt;br /&gt;
# [[English:Debugging Evidence|Debugging Evidence]]: Present a bug you found, the test you performed, the change you made, and evidence that the new version works better.&lt;br /&gt;
# [[English:Project Reflection|Project Reflection]]: Show a finished block-based project and explain how at least three programming concepts work together to create the final behavior.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Evidence of Learning =&lt;br /&gt;
&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Knowledge:&amp;#039;&amp;#039;&amp;#039; You can explain algorithms, sequences, events, loops, conditionals, variables, sprites, and debugging using your own examples.&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Skills:&amp;#039;&amp;#039;&amp;#039; You can plan a small program, connect blocks in a sensible structure, test different inputs, trace what happens, and improve faulty code.&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Products:&amp;#039;&amp;#039;&amp;#039; You can produce a working animation, story, game, drawing, quiz, or similar block-based project that uses several coding concepts.&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Communication:&amp;#039;&amp;#039;&amp;#039; You can describe how your program works, give useful feedback on another project, and document at least one change made after testing.&lt;br /&gt;
# &amp;#039;&amp;#039;&amp;#039;Transfer:&amp;#039;&amp;#039;&amp;#039; You can recognize the same ideas in another block-based tool, in pseudocode, in beginner text code, or in a real-world step-by-step process.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= OERs on the Topic =&lt;br /&gt;
&lt;br /&gt;
The following free resources can help you continue learning with examples, tutorials, and creative projects:&lt;br /&gt;
&lt;br /&gt;
# [https://scratchfoundation.org/learn/learning-library Scratch Foundation Learning Library]: Activities, coding cards, videos, and project ideas for learning with Scratch.&lt;br /&gt;
# [https://scratch.mit.edu/ideas Scratch Ideas]: Beginner-friendly Scratch tutorials and project starters.&lt;br /&gt;
# [https://developers.google.com/blockly Blockly Docs]: Explanations of visual blocks and the Blockly library used to build block-based editors.&lt;br /&gt;
# [https://code.org/en-US/students/elementary Code.org Elementary Learning]: Free coding activities and courses for young learners.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;iframe&amp;gt; https://en.m.wikipedia.org/wiki/Visual_programming_language &amp;lt;/iframe&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= Linked Learning Areas =&lt;br /&gt;
&lt;br /&gt;
Block-based coding connects computer science with mathematics, English, art, design, science, and problem solving. A game can use coordinates and variables from mathematics. An interactive story uses planning, dialogue, and audience awareness from English. Digital art uses patterns, repetition, and geometry. A science model can use rules and variables to represent change. Across all of these areas, you practice [[English:Computational thinking|computational thinking]] by breaking a problem into smaller parts, noticing patterns, designing steps, testing results, and improving your solution.&lt;br /&gt;
&lt;br /&gt;
{| align=center&lt;br /&gt;
{{:D-Tab}}&lt;br /&gt;
&amp;#039;&amp;#039;&amp;#039;[[English:Block-Based Coding|Block-Based Coding]]&amp;#039;&amp;#039;&amp;#039;&lt;br /&gt;
# [[English:Algorithm|Algorithm]]&lt;br /&gt;
# [[English:Sequence|Sequence]]&lt;br /&gt;
# [[English:Loop (computing)|Loops]]&lt;br /&gt;
# [[English:Conditional (computer programming)|Conditionals]]&lt;br /&gt;
# [[English:Variable (computer science)|Variables]]&lt;br /&gt;
# [[English:Event-driven programming|Events]]&lt;br /&gt;
# [[English:Debugging|Debugging]]&lt;br /&gt;
# [[English:Computational thinking|Computational thinking]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
{{BR}}&lt;br /&gt;
= aiMOOC Projects =&lt;br /&gt;
[[Category:English]]&lt;br /&gt;
[[Category:Block-Based Coding]]&lt;br /&gt;
[[Category:Computer Science]]&lt;br /&gt;
[[Category:Programming]]&lt;br /&gt;
[[Category:Digital Literacy]]&lt;br /&gt;
[[Category:Grades 5-6]]&lt;br /&gt;
[[Category:AI_MOOC]]&lt;br /&gt;
[[Category:GPT aiMOOC]]&lt;br /&gt;
{{MT}}&lt;/div&gt;</summary>
		<author><name>Glanz</name></author>
	</entry>
</feed>