What will be the output of the following program.
class BikeTester
{
public static void main(String s[])
{
Bike bike = new Bike("Hero Honda", "Shine", 125);
bike.mileage = 72.5;
bike.diskBrakes = false;
System.out.println(bike.company + "'s " + bike.model + " gives a mileage of " + bike.mileage + "kmpl.");
}
}
class Bike
{
Bike(String companyParam, String modelParam, int ccParam)
{
company = companyParam;
model = modelParam;
cc = ccParam;
}
String company;
String model;
int cc;
double mileage;
boolean diskBrakes;
}