KPK Board 12th Class Computer Ch 8 Objects and Classes Short Questions Answers
We are providing all Students from 5th class to master level all exams preparation in free of cost. Now we have another milestone achieved, providing all School level students to the point and exam oriented preparation question answers for all science and arts students.
After Online tests for all subjects now it’s time to prepare the next level for KPK board students to prepare their short question section here. We have a complete collection of all classes subject wise and chapter wise thousands questions with the right answer for easy understanding.
We provided 12th class Computer short questions answers on this page of all KPK boards. Students of KPK boards can prepare the Computer subject for annual examinations.
In this List we have included all KPK boards and both Arts and Science students. These Boards students can prepare their exam easily with these short question answer section
Malakand Board 12th classes short questions Answer
Mardan Board 12th classes short questions Answer
Peshawar Board 12th classes short questions Answer
Swat Board 12th classes short questions Answer
Dera Ismail Khan Board 12th classes short questions Answer
Kohat Board 12th classes short questions Answer
Abbottabad Board 12th classes short questions Answer
Bannu Board 12th classes short questions Answer
All above mention KPK Boards students prepare their annual and classes test from these online test and Short question answer series. In coming days we have many other plans to provide all kinds of other preparation on our Gotest website.
How to Prepare KPK Board Classes Short Question Answer at Gotest
- Just Open the desired Class and subject which you want to prepare.
- You have Green bars which are Questions of that subject Chapter. Just click on Bar, it slides down and you can get the right answer to those questions.
Answer. A collection of objects with same properties and functions is called class. Classes are designs for creating objects. For example, a class person can be used to define the characteristics and functions of a person. It can be used to create many objects of type person such as Junaid, Humid and Assam. All objects of person class will have same characteristics and functions. However, the values of each object can be different.
Syntax of declaring a class:
Class identifier
{
Body of the class
};
Class. Keyword that is used to declare a class
Identifier: Name of the class. The rules for class name are same as rules for declaring variable.
Answer. Access specifies are the commands that are used to specify the access level of class members.
Private Access Specifies:
1 It is used to restrict the use of class members within the class.
- Any members of the class defined with private access specified can only be accessed within the class.
- Private members cannot be accessed from outside the class.
Public Access Specifies:
1 It is used to allow the user to access a class member within the class as well as outside the class.
- Any members of the class defined with public access specified can be accessed from anywhere in the program.
- Public members can be accessed from outside the class.