Write one console O/P statement in one line without any literals to display the
ID: 3934205 • Letter: W
Question
Write one console O/P statement in one line without any literals to display the following sentences in 4 lines by using the variable definitions as these: String s1 = "I like Java very much 'n"; String s2 = "Java is powerful, interesting and easy to learn 'n"; String s3 = " I made a commitment to myself that I shall master this technology to matter what, 'n"; String s4 = "I am inspired profoundly by my professor that with this technology in my mind it shall benefit all my life, "n"; Write one GUI O/P statement in one line without any literals to display the following sentences in 4 lines by using the variable definitions as these String s1 = " I like Java very much, n"; String s2 = "Java is powerful, interesting and easy to learn 'n"; String s3 = " I made a commitment to myself that I shall master this technology to matter what, 'n"; String s4 = "I am inspired profoundly by my professor that with this technology in my mind it shall benefit all my life, "n"; Write one console O/P statement without any literals to display the following lines of words using the Strings variables defined below: List of String variables defined:Explanation / Answer
2. System.out.println(s1 + s2 + s3 + s4); will do the needful.
3. JOptionPane.showMessageDialog(null, s1+s2+s3+s4); will do the needful.
4. System.out.println(t1 + t2 + " " + t3 + " " + t4 + " " + t5 + " " + "Final " + t6); Note that we can't achieve this without using any literals.
Related Questions
Hire Me For All Your Tutoring Needs
Integrity-first tutoring: clear explanations, guidance, and feedback.
Drop an Email at
drjack9650@gmail.com
drjack9650@gmail.com
Navigate
Integrity-first tutoring: explanations and feedback only — we do not complete graded work. Learn more.