VIKASH SINHA

250
reputation
3
17

public class Baby { public const string eduCollege = "SCHOOL"; public const string eduMajor = "Computer Science & Engineering"; public const string eduMinor = "Mathematics"; public string profession; public string favLang; public string hobby1; public string hobby2; private string hobby3;

                    public Baby()
                    {
                        profession = "Principal Engineer";
                        favLang = "JAVA";
                        hobby1 = "CRICKET";
                        hobby2 = "Badminton";
                        hobby3 = "Carom";
                    }
                }