Join Regular Classroom : Visit ClassroomTech

Java Interview Questions

Java Basic Interview Questions | Codewindow.in

Basic Java Interview Questions Q1. Is Java platform independent? Answer Yes. Java is a platform independent language. We can write java code on one platform and run it on another platform. For e.g. we can write and compile the code on windows and can run the generated bytecode on Linux or any other supported platform. This […]

Java Basic Interview Questions | Codewindow.in Read More »

Java Coding For Interview

Topic 1 JAVA Topic 1 Topic 2 JAVA Topic 2 Topic 3 JAVA Topic 3 The topics that are covered in this article:1. Inheritance2. Types of Inheritance in Java3. Example of Single Inheritance4. Example of Multilevel Inheritance5. Example of Hierarchical Inheritance6. Order of Constructor Calling7. Method Overriding8. Super in Inheritance9. Super without Inheritance10. Multiple Inheritance

Java Coding For Interview Read More »

Buffered Reader in java

Java BufferedReader class is used to read the text from a character-based input stream. It can be used to read data line by line by readLine() method. It makes the performance fast. It inherits Reader class. Java BufferedReader class declaration Let’s see the declaration for Java.io.BufferedReader class: public class BufferedReader extends Reader Output Latest Posts

Buffered Reader in java Read More »

Java Interview Questions

Q1. What is Encapsulation?Answer Encapsulation provides objects with the ability to hide their internal characteristics and behavior. Each object provides a numberof methods, which can be accessed by other objects and change its internal data. In Java, there are three access modifiers: public, private and protected. Each modifier imposes different access rights to other classes, either

Java Interview Questions Read More »