📰 Dev.to · Vidya
26 articles · Updated every 3 hours · View all reads
All
Articles 75,939Blog Posts 102,390Tech Tutorials 18,522Research Papers 16,016News 13,174
⚡ AI Lessons

Dev.to · Vidya
1w ago
API
What is API? API stands for Application Programming Interface. It is a bridge that allows two...

Dev.to · Vidya
1mo ago
SDLC
What is SDLC? SDLC (Software Development Life Cycle) is a step-by-step process used to develop...

Dev.to · Vidya
1mo ago
Understanding IP Address in Simple Terms
What is an IP Address? An IP address (Internet Protocol address) is a unique number given...

Dev.to · Vidya
1mo ago
Self Introduction
Myself Vidya P. I completed my Bachelor’s degree in 2022 with a specialization in Electronics and...

Dev.to · Vidya
1mo ago
Constructor
What is Constructor? A constructor is a special method in a class that is used to...

Dev.to · Vidya
1mo ago
ASCII Value
Computers only understand numbers. So how do they handle letters, punctuation, and symbols? ASCII —...

Dev.to · Vidya
1mo ago
Scripting vs Programming Languages
When starting in software development, many learners get confused between scripting languages and...

Dev.to · Vidya
1mo ago
File Handling in Java and Important Methods
File Handling in Java File handling in Java is the process of creating, reading, writing, and...

Dev.to · Vidya
2mo ago
Strong,Perfect,Neon Number Programs
Strong Number A Strong Number is a number in which the sum of the factorials of its digits is...

Dev.to · Vidya
2mo ago
Twisted Reverse Number Programs
1. Reverse (output-563412) public class Encryp1 { static int rev = 0; public static void...

Dev.to · Vidya
2mo ago
Number Operations (Sum, Count, Reverse) Using Loop in Java
Sum of Digits java public class Main { public static void main(String[] args) { int...

Dev.to · Vidya
2mo ago
Exception Handling Keywords in Java
What is an Exception? An exception is an unwanted event that occurs during program...

Dev.to · Vidya
2mo ago
Compile-Time vs Run-Time Exceptions in Java
What is a Compile-Time Exception? A compile-time exception (also called a checked...

Dev.to · Vidya
2mo ago
Basic Recursion Programs
1.Sum of Digits Example: 123 → 1 + 2 + 3 = 6 --> add all digits of a number Enter...

Dev.to · Vidya
2mo ago
Debugging
Debugging Debugging is the process of finding, analyzing, and fixing errors (bugs) in a...

Dev.to · Vidya
2mo ago
Advantages of Exception Handling and Runtime Exception in java
Exception handling is a powerful mechanism in Java that allows developers to handle runtime errors in...

Dev.to · Vidya
2mo ago
Recursion Programs
Recursion Recursion is a programming concept where a function calls itself to solve a problem...

Dev.to · Vidya
2mo ago
Exception, Exception Handling
Exception An exception in Java is an unwanted or unexpected event that occurs during the...

Dev.to · Vidya
2mo ago
String Methods
1. trim() Removes extra spaces only at the beginning and end. Example String s="...

Dev.to · Vidya
2mo ago
LCM,Factorial,Sum of Numbers Program in three languages
LCM(Least Common Multiple) The Least Common Multiple (LCM) of two or more numbers is the...

Dev.to · Vidya
2mo ago
String in java
Definition A String in Java is a sequence of characters used to store text like names,...

Dev.to · Vidya
2mo ago
Ternary,GCD,Prime number in three languages
Ternary A ternary operator is a short form of an if-else statement that takes three parts (three...

Dev.to · Vidya
2mo ago
"Divisor, Divisor Count, and Prime Number Programs in Three Languages"
Divisor Count output output:5 Enter fullscreen mode Exit fullscreen mode ...

Dev.to · Vidya
2mo ago
What is an Object in Java?
In Java, an object is a real-world entity that has state and behavior. It is an instance of a class....
DeepCamp AI