KnowledgeBoat Logo

Output Questions for Class 10 ICSE Computer Applications

Write the output of the following statement:

System.out.println("A picture is worth \t \"A thousand words.\" ");

Java

Values & Data Types Java

ICSE

164 Likes

Answer

A picture is worth       "A thousand words."

Working

\t is the escape sequence for tab. \" is used to print quotes as part of the string.

Answered By

87 Likes