369 TESLAKALVIYOGI
Page 6 of 30

Output Statement

console.log, cout, print, echo comparison

</> logic
1

Concept Meaning

Output statements display results on the screen. Each language has a different command for showing output.

2

Real-Life Analogy

A notice board displays announcements. Output statements display program results.

3

Expected Output

Welcome
4

Common Mistake

Do not use the output command of one language in another language.

Same Logic • Different Syntax

Code in 4 Languages

JavaScript
console.log("Welcome");
C++
cout << "Welcome";
Python
print("Welcome")
PHP
<?php echo "Welcome"; ?>

Memory Tip

JS = console.log, C++ = cout, Python = print, PHP = echo.