✕ Clear all filters
20 articles
▶ Videos →

📰 Dev.to · Harini

20 articles · Updated every 3 hours · View all reads

All Articles 119,435Blog Posts 126,581Tech Tutorials 30,612Research Papers 23,724News 17,332 ⚡ AI Lessons
String Manipulation in Python
Dev.to · Harini ⚡ AI Lesson 3mo ago
String Manipulation in Python
What is a String? A string is a sequence of characters used to store text in a program. Characters...
Return Types in Java
Dev.to · Harini 🔧 Backend Engineering ⚡ AI Lesson 3mo ago
Return Types in Java
What is a Return Type? A return type is the data type of the value that a method sends back to the...
Global Variables vs Local Variables in Java
Dev.to · Harini 🔧 Backend Engineering ⚡ AI Lesson 3mo ago
Global Variables vs Local Variables in Java
When learning Java, one of the most important concepts to understand is how variables work. Among...
Python vs Java vs JavaScript: Complete Beginner-Friendly Comparison
Dev.to · Harini ⚡ AI Lesson 3mo ago
Python vs Java vs JavaScript: Complete Beginner-Friendly Comparison
What is Python? Python is a high-level programming language known for its simplicity and...
Unlocking the Logic Behind Neon, Strong & Perfect Numbers
Dev.to · Harini 🔢 Mathematical Foundations ⚡ AI Lesson 3mo ago
Unlocking the Logic Behind Neon, Strong & Perfect Numbers
1. Neon Number A Neon Number is a number where: Sum of digits of its square = the number...
Understanding Static and Non-Static Variables in Java
Dev.to · Harini 🔧 Backend Engineering ⚡ AI Lesson 3mo ago
Understanding Static and Non-Static Variables in Java
Java is an object-oriented programming language where variables play a crucial role in storing and...
Sum, Count, and Reverse of Digits in Python (While Loop & Recursion)
Dev.to · Harini ⚡ AI Lesson 3mo ago
Sum, Count, and Reverse of Digits in Python (While Loop & Recursion)
1. Sum of digits Iterative Approach (Using While Loop) no = int(input("Enter No: ")) sum =...
Primitive Data Types in Java (With Examples)
Dev.to · Harini 🔧 Backend Engineering ⚡ AI Lesson 3mo ago
Primitive Data Types in Java (With Examples)
In Java, primitive data types are the most basic building blocks of data. They store simple values...
Understanding Object-Oriented Programming (OOP) Concepts
Dev.to · Harini 🏗️ Systems Design & Architecture ⚡ AI Lesson 3mo ago
Understanding Object-Oriented Programming (OOP) Concepts
Object-Oriented Programming (OOP) is one of the most widely used programming paradigms in modern...
10 Simple Recursion Programs in Python
Dev.to · Harini 📐 ML Fundamentals ⚡ AI Lesson 3mo ago
10 Simple Recursion Programs in Python
What is Recursion? Recursion is a technique where a function calls itself to solve a smaller version...
Recursion in Python: Factorial with Debugging Explained
Dev.to · Harini 📐 ML Fundamentals ⚡ AI Lesson 3mo ago
Recursion in Python: Factorial with Debugging Explained
What is Recursion? Recursion is a technique where a function calls itself to solve a problem step by...
Features of Java
Dev.to · Harini 🔧 Backend Engineering ⚡ AI Lesson 3mo ago
Features of Java
Java is one of the most popular programming languages in the world. It is widely used for building...
Debugging in Java: Practice with 10 Errors in a Simple Program
Dev.to · Harini 🔧 Backend Engineering ⚡ AI Lesson 3mo ago
Debugging in Java: Practice with 10 Errors in a Simple Program
When learning Java, writing code is just one part. The real skill comes from debugging errors. Error...
Introduction to Java: History, Architecture and Servers
Dev.to · Harini ⚡ AI Lesson 3mo ago
Introduction to Java: History, Architecture and Servers
What is Java? Java is a high-level, object-oriented programming language used to build software like...
Basic Programs in Python,Java & JavaScript: Smallest Number, Prime Number, and GCD
Dev.to · Harini 🔧 Backend Engineering ⚡ AI Lesson 3mo ago
Basic Programs in Python,Java & JavaScript: Smallest Number, Prime Number, and GCD
Finding the Smallest Number Among Three Using Ternary Operator What is a Ternary Operator? A...
Divisors, Count of Divisors and Prime Numbers
Dev.to · Harini 🔢 Mathematical Foundations ⚡ AI Lesson 3mo ago
Divisors, Count of Divisors and Prime Numbers
What is a Divisor? A divisor is a number that divides another number completely without leaving a...