Print multiplication table for a given number Introduction Loops are essential programming constructs that allow repetitive execution of code based on conditions. They help automate repetitive tasks, perform calculations, and develop scalable programs efficiently. In this lesson, we focus on…
Projects
Print numbers 1–10 using for loop
Print numbers 1–10 using for loop Introduction Loops are fundamental constructs in programming that allow a block of code to execute repeatedly based on certain conditions. In this lesson, we will focus on the for loop, which is widely used…
Virtual Yoga Assistant using PoseNet
Virtual Yoga Assistant using PoseNet Introduction In an era where health and wellness have become integral parts of daily life, technology has stepped in to make fitness more accessible, interactive, and personalized. The Virtual Yoga Assistant using PoseNet is an…
Real-Time Object Detection App in Flask and YOLO
Real-Time Object Detection App in Flask and YOLO Introduction In the rapidly evolving world of Artificial Intelligence, real-time object detection has become one of the most impactful technologies across industries such as security, transportation, retail, and manufacturing. The ability to…
Interactive Knowledge Base using Hashbrown
Interactive Knowledge Base using Hashbrown Introduction In the modern digital age, organizations and institutions generate vast amounts of information daily. Managing, accessing, and updating this knowledge efficiently has become a vital challenge for businesses, universities, and government agencies alike. Traditional…
Grade Classification in CSharp
Grade Classification in CSharp Introduction of the Lesson In programming, decision-making is one of the most powerful concepts. It allows a program to react differently based on given conditions—just like how teachers classify student grades. In this lesson, you will…
Simple Discount Calculator Based on Purchase Amount
Simple Discount Calculator Based on Purchase Amount Introduction Discounts are an important concept in both programming and business. In retail or online shopping, discounts help customers save money and encourage more purchases. In this lesson, you’ll learn how to create…
Login Simulation in CSharp
Login Simulation (Username and Password Check) Introduction In modern software development, user authentication is one of the most essential features. Whether you’re logging into your email, social media, or online banking, programs often require you to enter a username and…
Day of the Week Using Switch
Day of the Week Using Switch Introduction In programming, we often need to make decisions based on a specific value. The switch statement in C# is a powerful tool for this purpose—it allows your program to choose from multiple options…
Check if a Number is Positive, Negative, or Zero
Check if a Number is Positive, Negative, or Zero Introduction In this lesson, we will explore how to use conditional statements in C# to determine whether a number is positive, negative, or zero. Conditional statements allow your program to make…