What GridBagConstraints constants can be used in place of gridx and gridy?

a. RELATIVE and REMAINDER.
b. CENTER and BOTH.
c. NORTH and SOUTH.
d. FILL and NONE.


a. RELATIVE and REMAINDER.

Computer Science & Information Technology

You might also like to view...

What will be the output when the button is clicked on?

``` Private Sub btnDisplay_Click(...) Handles btnDisplay.Click Dim first, middle, last As String first = "Augusta" middle = "Ada" last = "Byron" Initials(first, middle, last) End Sub Sub Initials(c As String, b As String, a As String) Dim theInitials As String theInitials = a.Substring(0, 1) & b.Substring(0, 1) & c.Substring(0, 1) txtBox.Text = theInitials End Sub ``` (A) AAB (B) BAA (C) abc (D) ABA

Computer Science & Information Technology

To calculate the total of values in a group, use the ________ operator

A) Between...And B) Or C) Sum D) Avg

Computer Science & Information Technology

If n = 1000, to sort the list, bubble sort makes about ____ item assignments.

A. 10,000 B. 100,000 C. 250,000 D. 500,000

Computer Science & Information Technology

A form that is based on a table that contains a(n) ________ macro inherits the logic of the table.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology