What type of JList selection mode would allow the user to select March, June and July in one step?
Consider the list below:
January
February
March
April
May
June
July
August
September
October
November
December
a. SINGLE_SELECTION.
b. SINGLE_INTERVAL_SELECTION.
c. MULTIPLE_INTERVAL_SELECTION.
d. All of the above.
c. MULTIPLE_INTERVAL_SELECTION.
Computer Science & Information Technology
You might also like to view...
What is the output of the following code?
int a = 3, b = 2; int c = 0; while (c < 3) { a = a + b; cout << a << “ “; c = c + 1; } cout << b;
Computer Science & Information Technology
Sound is digitized __________.
a. sound cannot be digitized b. by a compression algorithm c. by its very nature d. through a sampling process
Computer Science & Information Technology