15 articles

📰 Dev.to · SILAMBARASAN A

Articles from Dev.to · SILAMBARASAN A · 15 articles · Updated every 3 hours · View all reads

All ⚡ AI Lessons (9465) ArXiv cs.AIDev.to · FORUM WEBForbes InnovationDev.to AIOpenAI NewsHugging Face Blog
Understanding Methods in Java
Dev.to · SILAMBARASAN A 5d ago
Understanding Methods in Java
When you write a Java program, you quickly run into a problem — you end up writing the same lines of...
Global vs local variables in Java
Dev.to · SILAMBARASAN A 6d ago
Global vs local variables in Java
When you write Java code, every variable has a home — a place where it lives and can be used. That...
EMIRP
Dev.to · SILAMBARASAN A 1w ago
EMIRP
Emirp Number – Explanation What is an Emirp Number? An Emirp number is a special type of...
Odd-Even Digit Rearrangement
Dev.to · SILAMBARASAN A 1w ago
Odd-Even Digit Rearrangement
div → Used to extract digits num → Used to check position (odd or even) rev1 → Stores digits from odd...
Number Reversal and Rotation using Recursion
Dev.to · SILAMBARASAN A 1w ago
Number Reversal and Rotation using Recursion
INPUT → 123456 OUTPUT → 654321 PYTHON : def sum1(no,reverse=0): if no>0: ...
Static vs Non-Static in JAVA
Dev.to · SILAMBARASAN A 1w ago
Static vs Non-Static in JAVA
Static vs Non-Static in Java When learning Java, one very important concept is Static vs...
DECIMAL NUMBERS
Dev.to · SILAMBARASAN A 1w ago
DECIMAL NUMBERS
Decimal – Simple Definition A decimal number is a number written using the base-10 system. ...
Primitive Data Types in Java
Dev.to · SILAMBARASAN A 1w ago
Primitive Data Types in Java
in Java, primitive data types are the most basic types of data. They store simple values (not...
RECURSION SUMS
Dev.to · SILAMBARASAN A 1w ago
RECURSION SUMS
1. PRINT 1 to 5 PYTHON CODE: def fact(i): if i<=5: print(i) ...
🔁 Recursion Debugging Flow
Dev.to · SILAMBARASAN A 1w ago
🔁 Recursion Debugging Flow
🔁 Recursion Debugging (Simple Explanation) Recursion debugging means finding and fixing errors in a...
Common Mistakes Java Beginners Makes
Dev.to · SILAMBARASAN A 2w ago
Common Mistakes Java Beginners Makes
✔️ Correct Code : public class Home{ public static void main (String[]...