Term
An object is collection of: |
|
Definition
|
|
Term
Properties determine the ________. |
|
Definition
|
|
Term
Methods determine the___________. |
|
Definition
|
|
Term
In Object Oriented Programming, we consider everything as ________ and then do _________. |
|
Definition
|
|
Term
|
Definition
|
|
Term
Some Properties of the Person object are: |
|
Definition
|
|
Term
Some methods of Person object: |
|
Definition
|
|
Term
The methods should be written as: |
|
Definition
talk() walk() read() write() |
|
|
Term
coding convention and all methods are terminated by a pair of brackets (). This is called _________. |
|
Definition
|
|
Term
Data is very important, because it contains the ________ which determine the _________ of the object. |
|
Definition
actual values and behavior |
|
|
Term
When the state of an object will keep on changing is called |
|
Definition
|
|
Term
All properties of an object are otherwise known as _______________. |
|
Definition
|
|
Term
The data are safe inside the object. True or False |
|
Definition
|
|
Term
Why is data safe inside an object? |
|
Definition
the data are encapsulated inside the method, you can’t play around with the data from outside directly. |
|
|
Term
True or False: Data don’t get exposed accidentally to outside the object |
|
Definition
|
|
Term
|
Definition
place-holders to hold the data. |
|
|
Term
True or False: The variables don’t have any values by default. |
|
Definition
|
|
Term
Variables – Direct Assignment: |
|
Definition
|
|
Term
Variables – Dynamic Assignment: |
|
Definition
|
|
Term
Dynamic assignment assigns what? |
|
Definition
the values to the variables indirectly. |
|
|
Term
who will change the value for variables? |
|
Definition
|
|
Term
|
Definition
a collection of statements,It is a named entity that operates on variables and changes the value |
|
|
Term
|
Definition
Set of curly braces { } include all statements |
|
|
Term
|
Definition
Arranging the data in some fashion |
|
|
Term
Examples of Basic Data Structure: |
|
Definition
Arrays Linked Lists Stacks Queues |
|
|
Term
|
Definition
systematic arrangement of data, usually in rows and columns |
|
|
Term
In an Array all data types should be the ______. |
|
Definition
|
|
Term
In a Linked Lists the data is stored in a special placeholder called |
|
Definition
|
|
Term
Two operations available on Queue are: |
|
Definition
Enqueue – Adding elements at the back Dequeue – Removing elements at the front |
|
|
Term
Creating a new project using BlueJ steps: |
|
Definition
Click the menu Project Select New Project Browse the folder where you want to create project Give the name of the project (Example: MyProject) |
|
|
Term
Edit Menu: This menu is used to: |
|
Definition
-Create new class - Create new package -Represent the class relationship pictorially |
|
|
Term
Project Menu: This menu has basic operations like: |
|
Definition
Used to create new project Used to open an existing project Save the project |
|
|
Term
|
Definition
A database is a data structure that stores organized information. |
|
|