25 Basic Java interview questions.

Author: neptune | 30th-May-2022 | Views: 793
#Interview #Java

25 basic interview questions.

  1. Why java is a platform-independent language?
  2. What is Data Encapsulation?
  3. What is a JIT compiler?
  4. Why Java doesn't use pointers?
  5. Why Java is not a pure object-oriented language?

  6. What is the difference b/w the instance variable and a local variable?
  7. What is the difference between b/w equals() and equality operator (==)?
  8. How is method overloading different from overriding?
  9. Can be declared a single try block with multiple catch blocks?
  10. Why do we use the final keyword in a variable, method, and class?
  11. Can be declared an infinite loop in java?
  12. What is the difference b/w Array and ArrayList?
  13. How is HashSet different from TreeSet?

  14. What do you mean by Constructor Overloading?
  15. What is the difference b/w JVM, JRE, and JDK?
  16. What is the difference b/w the String, StringBuffer, and StringBuilder?
  17. In Java static and private method overriding possible?
  18. What is the difference b/w HashMap and HashTable in Java?
  19. How constructor different from the method in Java?
  20. What is synchronization in Java? Explain with an example.

  21. How interfaces and abstract classes are different?
  22. What is the reason behind making String immutable in Java?
  23. To store confidential information Character Array or String is preferred?
  24. How Java thread lifecycle works?
  25. Why it is said that the length() method of the String class does not return an accurate length?

These questions will help you prepare for Java interviews.

Thanks for Reading !!!




anonymous | Sept. 30, 2021, 1:35 p.m.

Add answers of above questions 🙂



Related Blogs
How to use wait commands in Selenium WebDriver in Java ?
Author: neptune | 22nd-Feb-2022 | Views: 1612
#Selenium #Testing #Java
We are going to explore different types of waits in Selenium WebDriver. Implicit wait, Explicit wait, and Fluent wait with examples...

Mostly asked Python Interview Questions - 2022.
Author: neptune | 25th-May-2022 | Views: 1161
#Python #Interview
Python interview questions for freshers. These questions asked in 2022 Python interviews...

Top 50+ Selenium Interviews Questions 2022 based on Years of Experience
Author: neptune | 31st-May-2022 | Views: 1144
#Selenium #Testing #Interview
Every interview difficulty is based on how many years of experience you have in that field. For the Selenium Automation Tester I have divided the question on the number of years of experience...

Core Python Syllabus for Interviews
Author: neptune | 11th-Jun-2022 | Views: 680
#Python #Interview
STRING MANIPULATION : Introduction to Python String, Accessing Individual Elements, String Operators, String Slices, String Functions and Methods...

Best way to reverse a String for beginners in Java.
Author: neptune | 02nd-Oct-2022 | Views: 540
#Java
We will explore How to reverse a String in Java using simple way. If you are beginner in Java then you are at the right place...

Where you applied OOPs in Automation Testing?
Author: neptune | 11th-Dec-2022 | Views: 524
#Interview #Java
You may face this question Where you have applied OOPs concept in Automation Framework? in almost all the Selenium Interviews. Let's learn OOP’s concept in Java before going further...

20 TestNG Interview Questions
Author: neptune | 17th-Dec-2022 | Views: 322
#Selenium #Interview
There is always more than one test or method in the class. If we do not prioritize these tests or methods, then the methods are selected alphabetically and executed while execution...

Java Script Interview Questions
Author: neptune | 09th-May-2022 | Views: 316
#JavaScript #Interview
Basic JavaScript questions asked in interviews : 1. What are the different data types present in javascript? 2. Difference between "==" and "===" operators...

How would one explain object-oriented programming to a beginner, using a layman language?
Author: neptune | 29th-Oct-2022 | Views: 309
#Java
In 1994 Rolling Stone interview, Steve Jobs explains What is object-oriented programming?..

Top 10 Selenium Interview Questions.
Author: neptune | 03rd-Jun-2022 | Views: 276
#Selenium #Interview
Locator is a command that tells Selenium IDE which GUI elements (like Text Box, Buttons, Check Boxes etc) we are going to use or perform some automation task...

30+ SQL Interview Questions
Author: neptune | 05th-Jan-2023 | Views: 252
#Interview #SQL
Data Definition Language (DDL) – It allows end-users to CREATE, ALTER, and DELETE database objects...

Torch and Bridge | Puzzle
Author: neptune | 11th-Dec-2022 | Views: 168
#Interview #Puzzle
One Torch and 4 person needs to cross the bridge, but can't crossed without the torch. Two persons can walk on the bridge at any time, find minimum time to cross the bridge...

Difference b/w String, StringBuffer, and StringBuilder
Author: neptune | 23rd-Sep-2022 | Views: 149
#Java
String is a sequence of characters in Java. String is a class in the java.lang package. String objects are immutable in nature...

Static Import Concept in Java
Author: neptune | 31st-Dec-2022 | Views: 135
#Java
If you overuse the static import feature, it makes the program unreadable and unmaintainable...

View More