CJCoding With Joseph
15per day
← Back to Question List

Select topics to narrow your question pool, then enable Random to jump to a random question matching your filters.

Topics:
Java Quiz #26

Multiple Prints Same Line

easyPrinting

What is the output of the following code?

📄 Code

1public class Main {
2 public static void main(String[] args) {
3 System.out.print("I ");
4 System.out.print("love ");
5 System.out.print("coding!");
6 }
7}