LEVEL 1 · THINKING
Course Foundation
Programming thinking
Think like a programmer before you write serious code: break problems down, design algorithms in pseudocode and flowcharts, reason with logic and a little mathematics, and solve problems step by step.
0 of 18 lessons done
When you finish, you can
- Break a vague problem into small, concrete problems
- Name the inputs, outputs and edge cases of a problem before solving it
- Write an algorithm as pseudocode and as a flowchart
- Evaluate and simplify boolean conditions with truth tables and De Morgan's laws
- Use sets, percentages, sequences and counting to reason about data
- Explain why a broken algorithm fails, and fix it
You build: A notebook of solved problems, each reasoned in plain language and pseudocode before any code
MODULE 1
Start here
- 1Welcome to ZudoJS AcademyWhat ZudoJS Academy is, who it is for, its six tracks and 19 levels, the projects you build, how the pages work, and where you should start.15 min
- 2Your developer environmentMeet the tools a developer uses every day, the terminal, a code editor and the browser's developer tools, and learn to move around your files by typing commands.35 min
- 3How programs runWhat happens between the code you type and the result on the screen, what JavaScript engines and runtimes are, and the difference between a syntax error and a runtime error.25 min
- 4How the web worksFollow a request from your browser to a server and back, and learn what clients, servers, IP addresses, DNS, ports, HTTP, HTTPS, APIs and databases are.30 min
MODULE 2
Think like a programmer
- 5What programming isLearn what programs, instructions and algorithms are, see every program as input, processing and output, and solve a real problem with the problem-solving loop.40 min
- 6Breaking problems downSplit a problem as big as "build a bank" into pieces small enough to solve, order them by dependency, and build a money transfer from small, tested steps.40 min
- 7AlgorithmsLearn what makes a method an algorithm, the three shapes every algorithm is built from, and the everyday algorithms for searching, counting, filtering, transforming and sorting.45 min
- 8Pseudocode and flowchartsWrite an algorithm as pseudocode and as a flowchart, trace it by hand, find its missing paths, and translate it line by line into working JavaScript.45 min
- 9Reasoning about programsAsk what you know, what you assume and what must stay true, build edge-case tables, and use invariants to show a program works for every input, not just a few.50 min
MODULE 3
Logic and mathematical thinking
- 10Boolean logicReduce program decisions to true and false, combine them with AND, OR, NOT and XOR, and let a loop build truth tables that check every case for you.40 min
- 11Conditional reasoningTurn written business rules into exact conditions, invert and simplify them safely with De Morgan's laws, and restructure them as guard clauses that explain every refusal.45 min
- 12SetsReason about groups of things with sets: remove duplicates, test membership, and combine permissions, tags and mailing lists with union, intersection, difference and subsets.45 min
- 13Mathematical reasoningUse expressions, functions, equations, ratios and percentages to compute discounts, VAT and interest, and keep money exact by counting in kobo instead of decimals.50 min
- 14SequencesSpot the pattern in a list of numbers, compute arithmetic and geometric sequences with loops and formulas, and see why compound interest and exponential growth surprise people.45 min
- 15CountingCount things with loops and frequency tables, count possibilities with the multiplication principle, permutations and combinations, and see why trying every option quickly becomes impossible.45 min
MODULE 4
Problem-solving fundamentals
- 16Problem workshop: beginnerSolve ten everyday problems, from even or odd to a tax calculator, by reasoning about inputs, outputs and edge cases first, then coding and testing each one.55 min
- 17Problem workshop: intermediateSolve eight problems on lists of real data, from duplicate payments to stock levels, reasoning about edge cases and the amount of work first, then coding and testing.60 min
- 18Why doesn't this work?Diagnose broken algorithms that run without errors but give wrong answers, using trace tables, predictions and boundary tests, then fix each root cause.50 min
Course checkpoint
Prove you can move on. The checkpoint picks 20 questions at random from every lesson in this course. Get 16 right to pass. Your result is saved in this browser only.