Search Header Logo

28.02 C sharp

Authored by Gaukharka Marat

Other

12th Grade

Used 15+ times

28.02 C sharp
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

15 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Какая строка кода содержит ошибку?

if (a > b)

    Console.WriteLine("a больше b");

else if (a < b)

    Console.WriteLine("a меньше b");

else

    Console.WriteLine("a равно b");

if (a > b)

Console.WriteLine("a больше b");

else if (a < b)

Нет ошибки

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Что будет выведено в результате выполнения следующего кода?

```csharp

for (int i = 0; i < 3; i++)

{

    Console.WriteLine(i);

}

0 1 2

1 2 3

0 1 2 3

1 2

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Сколько раз будет выполнен следующий цикл?

int i = 5;

while (i < 8)

{

    i++;

}

2

3

4

5

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Какое минимальное количество раз будет выполнен следующий цикл?

int i = 10;

do

{

    i++;

} while (i < 5);

0

1

5

10

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Соотнесите вывод программы с ее кодом:

int[] nums = {1, 2, 3};

foreach (var num in nums)

{

    Console.WriteLine(num);

}

Выводит числа от 1 до 3 включительно 

Выводит числа от 0 до 2 включительно

Выводит одно число 3 

Не компилируется

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Как правильно объявить массив целых чисел?

int array[] = new int[5];

int[] array = new int[5];

array<int> = new int[5];

int array = new int[5];

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Какое значение будет в `x` после выполнения следующего кода?

int[] array = {1, 2, 3, 4, 5};

int x = array[2];

1

2

3

4

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Microsoft

Continue with Microsoft

or continue with

Facebook

Facebook

Apple

Apple

Others

Others

Already have an account?