
Тест з C# та Windows Forms (Final)
Authored by Себастьян Біла
Other
2nd Grade
Used 8+ times

AI Actions
Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...
Content View
Student View
17 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Як можна динамічно додати новий Control у форму під час виконання програми?
this.Controls.Add(new Button());
this.AddControl(new Button());
this.Register(new Button());
this.FormElements.Append(new Button());
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Як можна змінити заголовок форми під час виконання програми?
this.SetTitle("Новий заголовок");
this.FormTitle = "Новий заголовок";
this.Text = "Новий заголовок";
this.Title = "Новий заголовок";
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Як можна перевірити, чи існує файл перед його зчитуванням?
File.Exists("data.json");
File.Check("data.json");
File.IsValid("data.json");
File.Available("data.json");
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Як зберегти об'єкт у форматі JSON у C#?
File.WriteAllText("data.json", JsonSerializer.Serialize(obj));
File.Save("data.json", obj);
Json.SaveToFile("data.json", obj);
obj.ToJsonFile("data.json");
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Який елемент управління у Windows Forms найкраще підходить для створення меню?
MenuStrip
ToolStrip
ContextMenuStrip
MainMenu
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Яка властивість використовується для відображення підказки (tooltip) у Windows Forms?
ToolTip.Text
ToolTipMessage
ToolTip.SetToolTip
Control.ToolTip
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Як отримати дані з JSON-файлу та перетворити їх на об’єкт у C#?
obj = File.ReadAll("data.json").Deserialize();
obj = JsonSerializer.Deserialize(File.ReadAllText("data.json"));
obj = Json.ReadFile("data.json");
obj = new MyClass("data.json");
Access all questions and much more by creating a free account
Create resources
Host any resource
Get auto-graded reports

Continue with Google

Continue with Email

Continue with Microsoft
or continue with
%20(1).png)
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?