Computer Applications
Predict the output of the following Java program snippet:
String str = "Information Technology";
int p;
p = str.indexOf('n');
System.out.println(p);
Java
Java String Handling
40 Likes
Answer
1
Working
str.indexOf('n')
will return the first index of n
in str
which is 1. So, the output of this program is 1.
Answered By
22 Likes
Related Questions
What do the following functions return?
String x = "Vision"; String y = "2020"; System.out.println(x + y);
Predict the output of the following Java program snippet:
String str1 = "Information Technology"; String str2 = "information technology"; boolean p = str1.equalsIgnoreCase(str2); System.out.println("The result is " + p);
Predict the output of the following Java program snippet:
String n1 = "46", n2 = "64"; int total = Integer.parseInt(n1) + Integer.parseInt(n2); System.out.println("The sum of " + "46 " + "and" + " 64" + " is " + total);
Predict the output of the following Java program snippet:
boolean p; p = ("BLUEJ".length() > "bluej".length()) ? true: false;