CodingAcademy1's profile picture. Learn. Code. Grow. 💻
Empowering India’s next-gen coders through tutorials, compilers & quizzes. 🌐 http://codingacademyindia.com

Coding Academy

@CodingAcademy1

Learn. Code. Grow. 💻 Empowering India’s next-gen coders through tutorials, compilers & quizzes. 🌐 http://codingacademyindia.com

🧩 Quiz of the Day Python puzzle time! Guess the output: ```python x = [1, 2, 3] y = x y.append(4) print(x) ``` Is it magic, or just Python? 🤔 #CodeQuiz #DevLife


🧩 Quiz of the Day What's the output surprise? 😏 `let x = '5';` `let y = 3;` `console.log(x - y);` #CodeQuiz #DevLife


🧩 Quiz of the Day In JavaScript, what prints? `let x = [];` `x[100] = 'foo';` `console.log(x.length);` Think you know? 🤔 #CodeQuiz #DevLife


🧩 Quiz of the Day What's the output? 🤔 `print("Hello" * 0)` Guess it right! 🎯 #CodeQuiz #PythonFun


🧩 Quiz of the Day Check out this JavaScript quirk: `let a = 0.1 + 0.2;` `console.log(a == 0.3);` What's the output? 🤔 #CodeQuiz #DevLife


🧩 Quiz of the Day: What's the output? `x = '5'` `y = 5` Guess what `x + y` will do in JavaScript! 🤔 Drop your thoughts! #CodeQuiz #DevLife


🧩 Quiz of the Day Check this out: `let a = [];` `let b = [];` `console.log(a == b);` `console.log(a === b);` What do you think? Output surprise? 😏 #CodeQuiz #JavaScriptTrivia


```python 🧩 Quiz of the Day Predict the output! 🤔 `def mystery_func(x):` `return x * [1, 2, 3]` `print(mystery_func(0))` What prints? 🧐 #CodeQuiz #DevLife ```


🧩 Quiz of the Day What's the output surprise? 😏 `let x = '5';` `let y = 2;` `console.log(x + y);` #CodeQuiz #DevLife


🧩 Quiz of the Day What outputs in Python? 🤔 `a = [1, 2, 3]` `b = a` `b.append(4)` `print(a)` Output surprise? 😏 #CodeQuiz #DevLife


🧩 Quiz of the Day In Python, what prints? `x = [1, 2, 3]` `y = x` `y.append(4)` `print(x)` Output surprise? 😏 #CodeQuiz #DevLife


🧩 Quiz of the Day Can you predict the output? 🤔 `let x = '4';` `let y = x + 2;` `let z = y - 1;` `console.log(z);` What does `z` log? #CodeQuiz #DevLife


🧩 Quiz of the Day What's the output? 🤔 `let x = 10;` `console.log(++x);` `console.log(x++);` `console.log(x);` Can you guess? 😏 #CodeQuiz #DevLife


🧩 Quiz of the Day What's the output? 🤔 `nums = [1, 2, 3, 4, 5]` `print(nums[:3] + nums[3:])` Any surprises here? 😏 #CodeQuiz #PythonFun #DevLife


🧩 Quiz of the Day What's the output surprise? 😏 `int x = 5;` `int y = x++ + ++x;` `System.out.println(y);` #CodeQuiz #DevLife


🧩 Quiz of the Day What's the output? `let x = '5';` `let y = 2;` `console.log(x - y);` Can you guess? 🤔 #CodeQuiz #DevLife


🧩 Quiz of the Day What prints? `list1 = [1, 2, 3]` `list2 = list1` `list2.append(4)` `print(list1)` Can you guess the output? 🤔 #CodeQuiz #DevLife


🧩 Quiz of the Day What's the output of this JavaScript snippet? 🤔 `const arr = [1, 2, 3];` `console.log(arr.map(x => x * 2).filter(x => x > 4).length);` Can you guess? 😏 #CodeQuiz #DevLife


```python 🧩 Quiz of the Day What's the output? `def mystery(val):` `return val * 2 if val % 2 == 0 else val + 1` `print(mystery(3))` Can you guess? 🤔 #CodeQuiz #DevLife ```


🧩 Quiz of the Day What's the output? 🤔 `var num = 5;` `console.log(num++ + ++num);` #CodeQuiz #DevLife


Loading...

Something went wrong.


Something went wrong.