My Java Journey - What is Java?
This is the second post from a series of posts about my personal journey with Java. If you haven’t read the first post and the disclaimer , you can do that now. See how people use different languages in speaking with each other? Well, Java is a language that computers speak among many other languages. This is not entirely true. If you could hear two computers speaking, you will probably hear something like 01001000 01100101 01101100 01101100 01101111 … – just a series of zeroes and ones - and that won’t make lots of sense. This series of zeroes and ones is known as binary . Humans need to be able to speak in this way in order to speak to or instruct computers to perform tasks (programming). Due to the difficulty in this, other computer languages were developed that closely resemble human language. Java is just one example of such a language. Others are C++, C, Python, Perl, Ruby, Ada, JavaScript and PHP. Hundreds of programming languages exist. Normally, computers will not be abl...