Upload Button Icon Add office photos

Dell

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Dell SDE Interview Questions and Answers

Updated 31 Mar 2024

Dell SDE Interview Experiences

3 interviews found

SDE Interview Questions & Answers

user image Anonymous

posted on 8 Aug 2022

I applied via campus placement at Indian Institute of Information Technology (IIIT), Guwahati and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Cs subjects regarding OS, C, DBMS

Round 2 - Technical 

(2 Questions)

  • Q1. Implement insertion sort
  • Ans. 

    Insertion sort is a simple sorting algorithm that builds the final sorted array one item at a time.

    • Start with the second element and compare it with the first element, swap if necessary

    • Move to the third element and compare it with the second and first element, swap if necessary

    • Continue this process until the entire array is sorted

    • Time complexity: O(n^2)

    • Example: ['banana', 'apple', 'orange', 'grape'] -> ['apple', 'banan

  • Answered by AI
  • Q2. Implement tree and code
  • Ans. 

    Implementing a tree data structure using code

    • Define a Node class with left and right child pointers

    • Implement insert, search, and delete functions

    • Traversal methods: inorder, preorder, postorder

    • Examples: binary search tree, AVL tree, red-black tree

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Dell SDE interview:
  • DBMS
  • C
  • CPP
  • OS
Interview preparation tips for other job seekers - keep strong DS keep stromg DBMS practice Coding prepare Aptitude

Skills evaluated in this interview

SDE Interview Questions & Answers

user image Anonymous

posted on 31 Mar 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 2 string based coding questions RXJS and js based input output questions

SDE Interview Questions Asked at Other Companies

asked in Infosys
Q1. Return Subsets Sum to K Problem Statement Given an integer array ... read more
asked in Nagarro
Q2. Partition to K Equal Sum Subsets Problem Given an array of intege ... read more
asked in Nagarro
Q3. Sort a "K" Sorted Doubly Linked List Given a doubly-linked list w ... read more
asked in Nagarro
Q4. Maximum Meetings Selection You are tasked with scheduling meeting ... read more
asked in Amazon
Q5. There is a 12 km road and a contractor who is in-charge of repair ... read more

SDE Interview Questions & Answers

user image Anonymous

posted on 21 May 2022

I was interviewed before May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

  • Q1. What are functional relations in the context of database management systems (DBMS)?
Round 2 - Video Call 

(1 Question)

Round duration - 40 minutes
Round difficulty - Hard

  • Q1. Puzzle

    Questions related to Web development and machine learning

Round 3 - HR 

Round duration - 20 minutes
Round difficulty - Medium

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Manipal University Jaipur. I applied for the job as SDE in HyderabadEligibility criteria8+ GPADell Technologies interview preparation:Topics to prepare for the interview - RDBMS, OS, DSA, Software Engineering, Web development.Time required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Have clear understanding of fundamental concepts.
Tip 2 : Have a skill of explaining your thoughts as clearly as possible.
Tip 3 : Practice RDBMS and OS concepts.

Application resume tips for other job seekers

Tip 1 : Mention about the projects you've done with detail
Tip 2 : Have deep knowledge about everything mentioned on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

SDE Interview Questions & Answers

Samsung user image Anonymous

posted on 17 Dec 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Coding test which was difficult (Hard Leetcode)

SDE Interview Questions & Answers

Philips user image GYANESH ANAND

posted on 7 Apr 2024

Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Internshala

Round 1 - HR 

(1 Question)

  • Q1. Why do you want to join Philips
Round 2 - Aptitude Test 

Nlp discussion around the nlp q and ans

Interview Preparation Tips

Interview preparation tips for other job seekers - Oveall good
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Mostly of my educational background and work experience
Round 2 - One-on-one 

(1 Question)

  • Q1. About my future expectations and current skills

SDE Interview Questions & Answers

Samsung user image Anonymous

posted on 22 Oct 2023

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Coding Test 

2 Coding quesiton were asked based on dsa

Round 2 - Technical 

(1 Question)

  • Q1. Technical question related to dsa were asked
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join samsung?

I applied via Job Portal and was interviewed in Aug 2021. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. EOT Caren maintenance
  • Q2. Plant breakdown Machines

Interview Preparation Tips

Interview preparation tips for other job seekers - A challenging career with opportunity to be a part of growth-oriented team that works
towards achieving the Organization’s Business Goals.

SDE Interview Questions & Answers

Samsung user image Anonymous

posted on 17 Oct 2023

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

It was of 3 hours and they have their own software for this.

Round 2 - Technical 

(2 Questions)

  • Q1. They asked questions on graph trees and binary search. Also heap.
  • Q2. Questions on heaps data structure

Interview Preparation Tips

Topics to prepare for Samsung SDE interview:
  • DSA
Interview preparation tips for other job seekers - Prepare for DSA and project.

SDE Interview Questions & Answers

Samsung user image Anonymous

posted on 15 Nov 2022

I applied via Walk-in and was interviewed in May 2022. 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 - Coding Test 

Basic coding round with 3 CP based questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Use of namespace in c++
  • Ans. 

    Namespace in C++ is used to avoid naming conflicts and organize code.

    • Namespace allows grouping of related functions, classes, and variables.

    • It helps in avoiding naming conflicts by providing a unique identifier to each entity.

    • Namespace can be nested within another namespace.

    • Using namespace keyword, we can access the entities within a namespace.

    • Example: namespace std { class string {}; }

    • Example: using namespace std; str

  • Answered by AI
  • Q2. How would++(++i) work
  • Ans. 

    The expression would increment the value of i twice before using it in the operation.

    • The value of i would be incremented by 2 before being used in the operation.

    • This is equivalent to writing i = i + 2; followed by the operation using the new value of i.

    • For example, if i was initially 3, the expression would evaluate to 6.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - question were a bit atypical so knowledge part from basic knowledge is needed

Skills evaluated in this interview

Dell Interview FAQs

How many rounds are there in Dell SDE interview?
Dell interview process usually has 1-2 rounds. The most common rounds in the Dell interview process are Technical and Aptitude Test.
What are the top questions asked in Dell SDE interview?

Some of the top questions asked at the Dell SDE interview -

  1. implement insertion s...read more
  2. implement tree and c...read more
  3. 2 string based coding questions RXJS and js based input output questi...read more

Tell us how to improve this page.

Dell SDE Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 905 Interviews
Samsung Interview Questions
3.9
 • 561 Interviews
Cisco Interview Questions
4.1
 • 398 Interviews
HARMAN Interview Questions
3.8
 • 258 Interviews
OPPO Interview Questions
4.0
 • 210 Interviews
LG Electronics Interview Questions
4.0
 • 194 Interviews
Vivo Interview Questions
4.1
 • 192 Interviews
View all
Dell SDE Salary
based on 6 salaries
₹11 L/yr - ₹14 L/yr
46% less than the average SDE Salary in India
View more details

Dell SDE Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

4.0

Skill development

5.0

Work-life balance

3.0

Salary

4.9

Job security

4.9

Company culture

3.0

Promotions

4.9

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
1.7k salaries
unlock blur

₹9.9 L/yr - ₹41.5 L/yr

Software Engineer
1.1k salaries
unlock blur

₹4.6 L/yr - ₹18 L/yr

Principal Software Engineer
941 salaries
unlock blur

₹19 L/yr - ₹53.2 L/yr

Software Engineer2
848 salaries
unlock blur

₹7 L/yr - ₹22.1 L/yr

Senior Analyst
542 salaries
unlock blur

₹5.8 L/yr - ₹21 L/yr

Explore more salaries
Compare Dell with

Helmerich & Payne

4.0
Compare

Lenovo

4.2
Compare

Apple

4.3
Compare

Acer India

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