📰 Dev.to · Kesavarthini
Articles from Dev.to · Kesavarthini · 9 articles · Updated every 3 hours · View all reads
All
⚡ AI Lessons (10119)
ArXiv cs.AIDev.to · FORUM WEBForbes InnovationDev.to AIOpenAI NewsHugging Face Blog

Dev.to · Kesavarthini
3d ago
Functions in JS
What is a Function? A function in JavaScript is a reusable block of code designed to perform a...

Dev.to · Kesavarthini
6d ago
Looping Programs
1) Prime Number i)Finding whether the given number is prime or not: let num = 7; let isPrime =...

Dev.to · Kesavarthini
6d ago
Looping Statements in JS
Looping Statements in JavaScript Looping statements in JavaScript are used to repeat a block of...

Dev.to · Kesavarthini
1w ago
Scenario Based Questions-Conditional Statements in JS
1) Shopping Discount System let amount = 6000; let isMember = true; let discount = 0; if (amount...

Dev.to · Kesavarthini
1w ago
Decision Making in JavaScript
🔀 Decision Making in JavaScript Programs need to take decisions based on conditions, and JavaScript...

Dev.to · Kesavarthini
1w ago
Operators in JavaScript
📌 What are Operators? Operators are symbols used to perform operations on variables and values. 👉...

Dev.to · Kesavarthini
1mo ago
Polymorphism in Java
📌 What is Polymorphism? Polymorphism means “many forms.” In Java, polymorphism allows the same...

Dev.to · Kesavarthini
1mo ago
Inheritance in Java
What is Inheritance? Inheritance in Java is a feature where one class (child) can use the properties...

Dev.to · Kesavarthini
2mo ago
Constructors in Java
When creating an object in Java, we often want to initialize values at the time of object...
DeepCamp AI