Introduction
Here is the source code for Main.java
Source
public class Main {
public static void main(String args[]) {
Object objectRef = "hello"; // assign string to an Object reference
System.out.printf("Object = %s\n", String.valueOf(objectRef));
}
}