All Coding Notes

Browse our programming notes and tutorials by language.

C++ from Scratch to Advance 15 topics

01

Introduction

Welcome, aspiring developers! You are embarking on a comprehensive C++ programming course designed to take you from a curious beginner...

Read
07

Statements in C++

C++ Statements Welcome to your C++ learning journey! This comprehensive guide provides detailed notes, designed to help you master the...

Read
10

Variables in C++

In our previous lessons, we explored basic statements and expressions, even building a multiplication table. However, you might have noticed...

Read
11

Data Types in C++

Welcome to your C++ journey! In our previous discussion, we explored how variables act as containers for data. Today, we...

Read
12

Operators in C++

Welcome back to your C++ journey! In our previous lessons, we explored how to store data using variables and data...

Read
13

Assignment Operator in C++

Welcome back to your C++ journey! In our previous lesson, we explored, operators (like athematic, relational, and assignment operators). Today,...

Read
14

Input Handling in C++

In our previous lessons, we learned how to display text using cout. Now, it’s time to make your programs interactive!...

Read
15

Control Statements in C++

Up until now, our programs have been like a straight road—they execute line-by-line from top to bottom. But what if...

1 subtopics
Read

React 6 topics

01

Introduction to React

React is a free, open-source JavaScript library built by Facebook (Meta) in 2013. It is used to build user interfaces...

3 subtopics
Read
02

React Components

React Components React Components – A Complete Beginner Guide React is a popular JavaScript library used to build modern and...

Read
03

What is JSX?

JSX is not HTML. It's also not a string. It's a syntax extension for JavaScript that gets transformed (by tools...

Read