✕ Clear all filters
18 articles
▶ Videos →

📰 Dev.to · Sasireka

18 articles · Updated every 3 hours · View all reads

All Articles 109,528Blog Posts 120,414Tech Tutorials 27,851Research Papers 22,435News 16,513 ⚡ AI Lessons
Method Overloading in Java
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...
Methods in Java
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){ ...
String Manipulation in Python
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...
Return Types in Java
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...
Pattern-based Programs
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 =...
Static and Non-Static Variables in Java
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...
Datatypes in Java
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...
Programs in Recursion and Loop
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...
Oop(Object-Oriented Programming) in Java
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...
Recursion Programs
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...
Debugging
Dev.to · Sasireka 3mo ago
Debugging
1) What Does Debugging Mean? In programming, debugging refers to the process of detecting and...
Features of Java
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...
Recursion
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...
Sum of numbers, Factorial, and LCM
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 =...