Advertisements
Chapters
Part-I: Introduction to Object Oriented Programming Concepts
Part-II: Elementary Concept of Objects and Classes
▶ Part-III: Values and Data Types
Part-IV: Operators in Java
Part-V(a): Introduction to Java
Part-V(b): Input in Java
Part-VI: Mathematical Library Methods
Part-VII: Conditional Statements in Java
Part-VIII: Iterative Constructs in Java
Part-IX: Nested Loop
2: Library Classes
3: Arrays (Single Dimensional and Double Dimensional)
4: String Handling
5: User - Defined Methods
6: Class as the Basis of all Computation (Objects and Classes)
7: Constructors
8: Encapsulation and Inheritance
![Avichal solutions for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई chapter Part-III - Values and Data Types Avichal solutions for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई chapter Part-III - Values and Data Types - Shaalaa.com](/images/computer-applications-english-class-10-icse_6:c92a1a56d4504da7a071901031b53f60.jpg)
Advertisements
Solutions for Chapter Part-III: Values and Data Types
Below listed, you can find solutions for Chapter Part-III of CISCE Avichal for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई.
Avichal solutions for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई Part-III Values and Data Types Review Insight [Pages 30 - 32]
What is meant by boolean variable?
What is the difference between "true" and true?
State the escape sequence for horizontal tab.
State the escape sequence for new line feed.
Is String type a primitive or non-primitive data type?
In what way float initialisation is different from double type initialisation?
What is a variable?
Differentiate between pure and impure type expressions.
Explain the term type conversion.
How is implicit conversion different from explicit conversion?
Give one example of a primitive data type.
Give one example of a composite data type.
State the values of n and ch.
char c = 'A'
int n = c + 1;
char ch = (char)n;
What is a literal?
What are the types of casting shown in the following examples?
double x = 15.2; int a = 12;
int y = (int) x;
What is the type of casting shown in the following example?
double x = 15.2; int a = 12;
long b = a;
Name the primitive data type in Java that is:
A 64-bit integer and is used when you need a range of values wider than those provided by int.
Name the primitive data type in Java that is :
A single 16-bit Unicode character whose default value is ‘\u0000’.
State one difference between the floating point literals float and double.
What is the default value of the primitive data type int?
What is the default value of the primitive data type float?
Identify the literal given below:
0.5
Identify the literal given below.
'A'
Identify the literal given below.
false
Identify the literal given below.
"a"
Arrange the following primitive data types in an ascending order of their size:
- char
- byte
- double
- int
What is the type of casting shown by the following example:
char c = (char) 120;
What is the type of casting shown by the following example?
int x = 't';
Write one difference between primitive data types and composite data types.
Match the following literals of Column A with the variables of Column B.
| Column A | Column B | ||
| a. | "Java Language" | i. | int x |
| b. | 345 | ii. | char p |
| c. | false | iii. | String st |
| d. | 45.65 | iv. | boolean m |
| e. | 'K' | v. | double n |
| f. | 0.004125 | vi. | float y |
Avichal solutions for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई Part-III Values and Data Types EXERCISES [Pages 32 - 33]
How many bytes a char data type occupies in the memory?
2
8
4
16
Which of the following is a non-primitive data type?
int
double
char
String
Which of the following is non-numeric data type?
boolean
int
float
double
Which of the following ASCII code range is applicable for lowercase letters?
65 - 90
90 - 115
97 - 122
95 - 110
What is not an escape sequence?
\t
\\
\n
||
State whether the following statements are 'True' or 'False':
There are 128 set of different characters used in a Java program.
True
False
The ASCII codes of uppercase letters range from 97 to 122.
True
False
A variable gives the exact representation of data.
True
False
The data types int, float, char are called non-primitive types.
True
False
A String literal is assigned to a String variable.
True
False
A character literal is always enclosed in double quotes.
True
False
String constant can be written by using a set of alphanumeric characters.
True
False
An object is said to be a non-primitive data.
True
False
The data type int stores fractional values.
True
False
Boolean type data is used to test a condition and results in either true or false.
True
False
Write short answers:
What is meant by data type?
Name two types of data type.
Why is it necessary to define data type in Java programming?
Define the following with an example:
Variable
Define the following with an example:
Constant
Define the following with an example:
Boolean data type
Define the following with an example:
Coercion
Define the following with an example:
Primitive data type
Define the following with an example:
Non-primitive data type
What is a token?
Name different types of tokens.
Explain the term type casting.
Assign the following to a variable with suitable data type.
m = `22/7`
Assign the following to a variable with suitable data type.
p = 1.4142135 (value of square root of 2)
Assign the following to a variable with suitable data type.
k = 0.00004545
Assign the following to a variable with suitable data type.
n = 24.50
Distinguish between Token and Identifier.
Distinguish between Character and Boolean literal.
Explain the term type conversion.
How is implicit conversion different from explicit conversion?
Classify the following as primitive or non-primitive data type:
char
Classify the following as primitive or non-primitive data type.
arrays
Classify the following as primitive or non-primitive data type.
int
Classify the following as primitive or non-primitive data type.
classes
In what way is static initialisation of data type different from dynamic initialisation?
Predict the return data type of 'r' and 'n' from the snippet:
- int p;
- float m;
r = p + m;
n = m / 3 * (Math.pow(4, 3));
System.out.println(r);
System.out.println(n); Give reason whether the following assignment is correct or not.
int m = 155;
Give reason whether the following assignment is correct or not.
float f = 0.002654132;
Give reason whether the following assignment is correct or not.
String str = 'Computer';
Give reason whether the following assignment is correct or not.
boolean p = false;
Give reason whether the following assignment is correct or not.
String b = "true";
Give reason whether the following assignment is correct or not.
char ch = "apps";
Give reason whether the following assignment is correct or not.
String st= "Application";
Give reason whether the following assignment is correct or not.
double n = 455.29044125;
Solutions for Part-III: Values and Data Types
![Avichal solutions for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई chapter Part-III - Values and Data Types Avichal solutions for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई chapter Part-III - Values and Data Types - Shaalaa.com](/images/computer-applications-english-class-10-icse_6:c92a1a56d4504da7a071901031b53f60.jpg)
Avichal solutions for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई chapter Part-III - Values and Data Types
Shaalaa.com has the CISCE Mathematics कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई CISCE solutions in a manner that help students grasp basic concepts better and faster. The detailed, step-by-step solutions will help you understand the concepts better and clarify any confusion. Avichal solutions for Mathematics कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई CISCE Part-III (Values and Data Types) include all questions with answers and detailed explanations. This will clear students' doubts about questions and improve their application skills while preparing for board exams.
Further, we at Shaalaa.com provide such solutions so students can prepare for written exams. Avichal textbook solutions can be a core help for self-study and provide excellent self-help guidance for students.
Concepts covered in कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई chapter Part-III Values and Data Types are Introduction of Values and Data Types, Character Sets in Java, Encoding of Characters, Escape Sequences, Tokens, Data Types, Type Conversion.
Using Avichal कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई solutions Values and Data Types exercise by students is an easy way to prepare for the exams, as they involve solutions arranged chapter-wise and also page-wise. The questions involved in Avichal Solutions are essential questions that can be asked in the final exam. Maximum CISCE कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई students prefer Avichal Textbook Solutions to score more in exams.
Get the free view of Chapter Part-III, Values and Data Types कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई additional questions for Mathematics कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई CISCE, and you can use Shaalaa.com to keep it handy for your exam preparation.
