Write a method that takes in an arbitrary number of String objects, and then prints out all of them that have over 10 characters.

What will be an ideal response?

```
public void printLongStrings(String ... words) {
for(String w : words)
if(w.length() > 10)
System.out.println(w);

}
```

Computer Science & Information Technology

You might also like to view...

A small sample image of a style displayed in a gallery is a(n) ________

A) thumbnail B) snapshot C) clip D) style set

Computer Science & Information Technology

Which of the following is the MAIN difference between an LCD display and an LED display?

A. The ability to use external displays B. The source of the backlighting C. The viewable size of the display D. The size of the pixel display

Computer Science & Information Technology