+ 1
What is console ?
2 Respostas
+ 2
thanks.for help @Blaze Tutours
+ 1
Console is the real "brain" of the computer. Every command you give to the machine, it will be directed to the console, and then it will be received, processed and just after this will appear on screen. What you see when using the computer, is just the visual result of what the Console (Prompt) commands.
When programming in C# or some other languages, you also have a library named Console, where you can make many commands (some of them in Machine Language) with just one comand line, just like "Console.WriteLine" for example. The machine receives information to "draw" every bit of each letter on screen, but for you is just ONE command.
Hope I helped ;)