Windows Forms. Уровень 2.

Windows Forms. Уровень 2.

5th Grade

18 Qs

quiz-placeholder

Similar activities

Tech Team: Highlights of the Year

Tech Team: Highlights of the Year

KG - 12th Grade

15 Qs

Day Three Recap

Day Three Recap

1st - 5th Grade

13 Qs

Georgia Milestone's Examiner Quiz

Georgia Milestone's Examiner Quiz

1st - 5th Grade

15 Qs

GCES Handbook 23/24

GCES Handbook 23/24

1st - 5th Grade

19 Qs

Planowanie i realizacja usług w recepcji

Planowanie i realizacja usług w recepcji

1st - 5th Grade

13 Qs

Стыковые гост

Стыковые гост

5th Grade

15 Qs

Lesson 41 - file handling & Various opening modes in file

Lesson 41 - file handling & Various opening modes in file

5th Grade

20 Qs

Common Coding Vocabulary

Common Coding Vocabulary

2nd - 8th Grade

13 Qs

Windows Forms. Уровень 2.

Windows Forms. Уровень 2.

Assessment

Quiz

Professional Development

5th Grade

Hard

Created by

Leonid Karuna

Used 1+ times

FREE Resource

AI

Enhance your content

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

18 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Укажите корректный способ добавления элемента в список типа ListBox:

this.listBox1.Items += "string";

this.listBox1.Items = "string";

TPK6RsQAyb2ZP4w98dk1PWZQDzh2vqcQXT

this.listBox1.Add("string");

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Укажите корректный способ добавления набора элементов в список ListBox:

this.listBox1.Items.Add(new object[] { "one", "two", "tree"});

this.listBox1.Items.AddRange(new object[] { "one", "two", "tree"});

this.listBox1.Items.AddRange( "one", "two", "tree");

this.listBox1.Items = new object[] { "one", "two", "tree"};

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Как удалить все элементы списка типа ListBox:

this.listBox1.Items.Delete();

this.listBox1.Items.Clear();

this.listBox1.Clear();

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

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

Используя свойство Items

Используя свойство SelectedIndices

Используя свойство SelectedItems

Используя свойство SelectedIndex

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Укажите свойство в котором содержится коллекция отмеченных элементов в данном элементе управления CheckedListBox:

CheckedItems

CheckedIndices

Items

CheckOnClick

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Выберите корректный способ установки приращения индикатора выполнения ProgressBar:

progressBar1.PerfomStep = 5;

progressBar1.SetStep(5);

progressBar1.Step = 5;

progressBar1.Step(5);

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Как увеличить текущую позицию индикатора хода выполнения ProgressBar:

Задать свойство ChangeStep

Вызвать метод SetStep(5)

Вызвать метод PerformStep()

Задать свойство Step

Create a free account and access millions of resources

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

By signing up, you agree to our Terms of Service & Privacy Policy

Already have an account?