Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Deltax Software Engineer Interview Questions and Answers

Updated 27 Oct 2024

Deltax Software Engineer Interview Experiences

6 interviews found

Software Engineer Interview Questions & Answers

user image Khushi Bansal

posted on 17 Aug 2024

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

Prepare well for coding question based on leetocde medium level and hard level.try to understand code you write , they ask questions from coding round also

Round 2 - Technical 

(2 Questions)

  • Q1. Tell about your brief introduction
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring Boot, and Angular

    • Developed web applications

  • Answered by AI
  • Q2. About the porjects and internships you have done, how you implemented
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

50 questions was and the duration was 45 mins

Round 2 - Coding Test 

Dsa and development questions were asked, and computer fundamentals were also asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Do MCQ question within 15-20 minutes. And pyq are really helpful here.

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It includes C programming questions and other language too

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 Resume tips
Round 2 - Coding Test 

Coding round consists of two sections and each section has 2 questions. One question is based on oops to solve a real life problem.

Round 3 - Technical 

(2 Questions)

  • Q1. Explain diamond problem in OOPS
  • Ans. 

    The diamond problem is an ambiguity that occurs when a class inherits from two classes that have a common base class.

    • Occurs in multiple inheritance

    • Results in ambiguity in method resolution

    • Can be resolved using virtual inheritance

    • Example: Class A -> Class B, Class C -> Class D, Class B and Class D inherit from Class A, Class C inherits from both Class B and Class D

  • Answered by AI
  • Q2. Explain the virtual function in OOPS
  • Ans. 

    Virtual functions in OOPS allow a derived class to provide its own implementation of a method defined in the base class.

    • Virtual functions are declared in the base class and can be overridden by derived classes.

    • They enable polymorphism, allowing objects of different classes to be treated as objects of the same base class.

    • The virtual keyword is used to declare a function as virtual in the base class.

    • The derived class can...

  • Answered by AI

Deltax interview questions for designations

 Associate Software Engineer

 (5)

 Software Engineer Trainee

 (1)

 Software Developer

 (8)

 Associate Software Trainee

 (1)

 Full Stack Software Developer

 (2)

 Product Engineer

 (4)

 Softwaretest Engineer

 (1)

 Data Engineer

 (1)

I applied via Walk-in

Round 1 - Aptitude Test 

Data structures and algorithms

Round 2 - Coding Test 

Data structures and algorithms

Interview Preparation Tips

Interview preparation tips for other job seekers - Do prepare DSA and be confident while answering
1.introduce yourself
They asked to code using ang programming language
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Jul 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 Resume tips
Round 2 - Coding Test 

Focus on Data structure problems and back tracking

Round 3 - Technical 

(2 Questions)

  • Q1. OOPS Concepts and Data Structures
  • Q2. SQL related queries and problem solving ability

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Deltax Interview FAQs

How many rounds are there in Deltax Software Engineer interview?
Deltax interview process usually has 2-3 rounds. The most common rounds in the Deltax interview process are Coding Test, Resume Shortlist and Technical.
What are the top questions asked in Deltax Software Engineer interview?

Some of the top questions asked at the Deltax Software Engineer interview -

  1. Explain the virtual function in O...read more
  2. explain diamond problem in O...read more
  3. SQL related queries and problem solving abil...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

DESIGNATION

INTERVIEWS

Deltax

No Interviews

INTERVIEWS

Axtria

No Interviews

INTERVIEWS

Axtria

No Interviews

INTERVIEWS

Deltax

No Interviews

INTERVIEWS

Axtria

No Interviews

SALARIES

Bharat Electronics

SALARIES

Deltax

Tell us how to improve this page.

Deltax Software Engineer Interview Process

based on 6 interviews

2 Interview rounds

  • Resume Shortlist Round
  • Coding Test Round
View more
Deltax Software Engineer Salary
based on 5 salaries
₹5 L/yr - ₹7 L/yr
22% less than the average Software Engineer Salary in India
View more details
Associate Product Engineer
56 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Digital Marketing Analyst
21 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Full Stack Developer
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Production Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Deltax with

Accenture

3.8
Compare

IBM

4.0
Compare

TCS

3.7
Compare

Infosys

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