Computer Science, asked by priyankadutta2006, 10 months ago

5. What is the output of this program?
class String_demo
{
public static void main(String args[])
{
char chars[] = {'a', 'b', 'c'};
String s = new String(chars);
System.out.println(s);
A. a
В. b
C.c
D. Abc​

Answers

Answered by vinay71730
2

Answer:

the answer is A B C this is output

Similar questions