Your task here is to implement a C# code based on the following specifications. Note that your code should match the specifications in a precise manner. Consider default visibility of classes, data...


QUESTION PROVIDED IN ATTACH IMAGE KINDLY HELP SOON !


Your task here is to implement a C# code based on the following specifications. Note that your code should<br>match the specifications in a precise manner. Consider default visibility of classes, data fields and methods<br>unless mentioned otherwise.<br>Specifications:<br>class definitions:<br>class Person:<br>method definitons:<br>Name: Implement getter setter method (use Auto Implementation Property)<br>visibility: public<br>return type: string<br>Address: Implement getter setter method (use Auto Implementation Property)<br>visibility: public<br>return type: string<br>Age: Implement getter setter method (use Auto Implementation Property)<br>visibility: public<br>return type: int<br>class Personlmplementation:<br>GetName(IList person): display the name and address of all the persons in the List<br>return type: String<br>visibility: public<br>Average(IList person): Method to calculate the average score<br>return type: double<br>visibility: public<br>Max(IList person): Method to calculate the maximum Age<br>return type: int<br>visibility: public<br>Task:<br>• Create a class Person with attributes string Name , string Address and int age and define getter setter<br>method using Auto Implementation Property<br>• Create a class Personlmplementation and implement the below given methods:<br>1. GetName(IList person) display the name and address of all the persons in the List<br>2. Average(IList players) to calculate the average age of all the persons.<br>3. Max(IList players) to find the maximum age of the person.<br>Sample Input<br>IList p = new List();<br>p.Add(new Person {Name =

Extracted text: Your task here is to implement a C# code based on the following specifications. Note that your code should match the specifications in a precise manner. Consider default visibility of classes, data fields and methods unless mentioned otherwise. Specifications: class definitions: class Person: method definitons: Name: Implement getter setter method (use Auto Implementation Property) visibility: public return type: string Address: Implement getter setter method (use Auto Implementation Property) visibility: public return type: string Age: Implement getter setter method (use Auto Implementation Property) visibility: public return type: int class Personlmplementation: GetName(IList person): display the name and address of all the persons in the List return type: String visibility: public Average(IList person): Method to calculate the average score return type: double visibility: public Max(IList person): Method to calculate the maximum Age return type: int visibility: public Task: • Create a class Person with attributes string Name , string Address and int age and define getter setter method using Auto Implementation Property • Create a class Personlmplementation and implement the below given methods: 1. GetName(IList person) display the name and address of all the persons in the List 2. Average(IList players) to calculate the average age of all the persons. 3. Max(IList players) to find the maximum age of the person. Sample Input IList p = new List(); p.Add(new Person {Name = "Aarya", Address = "A2101", Age = 69}); p.Add(new Person {Name = "Daniel", Address = "D104", Age = 40}); p.Add(new Person {Name = "Ira", Address = "H801", Age = 25}); p.Add(new Person {Name = "Jennifer", Address = "11704", Age = 33}); Sample Output Aarya A2101 Daniel D104 Ira H801 Jennifer l1704 41.75 69 IMPORTANT: • If you want to test your program you can implement a Main() method given in the stub and you can use RUN CODE to test your Main(), provided you have made valid function calls with valid data required.
Jun 11, 2022
SOLUTION.PDF

Get Answer To This Question

Related Questions & Answers

More Questions »

Submit New Assignment

Copy and Paste Your Assignment Here