Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create a Student class. Do followings in Student class. Declare these data members: 1. a static int Count. 2. a private static readonly Random variable

Create a Student class. Do followings in Student class. Declare these data members: 1. a static int Count. 2. a private static readonly Random variable rnd.

private static readonly Random rnd = new Random(); 3. private string firstName, lastName, int sID, create public properties for these three data members. 4. Two constructors a). Constructor 1: public Student(string first , string last , int id) ----this constructor set values for firstName, lastName, sID, and increase Count value by 1. b). Constructor 2: public Student(string first="", string last = "") ----This constructor set values for firstName, lastName, and increase Count value by 1. ----Create StudentID by calling rnd.Next(1000,9999). ----Note this constructor is called when Student s1 = new Student(); Student s2 = new Student("Peter"); Student s3 = new Student("Morgan", "Simmons"); 5. In main() static void Main(string[] args) { List myList = new List(); Student s1 = new Student(); s1.FirstName = "John"; s1.LastName = "Smith"; s1.StudentID = 2560; myList.Add(s1); Student s2 = new Student("Peter"); myList.Add(s2); Student s3 = new Student("Morgan", "Simmons"); myList.Add(s3); Student s4 = new Student("James", "Walters"); myList.Add(s4); Student s5 = new Student("Linda", "Scott", 1005); myList.Add(s5); Console.WriteLine(); Console.WriteLine("Total students: {0}", Student.Count); //Create foreach loop to iterate through list, //use Console.WriteLine to display Student Name and Student ID. }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Database Concepts

Authors: David Kroenke

4th Edition

0136086535, 9780136086536

More Books

Students also viewed these Databases questions

Question

What is the difference between Needs and GAP Analyses?

Answered: 1 week ago

Question

What are ERP suites? Are HCMSs part of ERPs?

Answered: 1 week ago