Upload Button Icon Add office photos

Filter interviews by

Delphix Senior Software Engineer 2 Interview Questions and Answers

Updated 23 Sep 2023

Delphix Senior Software Engineer 2 Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Aug 2023. There were 6 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 - Assignment 

Take Home assignment was given.
* Use oops concepts and exception handling properly.

Round 3 - Technical 

(1 Question)

  • Q1. Data Structures and Algorithms round. Prepare for LL, Arrays, Stack, Queue
Round 4 - Technical 

(1 Question)

  • Q1. Troubleshooting Round Random situation is given to check technical thinking and brainstorming. ( be prepared for TCP, UDP, what happens when we type any url on browser)
Round 5 - Technical 

(2 Questions)

  • Q1. LLD & HLD Round
  • Q2. Also, asked DS question in between.
Round 6 - Technical 

(1 Question)

  • Q1. Director Round About my projects and challenging parts in the project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic DS Algo and system design.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(4 Questions)

  • Q1. Create basic react app with dummy data fetched from JSON API
  • Ans. 

    Create a basic React app with dummy data fetched from a JSON API.

    • Set up a new React project using create-react-app

    • Create a component to fetch data from a JSON API using fetch or axios

    • Display the fetched data in the component

  • Answered by AI
  • Q2. Array methods and Flatten array
  • Q3. Event loop
  • Q4. HTML and Javascript basics
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Data structure and aptitude

Round 2 - Coding Test 

10 mins given for prepare for the problem and after completing the problem (program ) they asked to explain and asked to upgrade the program by reduce time complexity

Round 3 - Technical 

(2 Questions)

  • Q1. Topic given and want to explain
  • Q2. Reverse string without buildin funtion and for loop
  • Ans. 

    Reverse a string without using built-in functions or for loops

    • Use recursion to reverse the string

    • Pass the substring excluding the first character to the recursive function

    • Base case: return the character itself if the length of the string is 1

    • Concatenate the last character of the string with the result of the recursive call

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Introduce your self
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Skilled in web development technologies like HTML, CSS, and JavaScript

    • Worked on projects involving database management with SQL

  • Answered by AI
  • Q2. Are you ok with agreement
  • Ans. 

    Yes, I am okay with agreement.

    • I am comfortable with signing agreements related to software development projects.

    • I understand the importance of agreements in protecting both parties involved in a project.

    • I am willing to review and negotiate agreements to ensure they are fair and reasonable.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - be confidence
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. SQL Questions - Constraints- how to optimize long SQL query without changing the output
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. String related operations based on that they will ask you problems.
  • Q2. State management knowledge will really help you to tackle this round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared well of what you've mentioned in your resume!
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Questions related to NODEJS , PHP, Past projects, Resume
  • Q2. Why Mongodb over Sql
  • Ans. 

    MongoDB is preferred over SQL for its flexibility, scalability, and ease of use in handling unstructured data.

    • MongoDB is a NoSQL database, making it easier to work with unstructured data compared to SQL.

    • MongoDB is schema-less, allowing for more flexibility in data modeling and changes.

    • MongoDB is horizontally scalable, making it easier to handle large amounts of data and high traffic loads.

    • MongoDB's document-based data ...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ResMed Associate Software Engineer interview:
  • Nodejs
  • MongoDB
  • PHP
  • SQL
Interview preparation tips for other job seekers - They asked related to resume only.

I didn't got selected because I couldn't justify what was written on my resume.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Promises in javascript
  • Ans. 

    Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 dsa questions were asked

Round 2 - HR 

(5 Questions)

  • Q1. Dsa questinsxare asked
  • Q2. Coding in live anlong project explanation
  • Ans. 

    Coding in live project involves writing and implementing code in a real-world software development project.

    • Understand the project requirements and scope before writing any code.

    • Collaborate with team members to ensure code integration and compatibility.

    • Test and debug code to ensure it meets project specifications.

    • Document code changes and updates for future reference.

    • Follow coding best practices and guidelines to mainta...

  • Answered by AI
  • Q3. Nothing is asked in my 3rd question
  • Q4. What does the following C++ code snippet do? int x = 5; while (x > 0) { cout << x << " "; x--; } Results in a compilation error Prints "54321" Prints "545454" Prints "12345"
  • Ans. 

    Prints numbers from 5 to 1 separated by a space

    • The code initializes x to 5, then enters a while loop that prints the value of x and decrements it until x is no longer greater than 0

    • The output will be '54321'

  • Answered by AI
  • Q5. What will be the value printed to the console? #include void function(int arr[], int size) { for (int 10; 1 size; 1++) { arr[1] = 2; } int main() { int arr[] {1, 2, 3, 4, 5); function(arr, 5);...
  • Ans. 

    The value printed to the console will be 246810.

    • The function modifies the array elements to be 2.

    • The main function calls the function to modify the array.

    • The loop in main function prints the modified array elements.

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at National Institute of Engineering (NIE) and was interviewed in Apr 2024. There were 4 interview rounds.

Round 1 - Coding Test 

2 questions, Easy and medium based

Round 2 - Technical 

(1 Question)

  • Q1. Stacks queues and array questions
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions on projects
Round 4 - HR 

(1 Question)

  • Q1. How to tackle any uncertain situations? Behavioural questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Basic Js concepts like debouncing,event loop, and other output-based questions.

Round 2 - One-on-one 

(1 Question)

  • Q1. Js concepts in depth
Round 3 - HR 

(2 Questions)

  • Q1. Hiring manager round, questions around my project
  • Q2. Optimization techniques
  • Ans. 

    Optimization techniques are methods used to improve the efficiency and performance of software applications.

    • Use algorithms like greedy, dynamic programming, or divide and conquer to optimize code

    • Minimize time complexity by avoiding nested loops and unnecessary iterations

    • Utilize data structures like hash tables, arrays, and trees for efficient storage and retrieval

    • Profile code to identify bottlenecks and optimize critic...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on basics, interviewers were very helpful

Delphix Interview FAQs

How many rounds are there in Delphix Senior Software Engineer 2 interview?
Delphix interview process usually has 6 rounds. The most common rounds in the Delphix interview process are Technical, Resume Shortlist and Assignment.
What are the top questions asked in Delphix Senior Software Engineer 2 interview?

Some of the top questions asked at the Delphix Senior Software Engineer 2 interview -

  1. Troubleshooting Round Random situation is given to check technical thinking and...read more
  2. Data Structures and Algorithms round. Prepare for LL, Arrays, Stack, Qu...read more
  3. Also, asked DS question in betwe...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

NetApp Interview Questions
3.9
 • 60 Interviews
Veritas Interview Questions
4.0
 • 59 Interviews
CommVault Interview Questions
3.9
 • 26 Interviews
Druva Interview Questions
3.5
 • 25 Interviews
Cohesity Interview Questions
3.5
 • 17 Interviews
ResMed Interview Questions
3.8
 • 15 Interviews
RUBRIK INDIA Interview Questions
3.8
 • 13 Interviews
View all
Delphix Senior Software Engineer 2 Salary
based on 7 salaries
₹25 L/yr - ₹44 L/yr
48% more than the average Senior Software Engineer 2 Salary in India
View more details

Delphix Senior Software Engineer 2 Reviews and Ratings

based on 3 reviews

3.9/5

Rating in categories

4.0

Skill development

3.9

Work-Life balance

4.7

Salary & Benefits

2.0

Job Security

4.4

Company culture

3.5

Promotions/Appraisal

4.4

Work Satisfaction

Explore 3 Reviews and Ratings
Senior Software Engineer 2
7 salaries
unlock blur

₹25 L/yr - ₹44 L/yr

Engineering Manager
6 salaries
unlock blur

₹48.5 L/yr - ₹67 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹30 L/yr - ₹81 L/yr

Web Analytics Manager
4 salaries
unlock blur

₹26.4 L/yr - ₹27.5 L/yr

Senior Software Development Engineer
4 salaries
unlock blur

₹16 L/yr - ₹32.5 L/yr

Explore more salaries
Compare Delphix with

Oracle

3.7
Compare

Druva

3.6
Compare

RUBRIK INDIA

3.8
Compare

Actifio

5.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview