public class User { String name; short age; int height; // Write your code here public User(String name, short age, int height){ this.name=name; this.age=age; this.height=height; } public User(short age, int height, String name){ this.age=age; this.height=height; this.name=name; } public User(int height, short age, String name){ this.height=height; this.age =age; this.name=name; } public User(String name, int height, short age){ this.name=name; this.height=height; this.age=age; } public User(int height,String name,short age){ this.height=height; this.name=name; this.age=age; } public User(short age, String name, int height){ this.age=age; this.name=name; this.height=height; } public static void main(String[] args) { User user1 = new User (35, 5, "Dinesh"); System.out.println(user1.name); System.out.println(user1.height); System.out.println(user1.age); } }