Upload Button Icon Add office photos

VMware Software

Compare button icon Compare button icon Compare

Filter interviews by

VMware Software Java Software Engineer Interview Questions, Process, and Tips

Updated 12 Oct 2020

VMware Software Java Software Engineer Interview Experiences

1 interview found

I applied via Referral and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

10 Questions

  • Q1. 1.what are IOC AND dI
  • Ans. 

    IOC stands for Inversion of Control and DI stands for Dependency Injection.

    • IOC is a design pattern that allows the flow of control to be inverted, where the framework controls the flow of the program.

    • DI is a technique where the dependencies of an object are injected into it, rather than the object creating them itself.

    • IOC and DI are closely related and often used together in software development.

    • Spring Framework is a p...

  • Answered by AI
  • Q2. 2.components of IOC
  • Ans. 

    IOC stands for Inversion of Control. Its components are Dependency Injection and Aspect Oriented Programming.

    • Dependency Injection: injecting dependencies into a class instead of creating them within the class

    • Aspect Oriented Programming: separating cross-cutting concerns from the main logic of the application

    • Examples: Spring Framework, Guice

  • Answered by AI
  • Q3. Contructor Or setter injection
  • Q4. Scopes in spring
  • Ans. 

    Scopes in Spring refer to the lifecycle of a bean and its visibility within the application context.

    • Spring has four standard scopes: singleton, prototype, request, and session.

    • Singleton scope creates only one instance of a bean and is the default scope.

    • Prototype scope creates a new instance of a bean every time it is requested.

    • Request scope creates a new instance of a bean for each HTTP request.

    • Session scope creates a

  • Answered by AI
  • Q5. AOP types
  • Q6. Detach and merge in spring
  • Ans. 

    Detach and merge are used in Spring to manage the persistence of entities.

    • Detach is used to remove an entity from the persistence context.

    • Merge is used to update the state of a detached entity and merge it back into the persistence context.

    • Both detach and merge are commonly used in Spring Data JPA.

    • Example: entityManager.detach(entity); entityManager.merge(entity);

  • Answered by AI
  • Q7. Design pattern in java
  • Ans. 

    Design patterns are reusable solutions to common software problems.

    • Design patterns provide a standard way of solving recurring problems in software development.

    • There are three types of design patterns: creational, structural, and behavioral.

    • Examples of design patterns include Singleton, Factory, Observer, and Decorator.

    • Design patterns can improve code readability, maintainability, and scalability.

  • Answered by AI
  • Q8. Multithreading in executor framework
  • Ans. 

    Executor framework provides a way to execute tasks asynchronously using multithreading.

    • Executor framework provides a way to manage thread pools and execute tasks asynchronously.

    • It uses a pool of threads to execute tasks and provides a way to submit tasks to the pool.

    • The tasks are executed in a separate thread, allowing for parallel execution.

    • Executor framework provides different types of thread pools like fixed, cached...

  • Answered by AI
  • Q9. How to implement executor framework and it's benefits
  • Ans. 

    Executor framework is used to manage threads and execute tasks asynchronously.

    • Executor framework provides a way to manage threads and execute tasks asynchronously.

    • It provides a thread pool and a queue to manage tasks.

    • It helps in improving the performance of the application by reducing the overhead of creating and destroying threads.

    • It also provides a way to handle exceptions and errors in the tasks.

    • Example: Executors.n...

  • Answered by AI
  • Q10. Question based on spring

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through all concepts for spring and java with sql a little bit

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

2 Questions

  • Q1. Spring bean scope
  • Q2. Spring mvc vs springboot
  • Ans. 

    Spring MVC is a web framework while Spring Boot is an opinionated way of building Spring applications.

    • Spring MVC requires more configuration and setup compared to Spring Boot

    • Spring Boot provides a pre-configured environment for building Spring applications

    • Spring Boot includes an embedded server, making it easier to deploy applications

    • Spring MVC is more flexible and customizable compared to Spring Boot

    • Both frameworks ar

  • Answered by AI

Interview Questionnaire 

1 Question

  • Q1. About financial analysts

I applied via Referral and was interviewed before Oct 2020. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell Us about yourself?
  • Ans. I am from Kolkata. I have convey about my Educational Background to Interviewer.
  • Answered by Tanay Lakshman
  • Q2. Tell us about Coalnet Architecture of MMS Module?
  • Ans. 

    Coalnet Architecture of MMS Module is a system for managing and monitoring coal mines.

    • Coalnet Architecture is designed to manage and monitor coal mines.

    • It includes modules for tracking production, equipment maintenance, and safety.

    • The MMS Module specifically focuses on maintenance management.

    • It allows for scheduling and tracking of maintenance tasks, as well as inventory management.

    • The architecture is scalable and can ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The documentation got approved by Samuel Of Oracle Australia Office.I was interviewed by Samuel by Telephone.Outcome will be Given in Email.It consists of 15 minutes technical interview.

Interview Questionnaire 

2 Questions

  • Q1. There were two technical rounds followed by a managerial and hr round.The first round was highly technical and questions were asked on string data structures, binary search trees and maps.There where sever...
  • Q2. Managerial round will be a formal discussion with the interviewer regarding the role,what roles you have worked in your previous organization, questions might be asked based on your resume.

Interview Preparation Tips

Interview preparation tips for other job seekers - You need to have some practice of common data structures and algorithms used. From framework side you will asked questions based on your resume and role. And best of luck

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

Pretty easy questions.

  • Q1. 

    Kth Smallest Element Problem Statement

    You are provided with an array of integers ARR of size N and an integer K. Your task is to find and return the K-th smallest value present in the array. All elements...

  • Ans. 

    Find the K-th smallest element in an array of distinct integers.

    • Sort the array and return the element at index K-1.

    • Use a min-heap to find the K-th smallest element efficiently.

    • Implement quickselect algorithm for optimal performance.

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Easy

1 coding question

  • Q1. 

    IP Address Formation from String

    Given a string S consisting only of digits from 0 to 9, your task is to find all potential IP addresses that can be formed from S and list them in lexicographical order. I...

  • Ans. 

    Given a string of digits, find all potential valid IP addresses that can be formed from it.

    • Split the string into four parts and check if each part is a valid IP segment (0-255).

    • Use backtracking to generate all possible combinations of valid IP addresses.

    • Ensure that the IP address does not contain leading zeroes.

    • Return the valid IP addresses in lexicographical order.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

Total Discussion on OS concepts

  • Q1. Can you explain the concepts related to memory management in operating systems?
  • Ans. 

    Memory management in operating systems involves allocation, deallocation, and optimization of memory usage.

    • Memory allocation: OS allocates memory to processes based on their requirements.

    • Memory deallocation: OS frees up memory when it is no longer needed by a process.

    • Memory optimization: OS optimizes memory usage through techniques like paging, segmentation, and virtual memory.

    • Examples: Paging in which memory is divide...

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

Easy in office environment

  • Q1. 

    Find the Lone Set Bit

    Your task is to identify the position of the only '1' bit in the binary representation of a given non-negative integer N. The representation contains exactly one '1' and the rest are...

  • Ans. 

    Find the position of the lone '1' bit in the binary representation of a given non-negative integer.

    • Iterate through the bits of the integer to find the position of the lone '1'.

    • Use bitwise operations to check if there is exactly one '1' bit in the binary representation.

    • Return the position of the lone '1' or -1 if there isn't exactly one '1'.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in HyderabadEligibility criteria7 CGPAMicrosoft interview preparation:Topics to prepare for the interview - Trees, graphs, dynamic programming, stacks, queuesTime required to prepare for the interview - 1 MonthInterview preparation tips for other job seekers

Tip 1 : Do a good project.
Tip 2 : Master the topics you are preparing.

Application resume tips for other job seekers

Tip 1 : Avoid writing things you do not know
Tip 2 : Follow a proper format for Resume.

Final outcome of the interviewRejected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Reverse a string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the string and append each character to a new string in reverse order

    • Alternatively, use built-in string functions to reverse the string

    • If the string is stored as an array of characters, swap the first and last elements, then the second and second-to-last elements, and so on until the middle is reached

  • Answered by AI

I applied via Naukri.com and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Personal projects/client projects
  • Q2. Hashmap/hashtable/hashset
  • Q3. Java and Microservices
  • Q4. Rest and soap
  • Q5. Program on array
  • Ans. 

    Program on array

    • Arrays are used to store multiple values in a single variable

    • Arrays can be of any data type

    • Arrays can be accessed using index numbers

    • Arrays can be sorted and searched

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a good experience

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basic c++, exception handling,mfc basic, message handling in mfc,about project ,c++ oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to the basic .. explain what you know and be relax

I applied via Naukri.com and was interviewed in Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of Jcl like class parameters, Questions from Sorting and disp parameters as well aa Gdg. In cobol variouws error codes and also db2 and Ims db questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through the baaics of all like JCL, COBOL, DB2 & IMSDB. If u aware of CICS then it will be added advantage.

VMware Software Interview FAQs

What are the top questions asked in VMware Software Java Software Engineer interview?

Some of the top questions asked at the VMware Software Java Software Engineer interview -

  1. How to implement executor framework and it's benef...read more
  2. 1.what are IOC AND...read more
  3. Multithreading in executor framew...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 855 Interviews
Amdocs Interview Questions
3.7
 • 514 Interviews
Zoho Interview Questions
4.3
 • 510 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
Salesforce Interview Questions
4.0
 • 226 Interviews
24/7 Customer Interview Questions
3.5
 • 176 Interviews
View all
Member Technical Staff
540 salaries
unlock blur

₹12 L/yr - ₹45.7 L/yr

Senior Member of Technical Staff
511 salaries
unlock blur

₹24 L/yr - ₹72.6 L/yr

Technical Support Engineer
390 salaries
unlock blur

₹7.2 L/yr - ₹19 L/yr

Technical Staff Member 3
248 salaries
unlock blur

₹17 L/yr - ₹54.1 L/yr

Business Analyst
231 salaries
unlock blur

₹4.8 L/yr - ₹19 L/yr

Explore more salaries
Compare VMware Software with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview