Upload Button Icon Add office photos

Dell EMC

Compare button icon Compare button icon Compare

Filter interviews by

Dell EMC Software Development Engineer II Interview Questions and Answers

Updated 6 Mar 2024

Dell EMC Software Development Engineer II Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Experience as Full stack developer. Confidence with Python and React. Design DB schema for User service.
Round 2 - Coding Test 

Develop TODO app with basic features : frontend and backend

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is the role of cluster load balancing in Node.js?
  • Q2. What is the CQRS (Command Query Responsibility Segregation) design pattern?
  • Q3. How do transactions work in a database?
  • Q4. How does durability function in ACID databases?
Round 2 - One-on-one 

(3 Questions)

  • Q1. What are the advantages of using a microservice architecture?
  • Q2. How does replication work in a database?
  • Q3. Why CQRS works
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Standard quantitative questions accompanied by logical reasoning and related topics.

Round 2 - Technical 

(4 Questions)

  • Q1. Asked about my projects.
  • Q2. What are the basic Object-Oriented Programming (OOP) concepts, including polymorphism and inheritance?
  • Ans. 

    OOP concepts include encapsulation, inheritance, polymorphism, and abstraction.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Objects of different classes can be treated as objects of a common superclass.

    • Abstraction: Hides complex implementation details and only shows the necessa

  • Answered by AI
  • Q3. Can you explain React, how it functions, and the related concepts?
  • Ans. 

    React is a JavaScript library for building user interfaces.

    • React allows developers to create reusable UI components.

    • It uses a virtual DOM for efficient rendering.

    • React uses a declarative approach to define how the UI should look based on the application state.

    • It supports server-side rendering for improved performance.

    • React can be used with other libraries like Redux for state management.

  • Answered by AI
  • Q4. About my final year project and how would you improve it?
Round 3 - HR 

(2 Questions)

  • Q1. Can you introduce yourself and provide some information about your family?
  • Ans. 

    I am a software engineer with a passion for coding and problem-solving. I come from a close-knit family with supportive parents and siblings.

    • Software engineer with coding and problem-solving skills

    • Close-knit family with supportive parents and siblings

  • Answered by AI
  • Q2. What are your strengths and weaknesses, and how are you addressing your weaknesses?
  • Ans. 

    My strengths include problem-solving and teamwork, while my weaknesses are time management and public speaking. I am addressing my weaknesses by taking time management courses and practicing public speaking.

    • Strengths: problem-solving, teamwork

    • Weaknesses: time management, public speaking

    • Addressing weaknesses: taking time management courses, practicing public speaking

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well-prepared for common interview questions and maintain a collection of these questions.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How can you remove duplicate numbers from an array?
  • Q2. What are the differences between var, let, and const in JavaScript?
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Dec 2024.

Round 1 - HR 

(1 Question)

  • Q1. Worst company ever Hiring process is very unprofessional and complicated. HR told me to attend office for last round of interview but when I reach hyderabad they scheduled HR interview virtually and offere...

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be aware of valuelabs
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

It was an aptitute round and 2 coding questions was there

Round 2 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. We had discussion on projects than mentioned in my resume
  • Q3. Then he moved to DSA question in which he told to how you will insert node in doubly linked list ,I answered all correctly he appreciated me also but after 5 min one person came and told you can go . I was...

Interview Preparation Tips

Interview preparation tips for other job seekers - try to give interview as early as possible prepare basic dsa and projects
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Aptitude, electronics

Round 2 - Technical 

(2 Questions)

  • Q1. Transformer and power supply
  • Q2. What is a pointer
Round 3 - Technical 

(1 Question)

  • Q1. What all thinks happen on powering on a device.

Interview Preparation Tips

Interview preparation tips for other job seekers - Study btech project.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Aug 2024.

Round 1 - Group Discussion 

I just need to speak fluently on a specific topic.

Round 2 - Aptitude Test 

The online assessment consists of basic aptitude questions, three coding questions, and a section on pseudocode.

Round 3 - Technical 

(4 Questions)

  • Q1. What are the differences and similarities between Java and Python, and which one is considered the best?
  • Q2. Can you provide details about your project?
  • Q3. What is testing, and what do you know about it?
  • Q4. Write SQL joins queries
Round 4 - HR 

(3 Questions)

  • Q1. What are the reasons you have not been placed in any company until now?
  • Q2. Can you tell me about yourself?
  • Q3. Can you describe a cooking disaster you experienced?
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Fibonacci series and program to find the max number in list

Round 2 - Technical 

(2 Questions)

  • Q1. What is oops and explain each of the terms
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects.

    • OOPs consists of four main principles: Inheritance, Encapsulation, Abstraction, and Polymorphism.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Encapsulation refers to the bundling of data and methods that operate on the data into a single unit.

    • Abstraction focuses on hiding the int...

  • Answered by AI
  • Q2. What is list, dictionary, set and tuple and difference between them
  • Ans. 

    List, dictionary, set, and tuple are data structures in Python with different characteristics and use cases.

    • List: ordered collection of items, mutable (can be changed), represented by square brackets []

    • Dictionary: unordered collection of key-value pairs, mutable, represented by curly braces {}

    • Set: unordered collection of unique items, mutable, represented by curly braces {}

    • Tuple: ordered collection of items, immutable ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Oops concept related work
  • Q2. Technology used in prj
  • Ans. 

    Various technologies used in the project include Java, Spring Boot, Angular, MySQL, and Docker.

    • Java

    • Spring Boot

    • Angular

    • MySQL

    • Docker

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - lage raho

Dell EMC Interview FAQs

How many rounds are there in Dell EMC Software Development Engineer II interview?
Dell EMC interview process usually has 2 rounds. The most common rounds in the Dell EMC interview process are Technical and Coding Test.

Tell us how to improve this page.

Dell EMC Software Development Engineer II Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.6k Interviews
IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 846 Interviews
DXC Technology Interview Questions
3.7
 • 795 Interviews
NTT Data Interview Questions
3.9
 • 614 Interviews
Cisco Interview Questions
4.1
 • 370 Interviews
Atos Interview Questions
3.9
 • 370 Interviews
Synechron Interview Questions
3.5
 • 362 Interviews
View all
Dell EMC Software Development Engineer II Salary
based on 19 salaries
₹10 L/yr - ₹18.5 L/yr
37% less than the average Software Development Engineer II Salary in India
View more details
Senior Software Engineer
782 salaries
unlock blur

₹12 L/yr - ₹38.2 L/yr

Software Engineer
343 salaries
unlock blur

₹5.3 L/yr - ₹20.5 L/yr

Software Engineer2
329 salaries
unlock blur

₹8 L/yr - ₹22 L/yr

Senior Analyst
272 salaries
unlock blur

₹4.7 L/yr - ₹15 L/yr

Principal Software Engineer
270 salaries
unlock blur

₹17 L/yr - ₹55 L/yr

Explore more salaries
Compare Dell EMC with

Hewlett Packard Enterprise

4.2
Compare

IBM

4.0
Compare

Cisco

4.1
Compare

NetApp

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