Data type conversion in java
Above screenshot gives you size of each data type in java, which will give us an idea of compatibility of data type conversion and the result if you forcefully convert one to another type. String to int String str = “234”; int i = Integer.parseInt(str); int to double int i = 10; double d =…