Upload Button Icon Add office photos

Dell EMC

Compare button icon Compare button icon Compare

Filter interviews by

Dell EMC Application Developer Interview Questions and Answers

Updated 24 Nov 2015

Dell EMC Application Developer Interview Experiences

2 interviews found

Interview Preparation Tips

Round: Test
Experience:   I didn't have even a little bit of luck actually as this company was concerned. The HR was 
too informal ,so the interviews too were.
     
      Out of the 12 they shortlisted they recruited 5, so the first round was very important.There 
were two technical interviewers. One was good and the other one nonsense(according to 
me).The good one selected 4 out of all those he interviewed and the other one selected one.
      
       First he started with “tell me about yourself”, then what are your area of interests. He was 
checking everything with my resume to check if i didn't miss anything. Then about what 
companies came to your campus and why u didn't get placed in all those. Then started the 
debate.He asked me to explain my projects. I started explaining and he was telling he didn't 
know anything so he wanted me to explain as how u explain to a kid. He asked me to draw 
block diagram for one of the projects(networks) and after that i didn't know what he was talking 
and I was talking. I didn't understand his language too...he asked what kind of storage u 
use...what happens if it happens like this....he himself was not sure of what he was asking....i 
tried to explain him the network layers and what actually happens with the knowledge about tcp 
i had.But he was expecting something else.At last he told my project itself is wrong and he had 
so much concern for my project :(
      
       Then after a pause asked me to write any valid c program.......again after writing....he asked 
me to write test cases and validate it.....then asked questions about what is paging, 
segmentation .. write program for explaining virtual functions......one nice question how will u 
overload new operator.
       And that is all....i asked him the feedback..he said i am so concerned with your project again :(
I thought i was gone at that moment itself.....the problem was I didn't understand his language 
itself :( he was very rude...jus learnt the fact that the interviewer u get is very important

Skills:
College Name: Anna University Chennai

Interview Preparation Tips

Round: Test
Experience:  The written test was of normal difficulty. There was no negative marking and hence 
luck could help you here.. There was a section full of general aps and another section with 
technical. The technical was of medium difficulty and i would advise attending the technical part 
first.


Round: Technical Interview
Experience: The interview had two rounds, one technical and one HR. Here is where the “job goddess”
could play with your future... Her name is “LUCK” :P Cos the interview is totally 
dependent on the panel you are going to get. There were two technical people, one was very 
nice and asked easy questions, the other was a strict looking sourpuss who troubled people 
(Should i even mention I got the easy one? ;) ) Praying to Gods and asking your granny to pray 
for you would do you a lot of good ;)
                      But whoever the panel (judging by others’ experiences) , they concentrated a lot 
on basic only. Given one question, they keep questioning inside it itself. For me, around 45 
minutes went in asking about my projects. It seemed like HR at first with questions like “Did u 
and your friend face any difficulty anywhere? Did your teacher find any fault anywhere? What was 
your work in the project?” but I found it terribly difficult with every answer of mine(invented ones 
obviously :P ) being grabbed upon and asked more...Also kindly ask your job description asap cos 
he’ll surely ask you why EMC should hire you :P 
                     When i got tired after the endless list of questions, he said “Now let us start the 
interview” ??!!??!!
                     He asked just a very simple question “Implement strcpy()”... But that one question 
prolonged to fifteen minutes?! He kept probing each and every line... And questions like, what if 
i give an endless string as input? What if i pass strings which dont terminate with null? And 
many more based on it itself(cant remember)
                      With that he finished the interview. There was a HR after that with ordinary 
questions only (Why EMC and so forth) :)
                        The other panel guy followed the strategy of asking the candidates to write any 
program of their choice and lambasted them with hell lot of questions. It would do you good to 
know the coding of any complex interview question extremely well :P And he went really too 
deep into projects and OOPS 

Skills:
College Name: Anna University Chennai

Application Developer Interview Questions Asked at Other Companies

asked in Oracle
Q1. Minimum Cost to Connect All Points Problem Statement Given an arr ... read more
asked in Fujitsu
Q2. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Oracle
Q3. Puzzle: – Two persons X and Y are sitting side by side with a coi ... read more
asked in Oracle
Q4. Count Subsequences Problem Statement Given an integer array ARR o ... read more
asked in Oracle
Q5. Remove the Kth Node from the End of a Linked List You are given a ... read more

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About primary keys (how columns can be accommodated in a single primary key)
  • Q2. Types of Constructors
  • Ans. 

    Constructors are special methods used to initialize objects in a class.

    • Constructors have the same name as the class.

    • Types of constructors include default, parameterized, copy, and static constructors.

    • Example: public class Person { public Person() { } }

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Technical discussion
Round 3 - Behavioral 

(1 Question)

  • Q1. Process flow of my work
  • Ans. 

    My work involves analyzing requirements, designing solutions, coding, testing, and deploying applications.

    • Analyze requirements provided by stakeholders

    • Design solutions based on requirements

    • Code the application using appropriate programming languages

    • Test the application for bugs and errors

    • Deploy the application to production environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good discussion
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Difficulty was not that hard it was easy of you got your aptitude skills

Round 3 - Technical 

(1 Question)

  • Q1. It was all about my core branch that is civil engineering.
Round 4 - HR 

(1 Question)

  • Q1. It was all about my name height family background etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Never apply to this cognizant company this pathetic company takes interview,gives you ppo offer before all companies and will never give you FTE date of joining

I applied via LinkedIn and was interviewed in Aug 2022. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. How do you allocate memory to 2D array dynamically? How and why does that work?
  • Ans. 

    Dynamic allocation of memory to 2D array is done using double pointer and malloc function.

    • Declare a double pointer to hold the 2D array.

    • Allocate memory to the first dimension using malloc function.

    • Allocate memory to the second dimension using a loop and malloc function.

    • Free the memory after use to avoid memory leaks.

    • Example: int **arr; arr = (int **)malloc(rows * sizeof(int *));

    • Example: for(int i=0; i

  • Answered by AI
  • Q2. Given string 'aabbdbdges', write a function to return a string in which there would be the letter followed by it's count of occurrence. (the output from the function for the given string should be a2b3d2g2...
  • Q3. Questions regarding memory allocation layout in C
  • Q4. Questions on Code lifecycle. Like, what is assembly code? what are macros?
Round 2 - Manegerial round 

(2 Questions)

  • Q1. Detailed questions regarding what is sprint, what is iteration? what is a story? what is a scrum? what is the role of scrum master?
  • Q2. Explain waterfall model
  • Ans. 

    Waterfall model is a linear sequential approach to software development.

    • It follows a sequential process where each phase must be completed before moving to the next one.

    • It is a rigid model and changes cannot be made easily once a phase is completed.

    • It is suitable for projects with well-defined requirements and a clear understanding of the end product.

    • Phases include requirements gathering, design, implementation, testin...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for DXC Technology Application Developer interview:
  • C
Interview preparation tips for other job seekers - Prepare how the memory layout works in C.
And have hands on practice writing small small C codes.

Skills evaluated in this interview

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Quantative Exam verbal

Round 3 - Technical 

(1 Question)

  • Q1. Python , RDBMS, C, SQL
Round 4 - HR 

(2 Questions)

  • Q1. What are your strengths and weaknesses?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Believe in you. You can succeed

I applied via Naukri.com and was interviewed before Oct 2021. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Explain fi to sd intigration
  • Ans. 

    FI to SD integration refers to the integration between SAP Financials (FI) and Sales and Distribution (SD) modules.

    • FI and SD are two important modules in SAP ERP system

    • FI module deals with financial transactions and accounting

    • SD module deals with sales and distribution processes

    • Integration between FI and SD modules ensures that financial transactions are accurately recorded for sales and distribution activities

    • Examples...

  • Answered by AI
  • Q2. Explain about tickets
  • Ans. 

    Tickets are a means of tracking and managing tasks or issues within a system.

    • Tickets can be created by users or automatically generated by the system.

    • They typically include information such as a title, description, priority level, and status.

    • Tickets can be assigned to specific individuals or teams for resolution.

    • They are commonly used in software development, customer support, and project management.

    • Examples of ticketi...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for DXC Technology Application Developer interview:
  • GL
  • Ap
  • Accounts Receivable
  • Asset Management
Interview preparation tips for other job seekers - practice on tickets
practice on configuration of GL ,AP ,AR and Asset account

I applied via Campus Placement and was interviewed in Oct 2021. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself?
  • Q2. Your skills?
  • Q3. Where do you see yourself in 5 years?

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview will be easy, just check simple coding and standard interview questions.

I applied via Referral and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How to handle if you are a team lead and some developer is not able to perform well.
  • Ans. 

    As a team lead, address the issue by identifying the root cause and providing support and guidance to improve performance.

    • Have a one-on-one meeting with the developer to discuss their challenges and identify the root cause of their performance issues.

    • Provide support and guidance to help the developer improve their skills and knowledge.

    • Set clear expectations and goals for the developer, and monitor their progress regula...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. Go through your technology questions.

Tell us how to improve this page.

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.6
 • 362 Interviews
View all
Dell EMC Application Developer Salary
based on 5 salaries
₹7 L/yr - ₹17 L/yr
At par with the average Application Developer 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