📰 Dev.to · Arul .A
13 articles · Updated every 3 hours · View all reads
All
Articles 67,621Blog Posts 99,886Tech Tutorials 16,357Research Papers 13,813News 12,551
⚡ AI Lessons

Dev.to · Arul .A
1w ago
Difference Between JavaScript (.js) and JSX (.jsx)
JavaScript and JSX are closely related technologies used in modern web development, especially in...

Dev.to · Arul .A
1mo ago
What is Software Development Life Cycle?AGILE SDLC IN Real World?
Software Development Life Cycle : SDLC (Software Development Life Cycle) model is a structured,...

Dev.to · Arul .A
1mo ago
Scripting vs Programming Languages - What Actually Matters?
Basically, all scripting languages are programming languages. The main theoretical difference is that...

Dev.to · Arul .A
1mo ago
What is File Handling?
What is File Handling : File handling refers to the process of creating, reading, writing,...

Dev.to · Arul .A
1mo ago
“Core Number Programs Every Programmer Should Know: Emirp, Strong, Perfect & Neon”
1.EMIRP program : Definition: A number is called EMIRP .The given number is prime and also it...

Dev.to · Arul .A
1mo ago
How to Encrypt Numbers by Reordering Digits
1.123456 INTO 563412 : -In python : no=123456 rev=0 while no>0: rev=rev*100+no%100 ...

Dev.to · Arul .A
1mo ago
Crack Number Problems: Sum of Digits, Count, and Reverse
Introduction : When you start programming, most people jump into big concepts and ignore the...

Dev.to · Arul .A
2mo ago
"A beginner-friendly breakdown of the two errors every developer faces"
What is a Compile-Time Exception? A compile-time exception (also called a checked exception or...

Dev.to · Arul .A
2mo ago
Understanding Recursion Through Simple and Clear Examples
1.Reverse a Number : Flow Chart : -In python : def reverse_num(no, rev=0): if no == 0: ...

Dev.to · Arul .A
6mo ago
What is Low Code Tools?What are the tools?
The Low Code Tools are Software platforms that let you build applications using drag and drop...

Dev.to · Arul .A
6mo ago
What is React?
Today we discuss what is react first we all know who developed by react. It is developed by...

Dev.to · Arul .A
6mo ago
How to install a react JS in your Computer?
First we open the browser page and search the node.js install then click the first link and open and...

Dev.to · Arul .A
6mo ago
Difference Between conditions and loops?
Conditions: Chooses which block of code runs depending on a boolean result. Based on true/false...
DeepCamp AI