package abc;
public class TemperatureClass {
private float temperature;
public float getTemperature() {
return temperature;
}
public void setTemperature(float temperature) {
this.temperature = temperature;
}
public boolean isEthylFreezing(){
if(this.temperature<=-173){
return true;
}
else{
return false;
}
}
public boolean isEthylBoliing(){
if(this.temperature>=172){
return true;
}
else{
return false;
}
}
public boolean isOxygenFreezing(){
if(this.temperature<=-362){
return true;
}
else{
return false;
}
}
public boolean isOxygenBoliing(){
if(this.temperature>=-306){
return true;
}
else{
return false;
}
}
public boolean isWaterFreezing(){
if(this.temperature<=32){
return true;
}
else{
return false;
}
}
public boolean isWaterBoliing(){
if(this.temperature>=212){
return true;
}
else{
return false;
}
}
}
package abc;
import java.util.Scanner;
public class TempTester {
public static void main(String[] args) {
TemperatureClass temp=new TemperatureClass();
Scanner sc=new Scanner(System.in);
System.out.println("Enter temperature :");
float tempture=sc.nextFloat();
temp.setTemperature(tempture);
System.out.println(checkTemp(temp));
temp.setTemperature(65);
System.out.println(checkTemp(temp));
temp.setTemperature(-264);
System.out.println(checkTemp(temp));
temp.setTemperature(-43);
System.out.println(checkTemp(temp));
}
public static String checkTemp(TemperatureClass temp){
String freeze="";
String boil="";
if(temp.isEthylFreezing()){
freeze=freeze+"Ethyl Alcohol ";
}
if(temp.isOxygenFreezing()){
freeze=freeze+"Oxygen ";
}
if(temp.isWaterFreezing()){
freeze=freeze+"Water";
}
if(temp.isEthylBoliing()){
boil=boil+"Ethyl Alcohol ";
}
if(temp.isOxygenBoliing()){
boil=boil+"Oxygen ";
}
if(temp.isWaterBoliing()){
boil=boil+"Water";
}
if(freeze==""){
freeze="Nothing";
}
if(boil==""){
boil="Nothing";
}
String finalstr=freeze+" will freeze and "+boil+" will boil at this temperature";
return finalstr;
}
}
Expected output:

Java basic programming course simple as possible use java import and comments to explain the code...
java programming course use java import. Follow instructions
and comments to explain the code thanks in advance
Print L A polymomial can be represented as a linked list, where each node called a polyhede contoins the coefficient and the exponent of a term of the pelynomial For example, The pelynomial 4x-31-5 would be represented as the linked list 3 3xa Write a Polynomial class that has methods for creating a polhynomial, reading and writing a polynomial, and adding a pair...
Please help with Java programming!
This code is to implement a Clock class.
Use my beginning code below to test your
implementation.
public class Clock {
// Declare your fields here
/**
* The constructor builds a Clock object and sets time to
00:00
* and the alarm to 00:00, also.
*
*/
public Clock() {
setHr(0);
setMin(0);
setAlarmHr(0);
setAlarmMin(0);
}
/**
* setHr() will validate and set the value of the hr field
* for the clock.
*
*...
this is for java programming Please Use Comments I am not 100% sure if my code needs work, this code is for the geometric if you feel like you need to edit it please do :) Problem Description: Modify the GeometricObject class to implement the Comparable interface and define a static max method in the GeometricObject class for finding the larger (in area) of two GeometricObject objects. Draw the UML and implement the new GeometricObject class and its two subclasses...
*** FOR A BEGINNER LEVEL JAVA CLASS, PLEASE KEEP CODE SIMPLE, AND WE USE BLUE J IN CLASS (IF IT DOESNT MATTER PLEASE COMMENT TELLING WHICH PROGRAM YOU USED TO WRITE THE CODE, PREFERRED IS BLUE J!!)*** ArrayList of Objects and Input File Use BlueJ to write a program that reads a sequence of data for several car objects from an input file. It stores the data in an ArrayList<Car> list . Program should work for input file containing info...
Java Homework Help. Can someone please fix my code and have my
program compile correctly? Thanks for the help.
Specifications:
The class should have an int field named monthNumber that holds
the number of the month. For example, January would be 1, February
would be 2, and so forth. In addition, provide the following
methods.
A no- arg constructor that sets the monthNumber field to 1.
A constructor that accepts the number of the month as an
argument. It should...
please do in java and comments the code so i can understand Requirements: Create a Java class named “MyRectangle2D.java”. Your class will have double two variables named x and y. These will represent the center point of your rectangle. Your class will have two double variables named width and height. These will represent the width and height of your rectangle. Create getter and setter methods for x, y, width, and height. Create a “no argument” constructor for your class that...
please explain this Java problem with source code if possible
Project: Strictly identical arrays Problem Deseription: Two arrays are strictly identical if their correspondimg elements are equal Write a program with class name StrictlyIdentical that prompts the user to enter two lists ed integers of size 5 and displays whether the two are strictly identical. Usc following method header to pass two arrays and retum a Boolcan public static boolean cualsint[] array 1, int[] array2) Method will return true if...
Write code in Java programming language. The ShoppingCart class will be composed with an array of Item objects. You do not need to implement the Item class for this question, only use it. Item has a getPrice() method that returns a float and a one-argument constructor that takes a float that specifies the price. The ShoppingCart class should have: Constructors: A no-argument and a single argument that takes an array of Items. Fields: • Items: an array of Item objects...
Java please The kelvin is the base unit of temperature in the International System of Units (SI), having the unit symbol K. It is named after the Belfast-born, Glasgow University engineer and physicist William Thomson, 1st Baron Kelvin (1824–1907). It uses absolute zero as its null point. The Celsius scale, also known as the centigrade scale, is a temperature scale used by the International System of Units (SI). The Celsius scale is based on 0 °C for the freezing point...
[Continued] Your Course class should have:
1)a getter for the course 'code', so that it is read-only;
2)a getter and setter for the lecturer attribute, so that it is
readable and writable;
3)a constructor that creates the associations shown in the UML
diagram;
4)an enrolStudent method that adds a given Student object into
the 'enrolled' set;
5)a withdrawStudent method that removes a given Student object
from the 'enrolled' set and returns true if the student was
successfully found and removed,...