Step 2:
***************************************************
Question:
	Explain what the "new" operator does and explain the difference 
	between a default constructor and a constructor that isn't default.
***************************************************
Please answer below in two or three sentences:
	The "new" operator instantiates (creates) an object specified by the 
	constructor that follows it. A default constructor has no arguments 
	and specifies that the object should be instantiated with default 
	values where as a non default constructor has some arguments which 
	should be used to instantiate the object instead of the default ones. 