JAVA
java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
public class Program
{
public static void main(String[] args) {
//Given the following declaration
char c1 = 'c';
char c2 = '#';
String s1 = "Computer Science";
String s2 = "ment";
int position = 3;
//What is the output of s
System.out.println(s2.substring(1,3));
System.out. println(s1.indexOf("en",2));
}
}
Enter to Rename, Shift+Enter to Preview
OUTPUT
Run