Answer to Question #274954 in Java | JSP | JSF for Arnold

Question #274954

Compare and use various data types in a java program, declare and use constant and variables and cast and value of one data type to another data type. Write a java program that initialize the following:



"Data Type"


double


short


double


int




"Variable Name"


size


grade


final_grade


final_length




"Value"


125.83d


87


grade


side




Name the class as Data and save the file. Debug syntax and logical errors if there is any in the program. Save the file.




1
Expert's answer
2021-12-03T12:35:27-0500
public class Demo {
 public static void main(String[]args) {
  double size = 125.83d;
  short grade = 87;
  double final_grade = (double) grade;
  int final_size = (int) size;
 }
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS