Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Define Java Classes and Instantiate Their Objects In this assignment, you will design and code a simple Java application that defines a class, instantiates the

Define Java Classes and Instantiate Their Objects

In this assignment, you will design and code a simple Java application that defines a class, instantiates the class into a number of objects, and prints out the attributes of these objects in a specific way.

  1. Design a program that meets basic object-oriented constructs requirements.
  2. Code an application that exercises classes and objects.
  3. Test the application and document testing.
  4. Explain the approach taken to develop the application and the major decisions made.
  5. Identify relevant fundamental constructs in the submitted program.
  6. Communicates efficiently, effectively, and in an appropriate manner as an IT professional.
image text in transcribed
The output should look like this;
image text in transcribed
The requirements of this application are as follows: The application is to define a Java class called Course. The Course class has the following attributes: 1. code - a string field to store the course code (e.g. IT1006) 2 creditHours-an int field to store the credit hours of the course (e.g. 6) The application then instantiates, in order, seven instances (objects) from the Course class and assigns to each instance the following values: Order of Course Object code attribute IT1006 Course Object creditHours attribute instantiation IT4782 IT4789 IT4079 IT2230 IT3345 IT2249 2 3 6 6 Finally, the application prints out, in the same order as the instantiation order, the attributes of these instances using this format: [order of instantiation] Course Code (Course Credit Hours) Successful completion of this assignment will show the correct order of object instantiation and the correct attributes of each object when the application is run. Your program output should look like this sample output

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts International Edition

Authors: David M. Kroenke

6th Edition International Edition

0133098222, 978-0133098228

More Books

Students also viewed these Databases questions

Question

What is linear transformation? Define with example

Answered: 1 week ago