Question: Assume you have a string variable named firstName and an int variable named age. Which of the following statements creates an instance of the Account
Assume you have a string variable named firstName and an int variable named age. Which of the following statements creates an instance of the Account class using the constructor with the following declaration?
public Account(string firstName, int age) { }
a. var account = new Account(firstName, age);
b. var account = Account(age, firstName);
c. Account account = new Account(age, firstName);
d. Account account = Account(firstName, age);
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
