To run java program we need few softwares and tools. Let's understand what are the required software and how to install them. The first thing we need is JDK ( java development kit). It contains tools to compile our java code, run it and other development tools. You can download JDK 8 from below link: jdk8 download url: https://www.oracle.com/in/java/technologies/javase/javase-jdk8-downloads.html Second tool we need is an editor. You can go for an IDE (Integrated Development Environment) which contains editor, file explorer, console etc integrated but I would insist you to use simple editor till you become fluent in writing error free code. You can download notepad++ editor from below link. notepad++ download url: https://notepad-plus-plus.org/downloads and once you are fluent in writing basic programs without any error, you can start using IDE. You can download eclipse IDE from below link. eclipse download url: https://www.eclipse.org/downloads Once you download all these so...
Comments