Quiz: Array of Strings
Declare an array of strings called words with space for ten values. |
String[] words = new String[10]; |
|
Declare an array of strings called words that contains two values: "yes" and " "no". |
String[] words = { "yes", "no" }; |