Tangible Online Coding Club
Join us as we explore the exciting world of coding, where creativity meets technology. Our club offers a supportive environment for learners to enhance their coding skills.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a47087babdc9183b8c1535_C%23%20Coding%20Club%20-%2001.avif)
Welcome to C# coding Club Part 1
Welcome to C# Coding Club introducing C# basics using an Android app. Debugging tips and functions are explained for beginners.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a470a254edee283b3ec96b_C%23%20Coding%20Club%20-%2002.avif)
C# Coding Club Makes Code Fun Part 2
In the "C# Coding Club Makes Code Fun Part 2" YouTube video, the host introduces Scratch programming.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a470bf857a24b0e1bfe203_C%23%20Coding%20Club%20-%2003.avif)
C# Coding Club Reviews We make coding fun
C# Coding Club offers a valuable experience for students, teaching them coding skills and fostering critical thinking. Participants speak highly of the program’s impact on their academic and career goals.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a470e965dbbff6464150db_C%23%20Coding%20Club%20-%2004.avif)
Week 01 - Lesson 01
The instructor teaches the use of the console.writeline statement in C# programming for displaying output on the computer screen.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a47104052d68ed955160ec_C%23%20Coding%20Club%20-%2005.avif)
Week 01 - Lesson 02
The video provides a detailed explanation of the process of reading user input from the console using console.readline and emphasizes the importance of providing clear prompts for user input.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a4711a76f7dea2e51810bb_C%23%20Coding%20Club%20-%2006.avif)
Week 01 - Lesson 03
This video demonstrates how to use variables as placeholders in code to dynamically display values.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a4712f06f931cc32baf0b2_C%23%20Coding%20Club%20-%2007.avif)
Week 02 - Lesson 01
The video explains that variables are crucial components in programming and consist of a name, type, and value. It delves into the process of declaring variables and initializing them with values.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a47161a66c1081c95afb4f_C%23%20Coding%20Club%20-%2008.avif)
Week 02 - Lesson 02
In the video, the speaker explains the importance of assigning values with single and double quotes in char and string variables. They also touch upon using int data type for integers and mention other data types available for storing numerical values.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a4716fe115f8b6daf063e2_C%23%20Coding%20Club%20-%2009.avif)
Week 02 - Lesson 03
The video introduces the five main operators in C# for expressions: addition, subtraction, multiplication, division, and remainder, along with the assignment statement.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a47184babdc9183b8d23ed_C%23%20Coding%20Club%20-%2010.avif)
Week 02 - Lesson 04
The video delves into how division is handled with integers in C sharp programming, emphasizing the importance of understanding decimal truncation.
Downloads
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a4726d052d68ed9552b869_C%23%20Coding%20Club%20-%2011.avif)
Week 03 - Lesson 01
This video introduces the boolean data type in C#, which deals with values of true or false. It explains boolean expressions that evaluate to true or false based on conditions like greater than or less than.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a4727f95f6e31699fb0f0f_C%23%20Coding%20Club%20-%2012.avif)
Week 03 - Lesson 02
In programming, constants are fixed values that do not change during program execution, like setting a fixed price for a pie.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a4728ba79dcc1926015b3e_C%23%20Coding%20Club%20-%2013.avif)
Week 03 - Lesson 03
The video explains how identifying words like 'if' or 'otherwise' in a question signals the use of an if statement in coding. It emphasizes understanding the condition that determines the outcome of the choice, such as checking if one amount is greater than another.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a472afb0b3fe689f542d33_C%23%20Coding%20Club%20-%2014.avif)
Week 03 - Lesson 04
The video provides a comprehensive introduction to the basics of the 'if' statement in programming. It explains the key components of the 'if', 'else if', and 'else' statements, emphasizing how conditions are evaluated to true or false.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a472d3cd3331cd0beac836_C%23%20Coding%20Club%20-%2015.avif)
Week 04 - Lesson 01
The video introduces the switch statement as a tool to simplify code logic by replacing nested if statements, making it easier to trigger specific actions based on user inputs.
![](https://cdn.prod.website-files.com/673da7424dac3b0790479050/67a475b7865a233c4eca2940_C%23%20Coding%20Club%20-%2016.avif)
Week 04 - Lesson 02
The video explains the key aspects of using switch statements in C#. It emphasizes the importance of including a 'break' statement after each case to avoid unintended behavior like falling through to the next case.