+ 4
What is System.out.print()
explain the line 'System.out.print'
5 Answers
+ 11
in java
System.out.print(); is a used for print something on the console.
here,
------>dot(.) is operator to used with class and method to call or access method or variable resp.
------>System is a class
----->out is an object
----->print() is method of System class and access with [out] object
+ 6
refer thisš
A Hello World Program
https://www.sololearn.com/learn/Java/2137/
š
+ 2
print without breakline / new line
0
It prints/ shows "Hell" as an output. in Java, it is a method of debugging (checking) your code.
0
system is class
out is object
print is method
it is used to display the data to console screen