Java Interview Questions Basics - 1
Q.1 - What is Java? Java is the high-level, object-oriented, robust, secure programming language, platform-independent, high performance, Multithreaded, and portable programming language. It was developed by James Gosling in June 1991. It can also be known as the platform as it provides its own JRE and API. Q.2 - List the features of Java Programming language. There are the following features in Java Programming Language. Simple : Java is easy to learn. The syntax of Java is based on C++ which makes easier to write the program in it. Object-Oriented : Java follows the object-oriented paradigm which allows us to maintain our code as the combination of different type of objects that incorporates both data and behavior. Portable : Java supports read-once-write-anywhere approach. We can execute the Java program on every machine. Java program (.java) is converted to bytecode (.class) which can be easily run on every machine. Platform Independent : Java is a platform independent program...