Windows Form Application

Windows Form Application

6th Grade - University

9 Qs

quiz-placeholder

Similar activities

visual studio

visual studio

9th Grade

10 Qs

C# Programming

C# Programming

9th - 12th Grade

6 Qs

Introduction to MS Access 2013

Introduction to MS Access 2013

7th Grade - University

10 Qs

Computer

Computer

11th Grade

7 Qs

Windows 10 Installation

Windows 10 Installation

11th - 12th Grade

12 Qs

Prueba #1|VB

Prueba #1|VB

12th Grade

10 Qs

PRUEBA CORTA 2 - DESARROLLO DE SOFTWARE I - U2

PRUEBA CORTA 2 - DESARROLLO DE SOFTWARE I - U2

10th Grade

10 Qs

Урок №13. Компоненти CheckBox та RadioButton

Урок №13. Компоненти CheckBox та RadioButton

8th Grade

8 Qs

Windows Form Application

Windows Form Application

Assessment

Quiz

Computers

6th Grade - University

Medium

Created by

C Payne

Used 48+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Can you declare variables in Windows Form Applications?
Yes
No

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Is the title before or after the comma?
Messagebox.Show ("______ ,______")
After
Before

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Does the message go before or after the comma?
Messagebox.Show ("______ ,______")
Before
After

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the correct way of creating a message in Windows Form Applications?
Console.Writeline
MessageBox.Show
Textwindow.Write
Console.Readline()

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What message will be outputted if the box is checked 
 If RadioButton1.Checked Then            MessageBox.Show("Don't check me!")
Don't check me!
RadioButton1
Hi!
Good Morning!

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What would be the correct way of assigning the text box to the variable 'Name' 
Dim Name As String
 

Name = Textbox.Text
Name = Textbox
Name = Mr Payne
Name = "Hello!"

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You can't run a Windows Form Application
True
False

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The 'Name' and the 'Text' field are different things in a Windows Form Application
True
False

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Will the message box include what is saved in the name variable? 
Dim Name As String       
Name = TextBox.Text
MessageBox.Show("HI " & Name & "!")
Yes!
No..