Answer:
it willbe black and white
Explanation:
It would be a table...most likely in a CRM or Sales database
when 2 people answer your question, the brainliest button will appear in the spot of the thanks button
Hope This Helps! Have A Nice Day!!
Answer:
Explanation:
The following code was written in Java and performs the exact requirements listed in the question. It has also been tested by the runner code and works perfectly.
public static boolean insert(String[] words, String newWord, int place) {
if (place > words.length) {
return false;
} else {
for (int x = words.length - 1; x >= 0; x--) {
if (place == x) {
words[x] = newWord;
break;
} else {
words[x] = words[x-1];
}
}
return true;
}
}
I would say C) play with words, images, and assiciations.
~Silver