Multiple Choice
Not Set
Qনিচের কোনটি একটি Character Constant?
ID: #24893
SEMESTER – I - COMS - Unit – 3 Introduction to C: Basic Structure
14 views
Question Info
#24893Q ID
Not SetDifficulty
SEMESTER – I - COMS - Unit – 3 Introduction to C: Basic StructureTopic
Your Answer
Select All That Apply
Tick every correct option, then press Check Answer.
Correct Answer
Explanation
Character Constant হলো Single Quotation (' ') এর ভিতরে লেখা একটি মাত্র Character।
উদাহরণ:
- 'A'
- 'B'
- '5'
- '@'
এখানে 'A' একটি Character Constant।
অন্য অপশনগুলো ভুল কারণ:
- "A" → এটি String Constant
- A → এটি Identifier হিসেবে গণ্য হতে পারে
- 65 → এটি Integer Constant
উদাহরণ:
char grade = 'A';
এখানে:
- char → Character Data Type
- 'A' → Character Constant
Continue Practice
Share
Share This Question
Challenge a friend or share with your study group.
More from This Topic