Single Choice
Moderate
Qfor i in range(3):\n if i==1: continue\n print(i) — আউটপুট কী?
ID: #26345
Class - XII: SEMESTER – III: Unit – 1: Python Programming: Section 6: Flow of Control
0 views
Question Info
#26345Q ID
ModerateDifficulty
Class - XII: SEMESTER – III: Unit – 1: Python Programming: Section 6: Flow of ControlTopic
Your Answer
Choose the Best Option
Click any option to instantly check if you're correct.
Correct Answer
Explanation
সঠিক উত্তরের ব্যাখ্যা:
i==1 এ continue বাকি অংশ বাদ দেয়, তাই 0 ও 2 প্রিন্ট হয়, 1 বাদ যায়।
কেন অন্য বিকল্পগুলি ভুল:
- বিকল্প B: continue এর কারণে 1 বাদ যায়।
- বিকল্প C: 1 ঠিক সেই মান যা বাদ যায়।
- বিকল্প D: 0 ও 2 প্রিন্ট হয়।
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic