Busy. Please wait.
Log in with Clever
or

show password
Forgot Password?

Don't have an account?  Sign up 
Sign up using Clever
or

Username is available taken
show password


Make sure to remember your password. If you forget it there is no way for StudyStack to send you a reset link. You would need to create a new account.
Your email address is only used to allow you to reset your password. See our Privacy Policy and Terms of Service.


Already a StudyStack user? Log In

Reset Password
Enter the associated with your account, and we'll email you a link to reset your password.

ADVANCED QUIZ Ch 24

Quiz yourself by thinking what should be in each of the black spaces below before clicking on it to display the answer.
        Help!  

Term
Definition
Structured Programming   an organized style of programming that places emphasis on modular programming, which aids testing, debugging and modifying. Modules are procedures and functions that process external data passed by parameters.  
🗑
Object Oriented Programming   style with emphasis on reliability through modular programming; Contain modules (classes), data, and subroutines (methods) that process data. OOP traits include: Encapsulation, Polymorphism, and Inheritance.  
🗑
Attributes and Methods   What objects in java are made up of.  
🗑
Encapsulation   Process of placing data structure's data (attributes) with the methods (actions) that act upon the data inside the same module, called a class in Java.  
🗑
Inheritance   is the process of using features (both attributes and actions) from an established higher class.  
🗑
Superclass   Higher class in java whose public methods and attributes/variables may be used by a class (subclass) that extends it.  
🗑
Subclass   Lower class in Java that extends from a Superclass -- extends meaning that the class is able to use (inherits) all public attributes/variables and public methods from the superclass.  
🗑
Polymorphism   Allows a single accessing feature, such as an operator, method or class identifier, to have many forms.  
🗑
Class   data type that encapsulates both data and the methods that act upon the data; template for the construction of objects  
🗑
Object   One instance of a class  
🗑
Attributes/instance variables/fields   The data components of a class. In the majority of classes, instance variables should only be accessed by methods of the same class.  
🗑
Methods   Action modules that process data. Sometimes called subroutines, procedures, or functions in other languages.Declared inside a class module -- process the instance variables  
🗑
Instantiation   Moment or instance that memory is allocated for a specific object of a class; Statements like 'construction', 'definition' and 'creation' of an object have the same meaning as instantiation.  
🗑
constructor   The special method that is called during the instantiation of a new object whose purpose is to initialize instance variables (fields/attributes); has the same identifier as the class; is neither a void nor a return method  
🗑
default constructor   Constructor without parameters  
🗑
Private class members   Can only be accessed by methods of it's own class.  
🗑
Public class member   Can be accessed by any client of an object x  
🗑
Inner class   Class declared inside another class.  
🗑


   

Review the information in the table. When you are ready to quiz yourself you can hide individual columns or the entire table. Then you can click on the empty cells to reveal the answer. Try to recall what will be displayed before clicking the empty cell.
 
To hide a column, click on the column name.
 
To hide the entire table, click on the "Hide All" button.
 
You may also shuffle the rows of the table by clicking on the "Shuffle" button.
 
Or sort by any of the columns using the down arrow next to any column heading.
If you know all the data on any row, you can temporarily remove it by tapping the trash can to the right of the row.

 
Embed Code - If you would like this activity on your web page, copy the script below and paste it into your web page.

  Normal Size     Small Size show me how
Created by: mgarda
Popular Computers sets