Zusammenfassung der Ressource
Frage 1
Frage
<Multiple choice test>
What will be printed in console when the following code is run:
Antworten
-
Car
Ambulance
Car.Feature
Ambulance.Feature
-
Ambulance.Feature
Car.Feature
Car
Ambulance
-
Car.Feature
Ambulance.Feature
Car
Ambulance
-
Ambulance
Ambulance.Feature
Car
Car.Feature
Frage 2
Frage
<Checkboxes>
Which of the following types are value types in C#?
Antworten
-
System.Object
-
System.DateTime
-
System.String
-
System.TimeSpan
Frage 3
Frage
<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);
Frage 4
Frage
<Label an Image Dropdown>
Select the best possible commit message accordingly to git-flow methodology
Antworten
-
feature implementation
-
production bugfix
-
merge bugfix to DEV
-
merge hotfix to PROD