Activity 3.1: Write code snippets
[20min]
Write the VB.Net programming statements to do the following:
1. Declare a 2D integer array named intAge() with 6 rows and 12 columns.
2. Initialise a 2D string array named strClassNames() with 5 rows and 2 columns. The FirstName and Surname are stored in the array for five students. Use any five students' names when you are initializing the array.
3. Store the values 10, 20, 30, 40, 50, 60, 70, 80, 90, 100, 110, 120 in the first row of the 2D array intAge().
4. Double the number stored in the 1st row and 6th column of array intAge().
5. Halve the number stored in the 1st row and 10th column of array intAge().
6. Display the first 5 numbers stored in the 1st row of array intAge() in the ListBox lstDisplay
TOTAL: []