Write a Java statement to determine the length of a string variable called input. Store the result in an integer variable called strLength.

What will be an ideal response?


int strLength = input.length();

Computer Science & Information Technology

You might also like to view...

The following code compiled, but while running it the program appears to hang (e.g. nothing happens). This is a sign that there may be an infinite loop. What part of this code fragment may be causing an infinite loop?

``` while(i < 50); { System.out.println(i); i+=2; } ```

Computer Science & Information Technology

Each time you ____________________ a compressed image file, the file compresses further.

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

Computer Science & Information Technology

When you’re trying to make something usable, the most important thing to do is

a. reduce the number of clicks required b. eliminate the questions marks over users’ heads c. keep everything consistent

Computer Science & Information Technology

The SmartArt button is found in the Text group of the Insert tab

Indicate whether the statement is true or false

Computer Science & Information Technology