Purchase Solution

For the Class

Not what you're looking for?

Ask Custom Question

For the Class "date," give examples of: Objects (instances), Instance Variables, Methods, Messages, Interfaces, Encapsulation, Inheritance, and Polymorphism.

Purchase this Solution

Solution Summary

The expert examines data for the class.

Solution Preview

Class Date:

Objects (instance): an instance of a data object can be created from its constructor as follows:
Date aDate = new Date(2006, 11, 22) to represent a date of Nov 22, 2006.
Class "date" can have private instance variables such as year, month and day.
It can have methods such as:

1. Accessor methods: getHours(); getMinutes(); getSeconds();
2. Mutator methods: setHours(); setMinutes(); setSeconds();
3. Utility ...

Purchase this Solution


Free BrainMass Quizzes
Javscript Basics

Quiz on basics of javascript programming language.

C++ Operators

This quiz tests a student's knowledge about C++ operators.

Excel Introductory Quiz

This quiz tests your knowledge of basics of MS-Excel.

Inserting and deleting in a linked list

This quiz tests your understanding of how to insert and delete elements in a linked list. Understanding of the use of linked lists, and the related performance aspects, is an important fundamental skill of computer science data structures.

Basic Computer Terms

We use many basic terms like bit, pixel in our usual conversations about computers. Are we aware of what these mean? This little quiz is an attempt towards discovering that.