Sail E0 Webinar
Question


What is the output of this program?


class output {
public static void main(String args[])
{
String a="hello i love java";
System.out.println(indexof('i')+" "+indexof('o')+" "+lastIndexof('i')+" "+lastIndexof('o') ));
}
}
Options:
A .  6 4 6 9
B .  5 4 5 9
C .  7 8 8 9
D .  4 3 6 9
Answer: Option A

indexof('c')and lastIndexof('c')are defined function which are used to get the index

 of first and last occurrence of
the character pointed by c in the given array.
Output:
$ javac output.java
$ java output
6 4 6 9




Was this answer helpful ?
Next Question

Submit Solution

Your email address will not be published. Required fields are marked *

Latest Videos

Latest Test Papers