Windows Form Application

Windows Form Application

6th Grade - University

9 Qs

quiz-placeholder

Similar activities

PH Layar Excel

PH Layar Excel

6th - 8th Grade

10 Qs

User Input in Python

User Input in Python

8th Grade

8 Qs

Formatting The Document (unit 4)

Formatting The Document (unit 4)

5th - 6th Grade

10 Qs

Introduction to MS Access 2013

Introduction to MS Access 2013

7th Grade - University

10 Qs

VB programming

VB programming

10th - 11th Grade

7 Qs

Internet Basics - Northstar Module 2

Internet Basics - Northstar Module 2

University

13 Qs

Mixed Review Python

Mixed Review Python

9th - 12th Grade

10 Qs

Prueba Diagnóstica de Salida - Informática (4S)

Prueba Diagnóstica de Salida - Informática (4S)

9th Grade

10 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..