✕ Clear all filters
15 articles
▶ Videos →

📰 Dev.to · Sasireka

15 articles · Updated every 3 hours · View all reads

All Articles 130,671Blog Posts 135,740Tech Tutorials 33,834Research Papers 25,434News 18,569 ⚡ AI Lessons
String Manipulation in Python
Dev.to · Sasireka 📐 ML Fundamentals ⚡ AI Lesson 3mo 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 3mo 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...
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 =...