C-15-Q127mediumsingle_mcq
The exact code given to print Hello World in this chapter is:
The exact code given to print Hello World in this chapter is:
- a
print('Hello World!') - b
echo 'Hello World!' - c
printf("Hello World!") - d
console.log('Hello World!')
ব্যাখ্যা
The exact statement shown is print('Hello World!'), using Python's print() function with the message in single quotes. The other options use syntax from shell, C, or JavaScript, not Python.