Question: Hi I have problem with Java task Need to build a car list generator which will generate 100 random cars and do some stream method
Hi
I have problem with Java task
Need to build a car list generator which will generate 100 random cars and do some stream method after generating 100 random cars :
- filter the stream so that they remain only the most powerful ones with a power of over 300 HP, with engines not less than 2.0 liters and not more than 4.0 liters of capacity;
- remove duplicates;
-return the car with the most efficient engine (the best power-to-capacity ratio, i.e. the highest power per liter)
They are two classes:
Class Car with fields :
- producer = BMW,
-model,
-segment,
-engine.
and ClassEngine with fields :
-power,
-torque,
-displacement,
-description
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
