Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask Java Expert


Home >> Java

Assessment item 1

Objectives

- Analyse, develop, and implement software solutions
- Choose and compare appropriate data structures in program design
- Apply classes, inheritance, polymorphism, and exception handling
- Test software implementations to ensure correctness and maintainability

Assessment Task

In this assignment, you are required to write a Java Application that uses an interactive Graphical User Interface (GUI) based on the JFrame class using SWING GUI components. You will also be designing and implementing the software solution using appropriate data structures and application of classes, inheritance, and exception handling. The case study for developing a solution is given below.

The food consumption of a person is to meet the daily energy requirements. The energy requirement is estimated using a person's age group, gender, height, weight, Basal metabolic rate (BMR), and physical activity level (PAL). There are data available on estimated energy requirements for various PALs, and BMR. So by choosing the correct age group, gender, height and PAL, the energy requirements can be found from the data set. Your task is to develop a Java Application that lets the user to enter height and choose gender, age group, and the most suitable PAL so that the application displays the energy requirements in Mega Joules. The application should contain a GUI as shown below. The GUI components should consist of the following panels.

1. A top panel that contains four (4) Text Fields, one Password Field, two Combo Boxes (drop down list), seven Labels, and two Radio Buttons and a Login command button.

2. A middle panel that contains a Text area to display the user's estimated energy requirement details.

3. A bottom panel that contains four Buttons which are "Load Data" Button, "Display Energy" Button, "Clear Display" Button and "Quit" Button.

The functions of four buttons are described below.

1. Load Data

Initially the ‘Load Data' Button remains disabled as shown in Figure 1. To enable it the user enters the name and password using the fields on the GUI, and clicks the

Login button. The Load Data Button can be used to read the data file which contains height, weight, BMR, and energy requirements for various PALs for males and females in the age groups of 19-30, and 31-50. After loading the file, fill the Combo Box with the description of PAL as given in the table below. Also, the Age group Combo Box is filled with the list of age groups read from the file. One row in

Table 1 PAL Description and Value

Description

Value

bed rest

1.2

very sedentary

1.4

light

1.6

moderate

1.8

heavy

2

vigorous

2.2

the file contains data for one age group, but for both genders.

Note: Use the given data file named COIT20256Ass1Data.csv available on the course website and it contains the set of data.

6_Initial Screen Display.jpg

Figure 1: Initial Screen Display

2. Display Energy

Before clicking on the "Display Energy" button, the user has to enter his/her height in the Text Field, choose the gender by clicking the Radio button and select the age group. This should display the ‘Expected Average Weight' for that height in the Text Field as provided in the file. When user clicks ‘Display Energy' after selecting a suitable PAL from the drop down list, the corresponding PAL number should be displayed on the Text Field and energy requirements in the Text Area.

3. Clear Display

Clicking on the "Clear Display" button should clear all contents from the display area and set the Text Fields and Combo Boxes to their default values.

150_Initial Screen Display1.jpg

Figure 2: Screen Display After Load Data

220_Initial Screen Display2.jpg

Figure 3: Screen Display on Clicking "Display Rosters"

4. Quit

The "Quit" button should allow the user to exit from the application.

Data Structures.

You can use the classes given below as a guideline for your design.

1. enum PAL - Physical Activity Level: The descriptions and corresponding values of PALs are modelled as an enum. This is already completed and provided for your use in the course website in file, PAL.java

2. PALdata class
This is to store the PAL and corresponding energy requirement. This class is already completed and provided for your use in the course website in file, PALdat.java

3. BMRdata class
The purpose of this class is to store the values of age group, gender, height, weight, and bmr read from each row of the file.
a) Include appropriate fields to store:
Height, weight, bmr which are real numbers to be stored in float data type, age group and gender which are strings.
b) A constructor and necessary accessor and mutator methods to get and set values
c) A toString() method that displays the BMRdata attributes.

4. EnergyData Class
a) This class should have the fields to store:
BMRdata, and set of energy needs for various PALs corresponding to the BMRdata. This could be stored as an ArrayList of PALdata.
b) It should also include constructor, mutator, and accessor methods,
c) A toString() method for displaying the stored data.

5. User class - an abstract class
a) This class should have fields to store user entered values such as name, gender, age group, and height.
This class should have:
b) Constructor, accessor and mutator methods.
c) A toString() method for displaying the User details.

6. UserEnergyNeeds class
a) This class extends the User class. This class should have a member fields to store expected average weight, bmr corresponding to the user's age group, gender and height, and the PALdata to store chosen PAL and corresponding energy requirement. The height entered should be between 1.5 and 2m inclusive. Use validation and exception handling to handle this error.

7. GUI Components class
a) This class should have the GUI components listed above.
b) It should have the methods to set up the GUI components and the event handling methods.
c) This class should have method to read data from the file and load data structures appropriately.
d) This also contains main method.

5. Software Tools for Building the Application

You can build your application using the TextPad Editor or NetBeans. It is highly recommended that you create the GUI components using code rather than 'designer' and 'click and drag' of the NetBeans. This creates code which is not maintainable. Remember this is a good prototyping tool, but not recommended for coding.

Assessment item 2

Objectives
- Analyse, develop, and implement software solutions
- Choose and compare appropriate data structures and algorithms in program design
- Apply classes, inheritance, polymorphism, and exception handling
- Test software implementations to ensure correctness and maintainability

Assessment Task

Part A

In this assignment, you are required to write a Java Application that uses an interactive Graphical User Interface (GUI) based on the JFrame class using SWING GUI components. You will also be designing and implementing the software solution using appropriate data structures and application of classes, inheritance, and exception handling. The case study for developing a solution is given below.

The food consumption of a person is to meet the daily energy requirements. The energy requirement is estimated using a person's height, weight, Basal metabolic rate (BMR), and physical activity level (PAL). There is data available on estimated energy requirements for various PALs, and BMR. So by choosing the correct height and PAL, the energy requirements can be found from the data set. In Assignment One you have developed a Java Application that lets the user to enter height and choose the most suitable PAL and thereby display the energy requirements in Mega Joules.

In this assignment you extend your first assignment so that the user can save the user details of name, height, age group, gender, PAL level, energy requirement, and expected weight to a database table named userEnergy. Also your application should display all the user's data from the database. In addition to the GUI components you have in Assignment One, include the following components.

1. Save Button in the bottom panel, to save the user data to the database.
2. Display All Button in the bottom panel to display the saved data of all users from the database.

The functions of two additional buttons are described below.

1. Save

The Save Button can be used to save the User Energy needs to the data base.

Note: Use the given data file named COIT20256Ass1Data.csv available on the course website and it contains the set of data.

2. Display All

This Button enables the user to view all the database records displaying user details and their energy requirements. The database records will have a unique id. It is not essential to display the id.

The screen with additional buttons are shown below.

6_Initial Screen Display.jpg

Initial Screen Display

1378_Initial Screen Display3.jpg

Screen Display on Clicking "Display All"

Data Structures

DatabaseUtility class: Create this class to implement all the tasks related to creation of database and table, extracting records from the database. Include a linkedList of UserEnergyNeeds class to store the extracted data from the database. Use Prepared statements to get the user input from GUI interface and use them for populating database. Also use prepared statement to execute query to extract data and store the records in a linked list.

Software Tools for Building the Application

You can build your application using the TextPad Editor or NetBeans. It is highly recommended that you create the GUI components using code rather than 'designer' and 'click and drag' of the NetBeans. This creates code which is not maintainable. Remember this is a good prototyping tool, but not recommended for coding.

Part B

Your task in this part of the Assignment is to demonstrate use of various data structures such as stack, priority queue, set, and map using the given data.

While using these data structures to store explain the benefits you can achieve by using the appropriate data structures. You need to complete the following steps in use of various data structures.

1. Read the names from the file and load in a priority queue. Display the values from the priority queue using the peek() method. Describe your observation of change to the list of names in the report file.

2. Move the list of names from the priority queue to stack. Move the list of names from stack while displaying the value to a set. Describe your observation of the stack list of names.

3. Display the names from the set and again describe your observation the list of names.

4. Create a map and store the names with associated student Id and display the values.

Note: Commence with one class at a time, test it and then incrementally add the next.

I am looking for help in my assignments in java programming, could you do my assignments?

Attachment:- dataandsource.zip

Java, Programming

  • Category:- Java
  • Reference No.:- M91769496
  • Price:- $140

Priced at Now at $140, Verified Solution

Have any Question?


Related Questions in Java

Assessment instructionsin this assessment you will complete

Assessment Instructions In this assessment, you will complete the programming of two Java class methods in a console application that registers students for courses in a term of study. The application is written using th ...

Applied software engineering assignment 1 -learning

Applied Software Engineering Assignment 1 - Learning outcomes - 1. Understand the notion of software engineering and why it is important. 2. Analyse the risk factors associated with phases of the software development lif ...

Chatbotscreate a small networked chat application that is

Chatbots Create a small, networked chat application that is populated by bots. Introduction On an old server park, filled with applications from the early days of the internet, a few servers still run one of the earliest ...

Project requirementsfor the problem described in the next

Project requirements For the problem described in the next section, you must do the following: 1. include your student ID at the end of all filenames for all java code files. Three classes have been identified in section ...

Assessment instructionsin this assessment you will design

Assessment Instructions In this assessment, you will design and code a simple Java application that defines a class, instantiate the class into a number of objects, and prints out the attributes of these objects in a spe ...

Can someone kindly help me to consider whether java

Can someone kindly help me to consider whether Java provides the facility of operator overloading? If it does, may you kindly describe how overloading operators can be accomplished? If not, may you kindly describe why yo ...

Assignment - java program using array of objectsobjectives

Assignment - JAVA Program using array of objects Objectives - This assessment item relates to the course learning outcomes as stated in the Unit Profile. Details - For this assignment, you are required to develop a Menu ...

Assignment game prototypeoverviewfor this assessment task

Assignment: Game Prototype Overview For this assessment task you are expected to construct a prototype level/area as a "proof of concept" for the game that you have designed in Assignment 1. The prototype should function ...

Simple order processing systemquestion given the classes

Simple Order Processing System Question: Given the classes Ship (with getter and setter), Speedboat, and SpeedboatTest. Answer the following questions: Refine the whole application (all classes) and create Abstract class ...

Assignment - method in our madnessthe emphasis for this

Assignment - "Method in our Madness" The emphasis for this assignment is methods with parameters. In preparation for this assignment, create a folder called Assign_3 for the DrJava projects for the assignment. A Cityscap ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As