| | A multi dimensional array will be created with the dimensions of [3,7] 3- Use a for loop to duplicate the functionality of the following code snippet int i = 5; while (i >= -5) { MessageBox.Show( i + " fezzes are cool" ); i = i - 1; } 4 - How would set up 6 radio buttons so that I can have 2 groups of 3, where only one button in group1 can be selected and one button in group 2 can be selected? If I select a different radio button in group 1, the previously selected button will become deselected and the new one is selected. | | Name three of the radio buttons the same name, assigning them different text values Name the other three radio buttons the same name (but different from the first set), assigning them all different values | | | Set the grouping property of the first set to of radio buttons to group1 and the grouping property of the second set to group2 | | | Select three of the radio buttons, right click and choose group together. Select the other three, right click and select group together. | | | Add three radio buttons to one panel, and three other radio buttons to another panel 5- Given the list nameList which contains {"Chris", "Kaylee", "Kathryn", "Jon"} what would be returned by nameList.IndexOf("Kaylee") 6 - Which of the following is the correct output for the following code snippet? public bool IsOdd( int testValue) { return (testValue % 2 == 1); } ... MessageBox.Show(IsOdd(12).ToString()); | | A message box will display True | | | A message box will display False | | | A message box will display bool | | | This will not compile 7 - How would you assign the following variable to myTextbox? int myCoolValue = 22; | | myTextbox.Text = myCoolValue; | | | myTextbox.Text( myCoolValue ); | | | myTextbox.Text = String.Convert( myCoolValue ); | | | myTextbox.Text = myCoolValue.ToString(); | | | |