class Issue4 { public static void Main (string[] args) { JohnsPresentation(); } public static void JohnsPresentation () { string thing1 = "nFavourite Verse: nn"; Console.Write(thing1); string verse = "We don't need no education nWe don't need no thought control nNo dark sarcasm in the classroom nTeacher, leave them kids alone n"; Console.WriteLine(verse); string thing2 = "Personal Information:nn"; Console.Write(thing2); string name = "Kukta Norbert"; string interpolatedName = $"Name: {name}n"; Console.Write(interpolatedName); string profile = "Informatics"; string interpolatedProfile = $"Profile: {profile}"; Console.WriteLine(interpolatedProfile); string birthDate = "28.01.2003"; string interpolatedBirthDate = $"BirthDate: {birthDate}"; Console.WriteLine(interpolatedBirthDate); string hobby = "Gaming"; string interpolatedHobby = $"Hobby: {hobby}"; Console.WriteLine(interpolatedHobby); } }