list out the various way to create the instance of the object without using new opreator code example
Example: instanciate a object without the new keyword in java
Class.forName("YOURCLASSNAME").newInstance();
Class.forName("YOURCLASSNAME").newInstance();