<Checkboxes>
Which of the following types are value types in C#?
Answer
System.Object
System.DateTime
System.String
System.TimeSpan
Question 3
Question
<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);
Answer
True
False
Question 4
Question
<Label an Image Dropdown>
Select the best possible commit message accordingly to git-flow methodology