0

What is an output

I always see what is the output of this string in the courses but I don't know what it means and it's hard to answer the question

21st Nov 2016, 7:41 PM
Michael Peace
Michael Peace - avatar
6 Answers
+ 2
example in java: System.out.print ("Hello!"); // Hello! is the output
21st Nov 2016, 8:37 PM
Die Minecrafter LP
Die Minecrafter LP - avatar
+ 1
Input is what the program registers from the user, ie. asking the user to type a number. The info flows from out to in. System.in() <---- input Output is the opposite, it's what the program shows the user. The info flows from in to out. System.out() ----> output Hope this helps.
22nd Nov 2016, 6:44 AM
koshe
koshe - avatar
0
output is the thing that the program should print
21st Nov 2016, 7:54 PM
Daniel Carmel
Daniel Carmel - avatar
0
The output could mean the result of the program (no matter what the program does).
21st Nov 2016, 8:38 PM
Sergei Pojev
Sergei Pojev - avatar
0
out is a field in the System class used to output data please have a look here to see some more fields and methods that can be applied to the system class https://docs.oracle.com/javase/7/docs/api/java/lang/System.html
21st Nov 2016, 11:52 PM
Agaba Ivan
Agaba Ivan - avatar
- 1
Run your program. The result of your program is the output. And what you type when your program run is the input.
21st Nov 2016, 10:59 PM
The PGDeveloper
The PGDeveloper - avatar