Search Interview Questions | More than 3000 questions in repository. There are more than 900 unanswered questions. Click here and help us by providing the answer. Have a video suggestion. Click Correct / Improve and please let us know. |
|
| ||||
Core java - Interview Questions and Answers for 'Dark horse' - 3 question(s) found - Order By Newest | ||||
| ||||
Ans. OOPs or Object Oriented Programming is a Programming model which is organized around Objects instead of processes. Instead of a process calling series of processes, this model stresses on communication between objects. Objects that all self sustained, provide security by encapsulating it's members and providing abstracted interfaces over the functions it performs. OOP's facilitate the following features 1. Inheritance for Code Reuse 2. Abstraction for modularity, maintenance and agility 3. Encapsulation for security and protection 4. Polymorphism for flexibility and interfacing | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  oops  oops features Asked in 260 Companies basic   frequent | ||||
Related Questions | ||||
Can you give a real world example of Encapsulation and Abstraction ? | ||||
Which of the following Java feature promotes access protection or Hiding ? a. Inheritance b. Encapsulation c. Abstraction d. Composition | ||||
Define encapsulation in Java ? | ||||
Give an example of how Object Oriented Programming Concepts can be implemented. | ||||
Which of the OOP's features facilitate dependency injection ? | ||||
Which of the OOP's feature - encapsulation or abstraction - is more important ? | ||||
Which of the polymorphism type - static or runtime - is more important ? | ||||
Which of the OOP's feature is most important ? | ||||
Very frequently asked. Favorite question in Walk in Drive of many Indian service companies. Frequently asked in HCL Technologies, TCS and Accenture. | ||||
| ||||
Ans. final - constant variable, objects cannot be de-referenced, restricting method overriding, restricting class sub classing. finally - handles exception. The finally block is optional and provides a mechanism to clean up regardless of what happens within the try block. Use the finally block to close files or to release other system resources like database connections, statements etc. finalize() - method helps in garbage collection. A method that is invoked before an object is discarded by the garbage collector, allowing it to clean up its state. | ||||
Sample Code for final Sample Code for finally Sample Code for finalize | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  java   oops   final   finally   finalize   final vs finally vs finalize Asked in 61 Companies basic   frequent | ||||
Try 4 Question(s) Test | ||||
Related Questions | ||||
Difference between final and effectively final ? Why is effectively final even required ? | ||||
Which of the following combination of keywords is illegal in Java ? a. static and transient b. transient and final c. static and synchronized d. abstract and final | ||||
What is a final method ? | ||||
Which keyword is used to provide explicit access of a code block to single thread ? a. Transient b. Final c. Explicit d. Synchronized | ||||
Enums cannot be declared .. | ||||
What is a Final Variable ? | ||||
Should we override finalize method ? | ||||
Will the static block be executed in the following code ? Why ? | ||||
Can we override compareTo method for Enumerations ? | ||||
Frequently asked in high end product companies. Frequently asked in Deloitte. | ||||
| ||||
Ans. https://medium.com/javarevisited/internal-working-of-hashmap-in-java-97aeac3c7beb#:~:text=HashMap%20internally%20uses%20HashTable%20implementation,the%20entries%20into%20the%20map. | ||||
Help us improve. Please let us know the company, where you were asked this question : | ||||
Like Discuss Correct / Improve  hashmap  collections  hashmap internal implementation Asked in 20 Companies expert   frequent | ||||
Related Questions | ||||
Difference between HashMap and Hashtable? | ||||
Difference between TreeMap and HashMap ? | ||||
Can you provide some implementation of a Dictionary having large number of words ? | ||||
What is a ConcurrentHashMap ? | ||||
Why HashTable has been deprecated ? | ||||
Can we use null as a key for a map collection ? | ||||
Which of the following collections stores its elements in insertion Order ? a. HashMap b. TreeMap c. LinkedHashMap d. LinkedMap | ||||
Difference between Map and HashMap ? | ||||
Can we add duplicate keys in a HashMap ? What will happen if we attempt to add duplicate values ? | ||||