46 articles

📰 Dev.to · Sabin Sim

Articles from Dev.to · Sabin Sim · 46 articles · Updated every 3 hours · View all reads

All ⚡ AI Lessons (9011) ArXiv cs.AIDev.to · FORUM WEBForbes InnovationOpenAI NewsDev.to AIHugging Face Blog
29. C# (foreach Loop)
Dev.to · Sabin Sim 1mo ago
29. C# (foreach Loop)
in C# — Full Code First using System; class Program { static void Main() { ...
28. C# (Multidimensional Arrays)
Dev.to · Sabin Sim 1mo ago
28. C# (Multidimensional Arrays)
using System; class Program { static void Main() { char[,] board = { ...
27. C# (Arrays)
Dev.to · Sabin Sim 1mo ago
27. C# (Arrays)
using System; class Program { static void Main() { // 1) Declare + allocate (check...
26. C# (Loop Performance)
Dev.to · Sabin Sim 1mo ago
26. C# (Loop Performance)
0. The Real Goal of This Lesson Loops do not increase execution time additively. They...
25. C# (Nested Loop)
Dev.to · Sabin Sim 1mo ago
25. C# (Nested Loop)
0. The Real Goal of This Lesson In a nested loop, every single outer iteration triggers a...
24. C# (continue)
Dev.to · Sabin Sim 1mo ago
24. C# (continue)
0. The Real Goal of This Lesson continue means: Terminate the current iteration...
23. C# (break)
Dev.to · Sabin Sim 1mo ago
23. C# (break)
0. The Real Goal of This Lesson break is a mechanism that forces a loop to stop...
22. C# (do-while Loop)
Dev.to · Sabin Sim 1mo ago
22. C# (do-while Loop)
Goal Keep asking the user: “Enter a word longer than 10 letters.” Repeat until the...
21. C# (while Loop 2)
Dev.to · Sabin Sim 1mo ago
21. C# (while Loop 2)
Goal Ask the user to enter a word If the word length is less than 15 Keep appending...
20. C# (Infinite Loops)
Dev.to · Sabin Sim 1mo ago
20. C# (Infinite Loops)
0. The Real Goal of This Lesson A while loop repeats based on a condition, but what...
19. C# (while Loop)
Dev.to · Sabin Sim 1mo ago
19. C# (while Loop)
0. The Real Goal of This Lesson A while loop is a mechanism that sends execution flow...
18. C# (Loops)
Dev.to · Sabin Sim 1mo ago
18. C# (Loops)
0. The Real Goal of This Lesson This is not about syntax. The goal is to understand how...
17. C# (Char)
Dev.to · Sabin Sim 1mo ago
17. C# (Char)
0. The Real Goal of This Lesson “When you only need a single character, why should you...
16. C# (Switch Statement)
Dev.to · Sabin Sim 1mo ago
16. C# (Switch Statement)
0. The Real Goal of This Lesson This is not about learning syntax. The real goal is to...
15. C# (Project C: BMI Health Checker)
Dev.to · Sabin Sim 1mo ago
15. C# (Project C: BMI Health Checker)
Practicing Numeric Types, Arithmetic Precision & Range-Based Logic This project is designed to...
14. C# (Project B: The Gatekeeper)
Dev.to · Sabin Sim 1mo ago
14. C# (Project B: The Gatekeeper)
Project B: The Gatekeeper Practicing Boolean Logic & Nested...
13. C# (Project A : The Method Calculator)
Dev.to · Sabin Sim 1mo ago
13. C# (Project A : The Method Calculator)
A Small Project to Force Real Method Design This project is intentionally simple. But it...
12. C# (Exceptions)
Dev.to · Sabin Sim 2mo ago
12. C# (Exceptions)
0. The Real Goal of This Lesson The goal of this lesson is to physically understand one...
11. C# (Parsing)
Dev.to · Sabin Sim 2mo ago
11. C# (Parsing)
0. The Real Goal of This Lesson The goal of this lesson is not to memorize int.Parse. The...
10. C# (Static Typing vs Dynamic Typing)
Dev.to · Sabin Sim 2mo ago
10. C# (Static Typing vs Dynamic Typing)
0. The Real Goal of This Lesson This lesson is not about deciding whether static typing is...