Computer Applications
Give the output of the following statements:
String x[] = {"SAMSUNG", "NOKIA", "SONY", "MICROMAX", "BLACKBERRY"};
System.out.println(x[3].length());
Java
Java String Handling
ICSE 2017
29 Likes
Answer
8
Working
x[3].length()
gives the number of characters in the fourth element of the array x.
Answered By
15 Likes
Related Questions
Give the output of the following:
String n = "Computer Knowledge"; String m = "Computer Applications"; System.out.println(n.substring(0,8).concat(m.substring(9))); System.out.println(n.endsWith("e"));
Give the output of the following string functions:
"DEDICATE".compareTo("DEVOTE")Give the output of the following string functions:
"ACHIEVEMENT".replace('E', 'A')Give the output of the following statements:
String x[] = {"SAMSUNG", "NOKIA", "SONY", "MICROMAX", "BLACKBERRY"};
System.out.println(x[1]);