Class VI Supplementary Notes on Block Coding
Class VI Supplementary Notes on Block Coding
CLASS VI
1. Introduction to Make Code Arcade
Make Code Arcade is a free, web-based platform developed by Microsoft that allows users to create retro-
style video games using block-based coding. It is designed for beginners and is ideal for students,
educators, and hobbyists.
Key Features:
Drag-and-drop coding blocks for ease of use.
Built-in simulator for testing games.
Transition options to JavaScript or Python for advanced coding.
Getting Started:
1. Visit Make Code Arcade.
2. Click on "New Project" to start building your project.
3. Choose the Blocks interface to begin coding with drag-and-drop tools.
5. Sum of N Numbers
To calculate the sum of the first n numbers.
Steps:
Create two variables: N and S.
Set N to any number (Ex: 5).
Set S to (N * (N + 1)) / 2 using arithmetic blocks.
Use splash to display “Sum of first N numbers: [S]”.
6. Swapping Values of Variables x and y Without Using a Third Variable
Step 1: Create two variables: x and y.
Step 2: Assign random values to x and y using the Set x to and set y to block
Step 3: Use arithmetic operations to swap the values:
o x = x + y (sum of x and y).
o y = x - y (new y becomes the original x).
o x = x - y (new x becomes the original y).
Step 4: Use the splash block to display the swapped values:
o "Value of x: " + x
o "Value of y: " + y
Conclusion
Make Code Arcade provides a user-friendly platform for learning programming concepts through fun and
engaging projects. It sets the foundation for programming, from printing "Hello, World!" to performing
arithmetic operations and building logic-based programs.