Computer Science, asked by sarthakkhandelwal599, 1 year ago

What Is the output of the following:String a="Java is programming language \n developed by \t\'James Gosling\'";System. out. println(a);
Please Answer ASAP

Answers

Answered by siddhartharao77
85

Sample Program:

String a;

a = "Java is programming language \n developed by \t\' James Gosling\'"

System.out.println(a);

Output:

Java is programming language

developed by          ' James Gosling '

Hope it helps!

Answered by tarunhr123
3

Output :

Java is a programming language

Developed by James Gosling

Similar questions