Câu 35 Trong C#, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?
string str = "p ph";
int[] arrOne = { 1, 2, 3, 4 };
string[] result = new string[4];
for (int i = 1; i < arrOne.Length; i++)
{
result[i] = "h" + str[str.Length - i] + "doctor";
}
Console.Write(result[arrOne[result.Length - 2]]);
Đáp án của bạn:
Câu 36 Trong C#, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?
string str = "zendvn";
int[] arrOne = { 1, 2, 3 };
string result = "";
for (int i = 1; i < arrOne.Length; i++)
{
result += str[arrOne[i]];
}
Console.Write(result);
Đáp án của bạn:
Câu 37 Trong C#, sau khi thực hiện đoạn mã kết quả hiển thị sẽ là gì?
string str = "javascript";
int[] arrOne = { 1, 2, 3, 4, 5 };
string[] result = { "a", "b", "c ", "d" };
for (int i = 1; i < arrOne.Length; i += 2)
{
result[i] += str[str.Length - i];
}
Console.WriteLine(string.Join("- ", result));
Đáp án của bạn: