<Checkboxes>
Which of the following types are value types in C#?
Respuesta
System.Object
System.DateTime
System.String
System.TimeSpan
Pregunta 3
Pregunta
<True or False>
When the following code is run, what would be the value of "z" variable?
int a = 1;
var x = (object) a;
var y = (object) a;
bool z = (x == y);
Respuesta
True
False
Pregunta 4
Pregunta
<Label an Image Dropdown>
Select the best possible commit message accordingly to git-flow methodology