Find the error in the following code and discuss how to fix…
Find the error in the following code and discuss how to fix it. public class Test{public static void main(String[] args){ double x = 6.50; //we created a double variable int y; */In the next line, we convert the double value to an integer value /* y = (int) x; } }