First question:
1) What do Option Explicit and Option Strict do? Option strict requires type-casting, right, like you can assign a Double value to an Integer variable, or a String to an Integer, etc.? But what about Option Explicit?
2) If you're writing a project, and you have to convert feet and inches to meters and centimeters, where in the code would you assign the variables for that? Does it matter, or do you have to do it on the textboxes where that data is received, or do you do it in the area relating to the button where the data is calculated?
I might have additional ones, but that's all I can come up with right now...
OH!
And:
3) How do you clear labels in code?