Write a class Board with Width, Height and Color as data members. Write the Display() method to print the properties of the board in the form: Board size: 100cm x 50cm. Board color: white. Define two constructors: one that takes no parameters (where the default values of data memebers are Width = 200, Height = 100, Color = "black") and one to take appropriate parameters. In the main method create two objects of class Board (one with and one without parameters) and print their properties using method Display().