Main.java:4: error: incompatible types: String cannot be converted to int myNum = "Hello"; // Error: cannot assign a String to an int ^ Main.java:7: error: incompatible types: int cannot be converted to String myText = 123; // Error: cannot assign a number to a String ^ 2 errors