Program to demonstrate the example of Secondary Constructor in Kotlin packagecom.includehelp// Declared Class with Parameterized// primary constructorclassAnimal(name:String){// Property Declarationprivatevarname: String?=nullprivatevartype: String?=null// Init Block, effectively becomes part of// the ...