+ 4

What is System.out.print()

explain the line 'System.out.print'

16th Jan 2018, 6:20 PM
suraj sutar
suraj sutar - avatar
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
17th Jan 2018, 11:04 AM
ASIF BILAKHIYA
ASIF BILAKHIYA - avatar
+ 6
refer thisšŸ‘‡ A Hello World Program https://www.sololearn.com/learn/Java/2137/ šŸ˜Š
16th Jan 2018, 6:26 PM
Jaydeep Khatri
Jaydeep Khatri - avatar
+ 2
print without breakline / new line
18th Jan 2018, 10:17 PM
Fariz Fadian
Fariz Fadian - avatar
0
It prints/ shows "Hell" as an output. in Java, it is a method of debugging (checking) your code.
16th Jan 2018, 6:28 PM
Purohit Iyer
Purohit Iyer - avatar
0
system is class out is object print is method it is used to display the data to console screen
17th Jan 2018, 1:15 AM
Hc Verma