All
Articles 109,528Blog Posts 120,414Tech Tutorials 27,851Research Papers 22,435News 16,513
⚡ AI Lessons

Dev.to · Sasireka
2mo ago
Pincode, Phone number, and Gmail Validation Programs in Python
1) Pincode Validation regions = { 1: "Delhi", 2: "Uttar Pradesh & Uttarakhand", 3:...

Dev.to · Sasireka
2mo ago
Waterfall and V models
1) What is Waterfall model? The Waterfall Model is a traditional software development...

Dev.to · Sasireka
⚡ AI Lesson
2mo ago
Constructor in Javascript
What is a Constructor in JavaScript? A constructor is a special function that creates and...

Dev.to · Sasireka
🔧 Backend Engineering
⚡ AI Lesson
2mo ago
ASCII Values of Each Character in JavaScript
What is ASCII? ASCII (American Standard Code for Information Interchange) is a, standard...

Dev.to · Sasireka
⚡ AI Lesson
2mo ago
Method Overloading in Java
1) What is Method? In Java, a method is a block of code that performs a specific task and only runs...

Dev.to · Sasireka
🔧 Backend Engineering
⚡ AI Lesson
2mo ago
Methods in Java
1) Void Method (No Return Value) public class Home{ public static void main(String[] args){ ...

Dev.to · Sasireka
📐 ML Fundamentals
⚡ AI Lesson
2mo ago
String Manipulation in Python
What is String? A String is a sequence of characters (letters, numbers, symbols) written...

Dev.to · Sasireka
🔧 Backend Engineering
⚡ AI Lesson
2mo ago
Return Types in Java
Return Type in Java In Java, the return type means what kind of value a method gives back...

Dev.to · Sasireka
📐 ML Fundamentals
⚡ AI Lesson
3mo ago
Pattern-based Programs
1) 1 2 3 4 5 6 -> 5 6 3 4 1 2 Python reverse = 0 no = 123456 while no>0: reverse =...

Dev.to · Sasireka
📐 ML Fundamentals
⚡ AI Lesson
3mo ago
Static and Non-Static Variables in Java
In Java, variables are mainly categorized into two main types based on their working and memory...

Dev.to · Sasireka
🔧 Backend Engineering
⚡ AI Lesson
3mo ago
Datatypes in Java
Datatypes in java Java is a statically-typed language, meaning every variable must be...

Dev.to · Sasireka
📐 ML Fundamentals
⚡ AI Lesson
3mo ago
Programs in Recursion and Loop
What is Recursion? Recursion is a programming technique where a function calls itself...

Dev.to · Sasireka
⚡ AI Lesson
3mo ago
Oop(Object-Oriented Programming) in Java
What is Oop? Oop(Object-Oriented Programming) is a method of programming where we...

Dev.to · Sasireka
⚡ Algorithms & Data Structures
⚡ AI Lesson
3mo ago
Recursion Programs
What is Recursion? Recursion is a programming technique where a function calls itself to solve a...

Dev.to · Sasireka
3mo ago
Debugging
1) What Does Debugging Mean? In programming, debugging refers to the process of detecting and...

Dev.to · Sasireka
⚡ AI Lesson
3mo ago
Features of Java
Java is a high-level, platform-independent programming language used to develop secure and scalable...

Dev.to · Sasireka
📐 ML Fundamentals
⚡ AI Lesson
3mo ago
Recursion
Recursion is a method where a function calls itself repeatedly until a stopping condition is...

Dev.to · Sasireka
📐 ML Fundamentals
⚡ AI Lesson
3mo ago
Sum of numbers, Factorial, and LCM
1)Sum of first n numbers Flowchart Python sum = 0 no = 1 while no <= 10: sum =...
DeepCamp AI