O Level Exam : Practical Question
📝 HTML
🎨 CSS
⚡ Java Script
void setup() { Serial.begin(9600); // Start serial communication int count = 0; // Initialize counter while (count <= 10) { // While count is less than or equal to 10 Serial.println(count); count++; // Increment counter } } void loop() { // Empty loop (not needed for this task) }
▶ Run Code
🖥 Output: