Multiple choice technology programming languages

You have the following class definition: public class Language {} You need constructors to provide developers with two methods of object instantiation. Developers should be able to instantiate the object with either a String argument or no argument. What should you do to achieve this goal? (Choose all that apply.) You have not made any correct choices. The correct options are as follows

    1. Add Language (string Name) {}
    1. Add Language ( ) { }
    1. Add Language (String Name) { }
    1. Allow the compiler to add a default constructor.
Reveal answer Fill a bubble to check yourself
A,D Correct answer