MCQs > IT & Programming > C# > Consider the following C# code. What would be the value of d? int? a = 10; int? b = 11; int? c = 12; a = null; int? d = a ?? b ?? c;

C# MCQs

Consider the following C# code. What would be the value of d?

int? a = 10;
int? b = 11;
int? c = 12;
a = null;
int? d = a ?? b ?? c;

Answer

Correct Answer:

11

Explanation:

Note: This Question is unanswered, help us to find answer for this one

C# Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it

search

C# Skill Assessment

Overall Skill Level-Poor

Your Skill Level: Poor

Retake Quizzes to improve it