Premium Employer

Hexaware Technologies

3.5
based on 6.2k Reviews
Filter interviews by

10+ Bukeepers Inc Interview Questions and Answers

Updated 5 Sep 2024
Popular Designations
Q1. What is the difference between MongoDB and MySQL?
Ans.

MongoDB is a NoSQL database while MySQL is a relational database management system.

  • MongoDB is schema-less, allowing for flexible data models, while MySQL requires a predefined schema.

  • MongoDB uses a document-based data model, storing data in JSON-like documents, while MySQL uses tables with rows and columns.

  • MongoDB is better suited for handling unstructured or semi-structured data, while MySQL is ideal for structured data with complex relationships.

  • MongoDB is horizontally scal...read more

Add your answer

Q2. What is the new operator used for?

Ans.

The new operator is used to create an instance of a class or to allocate memory for an object.

  • The new operator is followed by the name of the class and parentheses.

  • It can also be used to create arrays of objects.

  • Example: MyClass obj = new MyClass();

  • Example: int[] arr = new int[5];

View 1 answer

Q3. What is JVM?

Ans.

JVM stands for Java Virtual Machine. It is an abstract machine that provides a runtime environment for Java programs.

  • JVM interprets compiled Java code and executes it

  • It provides platform independence by converting bytecode to machine-specific code

  • JVM manages memory allocation and garbage collection

  • Examples of JVM implementations include Oracle JVM, OpenJDK, and IBM JVM

View 2 more answers
Q4. What is the new keyword in C++?
Ans.

The new keyword in C++ is used to dynamically allocate memory for an object or array.

  • Used to create objects on the heap: MyClass* obj = new MyClass();

  • Used to create arrays on the heap: int* arr = new int[10];

Add your answer
Discover Bukeepers Inc interview dos and don'ts from real experiences

Q5. What is JRE?

Ans.

JRE stands for Java Runtime Environment. It is a software package that provides the necessary runtime environment for Java applications.

  • JRE includes the Java Virtual Machine (JVM), class libraries, and other necessary components to run Java applications.

  • It is required to run Java applications on a computer.

  • JRE is available for different operating systems such as Windows, Linux, and macOS.

  • Examples of Java applications that require JRE include Eclipse, NetBeans, and Apache Tomc...read more

View 1 answer
Q6. What is the JVM?
Ans.

JVM stands for Java Virtual Machine, it is an abstract computing machine that enables a computer to run Java programs.

  • JVM is responsible for converting Java bytecode into machine code that can be executed by the computer's CPU.

  • It provides a platform-independent execution environment for Java programs.

  • JVM manages memory, handles garbage collection, and provides security features for Java applications.

  • Examples of JVM implementations include Oracle HotSpot, OpenJ9, and GraalVM.

Add your answer

Q7. How hashmap works internally?

Ans.

Hashmap is a data structure that stores key-value pairs and uses hashing to retrieve values quickly.

  • Hashmap uses a hash function to convert the key into an index in an array.

  • Collisions can occur when two keys map to the same index, which is resolved using separate chaining or open addressing.

  • Hashmap provides constant time complexity O(1) for insertion, deletion, and retrieval of values.

  • Java's Hashmap implementation uses an array of linked lists to handle collisions.

  • The load f...read more

Add your answer

Q8. Why string is immutable?

Ans.

String is immutable to ensure thread safety and prevent unintended modification.

  • Immutable objects are safer to use in multi-threaded environments as they cannot be changed by other threads.

  • String pool is possible because of immutability, which saves memory and improves performance.

  • StringBuffer and StringBuilder classes are used for mutable string operations.

  • Example: String s = "hello"; s.concat(" world"); // returns a new string, s remains unchanged.

Add your answer

Q9. Difference between List and Set

Ans.

List allows duplicate elements and maintains insertion order, while Set does not allow duplicates and does not maintain order.

  • List can contain duplicate elements, Set cannot

  • List maintains insertion order, Set does not guarantee order

  • List is implemented by classes like ArrayList, LinkedList, Set is implemented by classes like HashSet, TreeSet

  • Example: List<String> list = new ArrayList<>(); Set<String> set = new HashSet<>();

Add your answer

Q10. Comparable vs Comparator

Ans.

Comparable is an interface used for natural ordering, while Comparator is used for custom ordering in Java.

  • Comparable interface is used to define the natural ordering of objects. It is implemented by the class whose objects are to be sorted.

  • Comparator interface is used to define custom ordering of objects. It is implemented by a separate class that compares objects based on specific criteria.

  • Example: Sorting a list of Strings using Comparable would sort them alphabetically, w...read more

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Bukeepers Inc

based on 5 interviews
1 Interview rounds
Technical Round
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Java Developer Interview Questions from Similar Companies

3.8
 • 53 Interview Questions
3.3
 • 24 Interview Questions
3.5
 • 18 Interview Questions
3.9
 • 17 Interview Questions
3.7
 • 11 Interview Questions
4.4
 • 10 Interview Questions
View all
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
75 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter