Multiple choice

Which of the following is the default form which Visual Basic includes initially with any project?

  1. Form10

  2. Forms

  3. Form1

  4. Form0

Reveal answer Fill a bubble to check yourself
C Correct answer
Explanation

When you create a new project in Visual Basic, it automatically includes one form named Form1 by default. Additional forms can be added with names like Form2, Form3, etc., but Form1 is always the initial form. The other options (Form10, Forms, Form0) are not default VB naming conventions.