Menu
×
×
Correct!
Exercise:Change the value from "Volvo" to "Opel", in the
string[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
@(7) = @(6);
Console.WriteLine(cars[0]);
string[] cars = {"Volvo", "BMW", "Ford", "Mazda"};
cars[0] = "Opel";
Console.WriteLine(cars[0]);
Not CorrectClick here to try again. Correct!Next ❯ |
This will reset the score of ALL 58 exercises.
Are you sure you want to continue?