| When you want to send the data to a new form Arrays of objects such as labels, text boxes, and buttons are called ___________ | Array Elements Determine the output displayed when the button is clicked. Structure Appearance Dim height As Double Dim weight As Double End Structure Private Sub btnDisplay_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnDisplay.Click Dim person1, person2 As Appearance person1.height = 82 person1.weight = 270 person2.height = 11 * 6 person2.weight = 300 If person1.height = person2.height Then lstOutput.Items.Add("The heights are same") End If person2 = person1 lstOutput.Items.Add(person2.weight) End Sub End Class | 300 Which of the following listed below, provides a convenient way of packaging as a single unit several related variables of different types. | None of the above Which of the following defines a three-dimensional array of integers? | Dim aryInts(15, 10, 5) As Integer | | Dim ary3D(15, 10, 5) As aryInts | | Dim aryInts(3*5) As Integer | | Dim aryInts(15 10 5) As Integer | | Dim aryInts(15, 10, 5) As Array | | | | |