Most likely because she needs a way to grade the classes program writing tests in a quick and efficient way. Let me give an example.fr0stbyte124 wrote: Why do you need to know Hungarian notation?
int is the prefix for Integer, dbl is the prefix for Double, lbl is the prefix for the module Lable, txt is the prefix for the Textbox module,
This is the symbol for a comment: '
Code: Select all
Main Class
'Declare
Dim intExample As Integer
Dim dblAsnwer As Double
'Input
intExample = Convert.Int32(txtUserInput.Text)
'Calculate
dblAsnwer = intExample * intExample
'Output
lblOutput.Text = dblAsnwer
End Class
Code: Select all
Main Class
'Declare
Dim i As Integer
Dim a As Double
'Input
i = Convert.Int32(u.Text)
'Calculate
a = i * i
'Output
o.Text = a
End Class
Also we're learning to debug programs in class now. So do you have any programs I can try my skills against?