✕ Clear all filters
15 articles

📰 Dev.to · Arul .A

15 articles · Updated every 3 hours · View all reads

All Articles 83,547Blog Posts 106,014Tech Tutorials 20,453Research Papers 17,848News 14,028 ⚡ AI Lessons
Scripting vs Programming Languages - What Actually Matters?
Dev.to · Arul .A 2mo ago
Scripting vs Programming Languages - What Actually Matters?
Basically, all scripting languages are programming languages. The main theoretical difference is that...
What is File Handling?
Dev.to · Arul .A 2mo ago
What is File Handling?
What is File Handling : File handling refers to the process of creating, reading, writing,...
“Core Number Programs Every Programmer Should Know: Emirp, Strong, Perfect & Neon”
Dev.to · Arul .A 2mo 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...
How to Encrypt Numbers by Reordering Digits
Dev.to · Arul .A 2mo 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 ...
Crack Number Problems: Sum of Digits, Count, and Reverse
Dev.to · Arul .A 2mo ago
Crack Number Problems: Sum of Digits, Count, and Reverse
Introduction : When you start programming, most people jump into big concepts and ignore the...
"A beginner-friendly breakdown of the two errors every developer faces"
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...
Understanding Recursion Through Simple and Clear Examples
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: ...
What is Low Code Tools?What are the tools?
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...
What is React?
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...
How to install a react JS in your Computer?
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...
Difference Between conditions and loops?
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...