Advertisements
Chapters
Chapter 2: Class as the Basis of all Computation
Chapter 3: User-Defined Methods
Chapter 4: Constructors
Chapter 5: Library Classes
Chapter 6: Encapsulation
Chapter 7A: Arrays - One Dimension
Chapter 7B: Arrays - Sort & Search
Chapter 7C: Arrays - Double Dimension
Chapter 8: String Handling
Chapter 9: Programs Overall
![Rupa Pandit solutions for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई chapter 1 - Revision of Class 9 Syllabus Rupa Pandit solutions for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई chapter 1 - Revision of Class 9 Syllabus - Shaalaa.com](/images/computer-applications-english-class-10-icse_6:a86debec6313407fa84cd182cd5e7e57.jpg)
Advertisements
Solutions for Chapter 1: Revision of Class 9 Syllabus
Below listed, you can find solutions for Chapter 1 of CISCE Rupa Pandit for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई.
Rupa Pandit solutions for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई 1 Revision of Class 9 Syllabus Exercises [Pages 42 - 45]
Choose the correct options.
These are values of type True or False:
boolean
int
float
char
______ encapsulate state and behaviour.
Data
Methods
Formula
Objects
Identify the true statement.
class as an object factory
object is a class factory
class and objects are same
objects contain class
______ is not a primitive.
int
array
float
double
These are names given to variables, classes, and methods:
Constant
Object
Identifier
Value
______ access specifier does not allow any member to be accessed out of the class.
Private
Public
Protected
Default
Which of the following is an example of implicit type casting?
long to int
int to short
float to double
long to float
Which of the following is a logical operator?
&&
>=
!=
<<
Which of the following is a relational operator?
+
−
*
!=
Keyword new is used for ______.
Rotational memory allocation
Dynamic memory allocation
False memory allocation
Random memory allocation
Given p = 6.9;
Data type of p can be
int
float
long
short
Given: g = ++p + y++ + ++y + p++ + x++;
If p = 2, y = 3, x = 5 then what will be the value of g?
19
18
20
21
It is an ability to have same name but to behave differently under different situations:
Encapsulation
Inheritance
Polymorphism
Abstraction
It is an ability to apply the method without knowing the method details:
Encapsulation
Inheritance
Polymorphism
Abstraction
It is a feature in which a derived class is being able to access data/methods of its base class:
Encapsulation
Inheritance
Polymorphism
Abstraction
It is an instance of a class:
Object
Class
Polymorphism
Method
It is a feature in which all relevant data and methods are present in a boundary:
Abstraction
Inheritance
Polymorphism
Method
It is a factory where objects are made:
Object
Inheritance
Class
Method
It is not a primitive data type:
int
String
double
float
It is not a valid identifier:
name_
name$
_name
+name
It is a valid identifier:
le*af
le_af
1+eaf
lea/f
It is not a relational operator:
<
<=
>=
=
The expression which uses >= operator is known as:
relational
logical
arithmetic
assignment
Relational operators are:
Unary operator
Binary operator
Ternary operator
Conditional operator
State the type of loop in the given program segment
for (int i = 5;i! = 0; i = 2)
System.out.println(i);
finite
null
infinite
fixed
A Identify the type of operator &&:
ternary
unary
logical
relational
What value will Math.sqrt (Math.ceil (15.3)) return?
16.0
16
4.0
5.0
The code obtained after compilation is known as ______.
source code
object code
machine code
java byte code
The absence of which statement leads to fall through situation in switch case statement?
Continue
Break
Return
System.exit(0)
Missing a semicolon in a statement is what type of error?
Logical
Syntax
Runtime
No error
Consider the following program segment and select the output of the same when n = 10:
switch(n)
{Case 10: System.out.println(n*2);
case 4: System.out.println(n*4); break;
default : Syslem.out.println(n);
}20
4010
420, 40
10
10
The number of bits occupied by the value ‘a’ are:
1 bit
2 bits
4 bits
16 bits
Assertion (A): In java statements written in lower case letter or upper case letter are treated as the same.
Reason (R): Java is a case sensitive language.
Both Assertion (A) and Reason (R) are true and Reason (R) is a correct explanation of Assertion (A).
Both Assertion (A) and Reason (R) are true and Reason (R) is not a correct explanation of Assertion (A).
Assertion (A) is true and Reason (R) is false.
Assertion (A) is false and Reason (R) is true.
Assertion (A): Use of escape sequence becomes necessary in programs at a certain point in time.
Reason (R): Certain non-graphic characters cannot be typed directly through the keyboard.
Both Assertion (A) and Reason (R) are true and Reason (R) is a correct explanation of Assertion (A).
Both Assertion (A) and Reason (R) are true and Reason (R) is not a correct explanation of Assertion (A).
Assertion (A) is true and Reason (R) is false.
Assertion (A) is false and Reason (R) is true.
State True or False.
Shift operators are applied on numbers and they shift the integer equivalent of the number.
State True or False.
Keyword default is used to allocate memory to an object.
State True or False.
A condition is a statement that gives an integer result.
State True or False.
In ‘switch case’, only condition of equality can be tested.
State True or False.
In ‘switch case’, default is optional.
State True or False.
In ‘if.. else’, all types of data can be used.
State True or False.
In ‘switch.. case’, two variables can be compared.
State True or False.
‘Fall Through’ is possible in ‘if..else’
State True or False.
In ‘switch.case’, break is necessary after each case.
State True or False.
In a loop, break takes the control statement out of the loop block.
Evaluate the following expression where prefix and postfix increment and decrement operator is used.
int b = 6, d = 12,c = 0;
c = b++ + d-- + ++ b;
System.out.println ("B=" + b+" D=" + d+" C=" +c);
Evaluate the following expression where prefix and postfix increment and decrement operator is used.
int p=3, q=20, r=0;
r = ++p + p++ + q++ + q++;
System.out.println ("P=" + p+ “Q="+ q+ “R="+ r);
Evaluate the following expression where prefix and postfix increment and decrement operator is used.
int cm = 24, dc = 5, re = 8, bq = 1;
bq = cm/++dc + cm/re--;
System.out.printn("CM=" +cm +"DC=" +dc+" RE=" +re +“BQ=" +bq);
Solutions for 1: Revision of Class 9 Syllabus
![Rupa Pandit solutions for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई chapter 1 - Revision of Class 9 Syllabus Rupa Pandit solutions for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई chapter 1 - Revision of Class 9 Syllabus - Shaalaa.com](/images/computer-applications-english-class-10-icse_6:a86debec6313407fa84cd182cd5e7e57.jpg)
Rupa Pandit solutions for कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई chapter 1 - Revision of Class 9 Syllabus
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. Rupa Pandit solutions for Mathematics कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई CISCE 1 (Revision of Class 9 Syllabus) 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. Rupa Pandit textbook solutions can be a core help for self-study and provide excellent self-help guidance for students.
Concepts covered in कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई chapter 1 Revision of Class 9 Syllabus are .
Using Rupa Pandit कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई solutions Revision of Class 9 Syllabus 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 Rupa Pandit Solutions are essential questions that can be asked in the final exam. Maximum CISCE कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई students prefer Rupa Pandit Textbook Solutions to score more in exams.
Get the free view of Chapter 1, Revision of Class 9 Syllabus कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई additional questions for Mathematics कंप्युटर एपलीकेशंस [अंग्रेजी] कक्षा १० आईसीएसई CISCE, and you can use Shaalaa.com to keep it handy for your exam preparation.
