- Home
- Chapter 1 - Object Oriented Programming Concepts
- Object Oriented Programming Concepts
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions
- Chapter 2 - Introduction to Java
- Introduction to Java
- Multiple Choice Questions
- Assignment Questions
- Chapter 3 - Values and Data Types
- Values and Data Types
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions
- Chapter 4 - Operators in Java
- Operators in Java
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions
- Chapter 5 - User-Defined Methods
- User-Defined Methods
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions
- Chapter 6 - Input in Java
- Input in Java
- Multiple Choice Questions
- Assignment Questions and Programs
- Chapter 7 - Mathematical Library Methods
- Mathematical Library Methods
- Multiple Choice Questions
- Assignment Questions
- Chapter 8 - Conditional Constructs in Java
- Conditional Constructs in Java
- Multiple Choice Questions
- Assignment Questions and Programs
- Chapter 9 - Iterative Constructs in Java
- Iterative Constructs in Java
- Multiple Choice Questions
- State whether the given statements are True or False
- Assignment Questions and Programs
- Chapter 10 - Nested for loops
- Nested for loops
- Assignment Questions and Programs
- Chapter 11 - Constructors
- Constructors
- Multiple Choice Questions
- Assignment Questions and Programs
- Chapter 12 - Library Classes
- Library Classes
- Multiple Choice Questions
- Assignment Questions
- Chapter 13 - Encapsulation and Inheritance
- Library Classes
- Multiple Choice Questions
- Assignment Questions
- Chapter 14 - Arrays
- Library Classes
- Multiple Choice Questions
- Assignment Questions
- Chapter 15 - String Handling
- Library Classes
- Multiple Choice Questions
- Assignment Questions
Values and Data Types
Chapter 3
Values and Data Types
Class 10 - Logix Kips ICSE Computer Applications with BlueJ
![]() Share with a Friend |
Multiple Choice Questions
Question 1
Java uses ........... character set.
- ASCII Only
- Extended ASCII Only
- Unicode ✔
- None of these
Question 2
ASCII stands for ...........
- American Standard Code for Information Interchange ✔
- American Simulated Code for Information Interchange
- American Standard Code for Interchange of Information
- American Standard Code for Interaction of Information
Question 3
ASCII is ...........
- 6-bit set of codes
- 8-bit set of codes
- 7-bit set of codes ✔
- 16-bit set of codes
Question 4
Extended ASCII is ...........
- 6-bit set of codes
- 8-bit set of codes ✔
- 7-bit set of codes
- 16-bit set of codes
Question 5
The smallest individual component in a program is called ...........
- Token ✔
- Identifier
- Keyword
- Method
Question 6
Which of the following is not a token?
- Keyword
- Identifier
- Operator
- Procedure ✔
Question 7
Which of the following is a keyword?
- character
- break ✔
- object
- attribute
Question 8
Which of the following is not a legal identifier?
- _room
- $PayAmount
- 10thClass ✔
- nullValue
Question 9
Which of the following is a default value of float data type?
- 0
- 0float
- 0f
- 0.0f ✔
Question 10
Which of the following is a default value of boolean data type?
- true
- false ✔
- null
- void
Question 11
Which of the following is an invalid integer?
- 2222
- 22222
- 222 22 ✔
- 222
Question 12
Which of the following is not a character literal?
- '\n'
- "n" ✔
- 'n'
- All of these
Question 13
Which of the following punctuator is the statement terminator in Java?
- ; ✔
- .
- ,
- All of these
Question 14
Which of the following is not a primitive data type in Java?
- boolean
- short
- float
- class ✔
Question 15
What is the size of a long data type in Java?
- 32 bits
- 64 bits ✔
- 48 bits
- Long data type is not supported in Java.
Question 16
What is the size of a boolean data type in Java?
- 1 bit
- 16 bits
- 8 bits ✔
- Boolean data type does not take any space in memory.
Question 17
Single line comments can be added using ...........
- //
- /* */
- \
- Both A and B ✔
Question 18
Which of the following changes a variable declaration into a constant?
- const
- constant
- static
- final ✔
Question 19
The ASCII codes of A-Z are represented by decimal range ...........
- 65-90 ✔
- 66-91
- 97-122
- 98-123
Question 20
Which of the following is a primitive data type?
- array
- interface
- class
- boolean ✔
