MCQs > IT & Programming > C# > Which of the following will output the string below?

C# MCQs

Which of the following will output the string below?

"\t\t\t\t\t"

Answer

Correct Answer: private string Tabs(uint numTabs) { StringBuilder sb = new StringBuilder(); for (uint i = 0; i <= numTabs; i++) { sb.Append("\t"); } return sb.ToString(); }

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