Posts

Showing posts from May, 2022

Introduction to Java || Java + DSA course || Blog 1

Image
What is y our mother tongue? It can be Eng lish, Hindi, Ja pa nes e, R ussian....m any more . There are total 7000 Languages across the world for us to Communicate. But what if we want to talk to a computer? Of course computer doesn't understand English. So what does it understand? Computer understands a simple language called as Binary . Its script contains only 0s and 1s.It seems easy to learn but it isn't. Just to write A in binary is 01000001 . So even if we just want to do a simple thing like adding 2 numbers, it will mostly be hard enough.   Due to these issue, high level languages were invented. What are they? Think of it as a mixture of human language and computer language. Due to these languages humans could command a task to the computer easily. One of the best and easy High level languages is Java Java is the language which can be run on any computer having JDK.(java development kit.We will talk about it in our 2nd blog)  Lets talk about how do we give a comman...