Developing Applications - Class 8 - Answer Key
Developing Applications - Class 8 - Answer Key
Reinforcement Worksheet
Developing Applications – Visual Basic
Term II – 2024
Q1. You are developing a Library management system for your school. Discuss the importance of a
well-designed graphical user interface (GUI) in Visual Basic. Provide specific design considerations
and principles you would apply to make the system user-friendly.
Answer:
Q2. You are given a partially completed Visual Basic program that is intended to calculate the final
grade for a student based on their test scores. However, there are errors in the program that need to
be identified and fixed.
Answer:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs)
Handles Button1.Click
Score = TextBox1.Text
End
TextBox2.Text = grade
End Sub
sum = 0
For i = 1 To 5
sum = sum + i
Next
Label1.Text = sum
Answer:
Answer:
Q. 5 Identify and explain the difference between Public and Private Variables.
Answer: