Question: What will be the output of the following Java program - if you run as Java application? import java.io . * ; public class CharArrayInput

What will be the output of the following Java program - if you run as Java application?
import java.io.*;
public class CharArrayInput
{
public static void main(String[] args)
{
String obj = "abcdef";
int length = obj.length();
char c[]= new char[length];
obj.getChars(0,length,c,0);
CharArrayReader input1= new CharArrayReader(c);
CharArrayReader input2= new CharArrayReader(c,0,3);
int i;
try
{
while ((i = input1.read())!=-1)
{
System.out.print((char)i);
}
}
catch (IOException e)
{
e.printStackTrace();
}
}
}
Select one:
a. ebcdaf
b. abcd
c. abcde
d. abcdef

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!