C1S247 Lab 7 in Java – Guaranteed 100% score

Lab Price = $8
Please feel free to send us your queries at: [email protected]
Payment Methods

Add to Cart

Buy Now

View Cart


Problem Statement
iLab 7 of 7: Putting It All Together

Connect to the iLab here.

Submit your assignment to the Dropbox located on the silver tab at the top of this page.
(See Syllabus “Due Dates for Assignments & Exams” for due dates.)

i L A B O V E R V I E W
Scenario and Summary
This week, you will be implementing inheritance by creating a generic Racer superclass along with two subclasses called StreetTuner and HotRod. You will make the Racer class abstract and include the abstract method IsDead in the Racer class.
Deliverables
Due this week:
• Capture the console output window and paste it into a Word document.
• Zip the project folder.
• Put the zip file and screenshots (Word document) in the Dropbox.
i L A B S T E P S
STEP 1: Understand the UML Diagram

Engine: -cylinders: int -horsepower:int +Engine() +Engine(in cylinders: int , in horsePower :int) +toString(): string (1 to 1 to Racer) Racer: -name: string -speed: int -eng: Engine +Racer() +Racer(in name: string, in speed:int, in engine: Engine) +isDead():bool +toString():string HotRod (point to Racer): -blower:bool +HotRod() +HotRod(in name: string, in speed: int, in engine: Engine, in blower: bool) +isDead():bool +toString():string StreetTuner (point to Racer): -nitrous: bool +StreetTuner() +StreetTuner(in name: string, in speed:int, in engine: Engine, in nitrous:bool) +isDead():bool +toString(): string
STEP 2: Build the Inheritance Hierarchy

Create a project called “CIS247B_WK7_Lab_LASTNAME”
Build the class structure shown in the UML diagram. Remember to include getters and setters for each class attribute.
STEP 3: Implement Logic for HotRod Class

1. Provide suitable logic for the toString method. As always, the toString method should reveal the state of an object.
2. For the isDead method in HotRod, use the logic below to implement the inherited base class abstract method called isDead.
Hint: To generate a random number, use the following code, which returns a random number from 0 to 1:
Random rnd = new Random();
rnd.NextDouble();

Pseudocode for the isDead method of HotRod Random rnd = new Random(); boolean dead if (speed > 50 && rnd.NextDouble() > 0.6) if (engineHorsePower < 300 && blower=true) dead = false else dead = true end if else if (speed > 100 && rnd.NextDouble() > 0.4) if (engineHorsePower >= 300 && blower = true) dead = true else dead = false end if else dead = false end if
STEP 4: Implement Logic for StreetTuner Class

1. Provide suitable logic for the toString method. As always, the toString method should reveal the state of an object.
2. For the isDead() method in StreetTuner, use the logic below to implement the inherited base class abstract method called isDead.

Pseudocode for the isDead method of StreetTuner Random rnd = new Random(); boolean dead if (speed > 50 && rnd.NextDouble() > 0.6) if (engineHorsePower < 300 && nitrous=true) dead = false else dead = true end if else if (speed > 100 && rnd.NextDouble() > 0.4) if (engineHorsePower >= 300 && nitrous = true) dead = true else dead = false end if else dead = false end if
STEP 5: Construct the Main Program

Hint: When completing the Main Class for your lab, feel free to reuse old methods from previous labs!
1. Create an array of Racer objects that will hold three Racer objects.
2. Write a method, called collectRacerInformation that accepts as an argument a Racer object, and then prompts the user to provide the following information for each racer.
o Racer name
o Racer Speed
o Number of cylinders in the racer’s engine
o Horsepower of the racer’s engine
3. Add logic to collectRacerInformation to determine if the Racer object passed in is a HotRod or a StreetTuner. If it is a HotRod, prompt the user to indicate the existence of a blower. If the object is a StreetTuner, prompt the user to indicate the existence of nitrous. Set these values appropriately.
4. Write a method called displayRacerInformation that accepts as an argument a Racer object, and then displays all the information for the specific racer type.
5. Create any combination of Racer objects (make sure you create at least one StreetTuner and one HotRod) and invoke collectRacerInformation, passing in each of the Racer objects. Store each object in the array. For StreetTuner objects, be sure to set the nitrous flag (either true or false), and for the HotRod objects set the blower flag (either true or false).
6. Iterate through the racer array and, for each Racer object, display all the object’s attribute information (call the displayRacerInformation method for each object). Don’t forget to indicate whether or not the Racer is dead!
STEP 6: Compile and Test

When done, compile and execute your code, and debug any errors until your code is error-free.
Check your output to ensure that you have the desired output, modify your code as necessary, and rebuild.
Your code may resemble the following:

************Racer Information************* Name: HotRod Racer Speed: 85 **Engine Information** Cylinders: 8 Horse Power: 100 Blower: true Is the Racer dead? No **************Racer Information**************** Name: StreetTuner Racer #1 Speed: 95 **Engine Information** Cylinders: 10 Horse Power: 135 Nitrous: false Is the Racer dead? Yes *****************Racer Information*************** name: StreetTuner Racer #2 Speed: 103 **Engine Information** Cylinders; 12 Horse Power: 150 Nitrous: true Is the Racer dead? No
STEP 7: Submit Deliverables

Submit your lab to the Dropbox located on the silver tab at the top of this page. For instructions on how to use the Dropbox, read these Step-by-Step Instructions or watch this Dropbox Tutorial.
See Syllabus “Due Dates for Assignments & Exams” for due date information.

Relevant Material
Screenshots
CIS-247_Lab7_StreetTuner
CIS-247_Lab7_StreetTuner

CIS-247_Lab7_HotRod
CIS-247_Lab7_HotRod
Instructions
* If you want to purchase multiple products then click on “Buy Now” button which will give you ADD TO CART option.Please note that the payment is done through PayPal.
* You can also use 2CO option if you want to purchase through Credit Cards/Paypal but make sure you put the correct billing information otherwise you wont be able to receive any download link.
* Your paypal has to be pre-loaded in order to complete the purchase or otherwise please discuss it with us at [email protected].
* As soon as the payment is received, download link of the solution will automatically be sent to the address used in selected payment method.
* Please check your junk mails as the download link email might go there and please be patient for the download link email. Sometimes, due to server congestion, you may receive download link with a delay.
* All the contents are compressed in one zip folder.
* In case if you get stuck at any point during the payment process, please immediately contact us at [email protected] and we will fix it with you.
* We try our best to reach back to you on immediate basis. However, please wait for atleast 8 hours for a response from our side. Afterall, we are humans.
* Comments/Feedbacks are truely welcomed and there might be some incentives for you for the next lab/quiz/assignment.
* In case of any query, please donot hesitate to contact us at [email protected].
* MOST IMPORTANT Please use the tutorials as a guide and they need NOT to be used for any submission. Just take help from the material.
******************************************** Good Luck ***************************************************
Payment Details

 

Lab Price = $8
Please feel free to send us your queries at: [email protected]
Payment Methods

Add to Cart

Buy Now

View Cart

Privacy Policy
We take your privacy seriously and will take all measures to protect your personal information.
Any personal information received will only be used to fill your order. We will not sell or redistribute your information to anyone.
Refund Policy
Incase you face any issues with the tutorial, please free to contact us on [email protected]
We will try our best to resolve the issue and if still persists we can discuss for a refund in case its required.


Leave a Reply