Advertisements
Chapters
![Rupa Pandit solutions for कम्प्युटर एपलीकेशंस [इंग्रजी] इयत्ता १० आयसीएसई chapter 6 - Encapsulation Rupa Pandit solutions for कम्प्युटर एपलीकेशंस [इंग्रजी] इयत्ता १० आयसीएसई chapter 6 - Encapsulation - Shaalaa.com](/images/computer-applications-english-class-10-icse_6:a86debec6313407fa84cd182cd5e7e57.jpg)
Advertisements
Solutions for Chapter 6: Encapsulation
Below listed, you can find solutions for Chapter 6 of CISCE Rupa Pandit for कम्प्युटर एपलीकेशंस [इंग्रजी] इयत्ता १० आयसीएसई.
Rupa Pandit solutions for कम्प्युटर एपलीकेशंस [इंग्रजी] इयत्ता १० आयसीएसई 6 Encapsulation Exercises [Pages 147 - 149]
Choose the correct option.
The access specifier that gives visibility to the world and to the objects is ______.
default
private
public
protected
The access specifier that gives visibility to the package and to all the subclasses and the objects is ______.
default
private
public
protected
The access specifier that gives visibility to the class only is ______.
default
private
public
protected
The access specifier that gives visibility to the package and to the objects is ______.
default
private
public
protected
The access specifier that is applicable in case of inheritance is:
default
private
public
protected
Class variables ae also known as ______ variables.
publlic
instance
static
default
Variables which are defined in a method are called ______ method.
local
formal
actual
argument
The most restricted access specifier is:
default
private
public
protected
The members under default can be accessed by the objects of the class.
True
False
The number of copies a static member makes is ______.
one
two
none
infnite
A class encapsulate Data Members that contains the information necessary to represent the class and Member methods that perform operations on the data member.
What does a class encapsulate?
Information and operation
Data members and Member methods
Data members and information
Member methods and operation
Answer the following in brief.
What are access specifiers?
Name the access specifiers provided by Java.
What are class variables?
What are instance variables?
What are local variables?
State True or False.
A local variable can exist outside its method as well.
State True or False.
Member data and methods declared under protected access specifier are availlable to members of its own class and to its subclasses and not to any other class.
State True or False.
Member data and methods declared under private access specifier are available to all other methods from any other class.
State True or False.
Member data and methods declared under default access specifier are available to all other methods of the same class and other classes of the same package.
State True or False.
The members under protected access specifier cannot be accessed by the objects of the class.
Given the following program, identify the local variable, instance variable and argument variable.
importjava.util.*;
class Factor
{
int N;
void fnIsFactor(int f)
{
if (N%f =0)
{
System.out.print(f +" is a Factor of "+ N);
}
else
{
System.out.print(f + " is a Not a Factor of "+ N);}
}
}
void fnAllFactors()
{
int r = 0;
System.out.println("\n Factors of " + N);
for(r = 1; r <=N; r++)
{
if (N % r =0)
{
System.out.print(r + "");
}
}
}
void main()
{
Scanner sc = new Scanner(System.in);
System.out.println("Enter value for N :");
N = sc.nextInt();
System.out.println("Enter value for L :");
int L = sc.nextInt();
fnIsFactor(L);
fnAllFactors();
}
}Solutions for 6: Encapsulation
![Rupa Pandit solutions for कम्प्युटर एपलीकेशंस [इंग्रजी] इयत्ता १० आयसीएसई chapter 6 - Encapsulation Rupa Pandit solutions for कम्प्युटर एपलीकेशंस [इंग्रजी] इयत्ता १० आयसीएसई chapter 6 - Encapsulation - Shaalaa.com](/images/computer-applications-english-class-10-icse_6:a86debec6313407fa84cd182cd5e7e57.jpg)
Rupa Pandit solutions for कम्प्युटर एपलीकेशंस [इंग्रजी] इयत्ता १० आयसीएसई chapter 6 - Encapsulation
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 6 (Encapsulation) 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 6 Encapsulation are .
Using Rupa Pandit कम्प्युटर एपलीकेशंस [इंग्रजी] इयत्ता १० आयसीएसई solutions Encapsulation 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 6, Encapsulation कम्प्युटर एपलीकेशंस [इंग्रजी] इयत्ता १० आयसीएसई additional questions for Mathematics कम्प्युटर एपलीकेशंस [इंग्रजी] इयत्ता १० आयसीएसई CISCE, and you can use Shaalaa.com to keep it handy for your exam preparation.
