04/05/2026
๐ Career switch ya skill upgrade karna chahte ho?
เคฎเฅเค เคฒเฅเคเคฐ เค เคฐเคนเคพ เคนเฅเค Data Analytics Masterclass ๐ป
โ
Microsoft Excel
โ
SQL
โ
Microsoft Power BI
โ
Real Projects
โ
Beginner Friendly
โ
Live Doubt Support
๐ฏ Students | Job Seekers | Working Professionals ke liye
๐ฅ Founding Batch Offer: เคธเคฟเคฐเฅเคซ โน299
Seats Limited! โINTERESTEDโ comment karo ya DM karo ๐ฉ
YouTube channel!
https://www.youtube.com/
21/02/2026
๐ JavaScript Day 2 โ What is a Variable?
Today we learned one of the most important basics of JavaScript โ Variables ๐ป
๐ A variable is like a container that stores data.
For example:
โข Name = "Rahul"
โข Age = 22
โข City = "Delhi"
๐ In JavaScript, we create variables using:
โ
let โ value can be changed
โ
const โ fixed value (cannot be changed)
โ ๏ธ var โ old method (best to avoid)
Understanding variables is the first strong step toward becoming a programmer ๐ฅ
Follow the page to learn something new every day!
14/02/2026
Day 1/30 โ JavaScript Basics ๐ฅ
Today you learned:
โ What JavaScript is
โ How to show output
โ How to use the console
๐พ Save this post
๐ฌ Comment "DAY 1"
โ Follow
19/09/2025
๐ฐ Day-1 Python Banking Concept!
Letโs calculate Simple Interest & Total Payment using Python ๐๐ป
๐ In this program:
โ
User enters Principal, Rate, and Time
โ
Program calculates Simple Interest (SI)
โ
Displays the Total Payment (Principal + SI)
๐ Run this program and try with your own values.
Would you like me to share a version for Compound Interest next? ๐ฅ
Code Explanation
float(input()) โ Takes input as decimal (works for large & fractional values).
si = (p * r * t) / 100 โ Formula for simple interest.
net = p + si โ Adds principal and interest to get total amount.
print() โ Displays the result clearly.