C# Mastery Hub
Home
Challenges
Discussion
Lessons
Core Topics
C# Fundamentals
Console Applications
Classes & OOP
Windows Forms
ASP.NET Core
SQL Server
VS & SQL Connection
RDLC Reports
.NET MAUI
Getting Started
Getting Started
Website Development
SEO Guide
Security
Project Workflow
Extra Topics
Cloud & Deployment
AWS Cloud
Deployment
About
Contact
Test Your Knowledge
Windows Forms - Lesson 6: Multi-Form Applications Quiz
Answer all questions to test your understanding
1
How do you open a second form without making it modal?
form.Show()
form.ShowDialog()
form.Open()
form.Display()
2
How do you open a second form modally?
form.Show()
form.ShowDialog()
form.Open()
form.Display()
3
How do you get data back from a child form?
Using public properties on the child form
Using static variables
Using global variables
Using the Windows registry
4
What does the using statement do when creating a modal form?
Ensures the form is disposed properly
Makes the form run faster
Prevents the form from closing
Makes the form stay on top
5
What property makes a form an MDI container?
IsMdiContainer
IsMdiParent
MdiContainer
MdiParent
Submit Quiz