Question: Compile and run the java file to ensure it works b. Add code to VariableDemo.java that declares and initialize, with appropriate names and values, primitive

Compile and run the java file to ensure it works b. Add code to VariableDemo.java that declares and initialize, with appropriate names and values, primitive variables of type short, long, byte, and float. Remember to qualify your right-hand operand with the appropriate suffix where appropriate. c. Add code to display all of the nearly declared variables d. Finally, add code that places the contents of your float into your variable type long. Note: This will require that you cast the variable
lic static void main(String[] args) // declare and initialize variables and a constant char c= ' B '; double d=4.5; int i=5; boolean b = true; final double INTEREST_RATE =2.9;// constant String s= "Hello World!"; // display variable contents System.out.println("c = " +c); System.out.println("d ="+d); System.out.println("i=" +i); System.out.println("b ="+b) System.out. println("INTEREST_RATE ="+ INTEREST_RATE); System.out. println("s ="+s); I/ Add additional functionality here
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
