Single Choice Easy

Qনিচের Python program-টির output কী হবে? print("Hello World")

ID: #26593 কীওয়ার্ড (Keywords) in Python 5 views
Question Info
#26593Q ID
EasyDifficulty
কীওয়ার্ড (Keywords) in PythonTopic

Choose the Best Option

Click any option to instantly check if you're correct.

  • A Hello
  • B World
  • C Hello World
  • D কোনো output হবে না
Correct Answer

Explanation

print() হলো Python-এর একটি built-in function, যা কোনো লেখা, সংখ্যা বা value-কে screen-এ প্রদর্শন করতে ব্যবহৃত হয়। এখানে "Hello World" quotation mark-এর মধ্যে রয়েছে, তাই এটি একটি String হিসেবে বিবেচিত হবে।

প্রোগ্রামটি কার্যকর করার সময় print() ফাংশনটি "Hello World" string-টিকে output হিসেবে প্রদর্শন করবে। Quotation mark output-এর অংশ হিসেবে প্রদর্শিত হবে না। ফলে screen-এ Hello World দেখা যাবে।

Share This Question

Challenge a friend or share with your study group.

Related MCQ Questions