Upload Button Icon Add office photos

Deltax

Compare button icon Compare button icon Compare

Filter interviews by

Deltax Interview Questions and Answers

Updated 16 Jun 2025
Popular Designations

34 Interview questions

A Product Engineer was asked 10mo ago
Q. What are the fundamental concepts of OOPs?
Ans. 

Object-Oriented Programming (OOP) fundamentals include concepts like encapsulation, inheritance, and polymorphism.

  • Encapsulation: Bundling data and methods that operate on the data within one unit, e.g., a class in Java.

  • Inheritance: Mechanism where one class inherits properties and behaviors from another, e.g., a 'Dog' class inheriting from an 'Animal' class.

  • Polymorphism: Ability to present the same interface for d...

View all Product Engineer interview questions
A Digital Marketing Analyst was asked 10mo ago
Q. How many characters are different between two given sentences?
Ans. 

The number of different characters in two sentences can be determined by comparing each character in both sentences.

  • Compare each character in the two sentences

  • Count the number of characters that are different

  • Spaces and punctuation should also be considered as characters

View all Digital Marketing Analyst interview questions
A Product Engineer was asked 11mo ago
Q. What is C programming?
Ans. 

C programming is a high-level programming language used for system programming, embedded systems, and software development.

  • C programming is widely used for developing operating systems, compilers, and device drivers.

  • It allows direct access to memory and hardware, making it efficient for low-level programming.

  • C programs are portable and can be easily optimized for performance.

  • Example: Writing a simple 'Hello World'...

View all Product Engineer interview questions
A Product Engineer was asked 11mo ago
Q. What is an array in C?
Ans. 

An array in C is a collection of elements of the same data type stored in contiguous memory locations.

  • Arrays are declared by specifying the data type of the elements and the number of elements in square brackets, e.g. int arr[5];

  • Elements in an array can be accessed using their index, starting from 0, e.g. arr[0] refers to the first element.

  • Arrays in C are zero-indexed, meaning the first element is at index 0.

  • Array...

View all Product Engineer interview questions
A Junior Java Developer was asked 11mo ago
Q. Introduce yourself.
Ans. 

I am a passionate Junior Java Developer with a strong foundation in Java programming and problem-solving skills.

  • Graduated with a degree in Computer Science

  • Completed internships where I developed Java applications

  • Familiar with object-oriented programming principles

  • Experience with Spring framework and Hibernate

  • Strong communication and teamwork skills

View all Junior Java Developer interview questions
An Operations Analyst was asked 11mo ago
Q. How would you advertise a small bakery?
Ans. 

I would advertise the small bakery through social media, local events, partnerships with other businesses, and offering promotions.

  • Utilize social media platforms such as Instagram, Facebook, and Twitter to showcase the bakery's products and engage with customers

  • Participate in local events and farmers markets to increase visibility and attract new customers

  • Collaborate with other businesses, such as coffee shops or ...

View all Operations Analyst interview questions
A Digital Marketing Intern was asked
Q. What is the difference between marketing and advertising?
Ans. 

Marketing is a broader concept that encompasses advertising as one of its components.

  • Marketing involves identifying customer needs, creating products or services to meet those needs, and promoting them to the target audience.

  • Advertising is a specific promotional activity within marketing that focuses on creating and delivering persuasive messages through various channels.

  • Marketing includes market research, product...

View all Digital Marketing Intern interview questions
Are these interview questions helpful?
An Associate Software Engineer was asked
Q. Why do we use JS for Web development and not Python?
Ans. 

JS is used for web development due to its compatibility with browsers, asynchronous capabilities, and large community support.

  • JavaScript is the only language that can be executed in the browser, making it essential for client-side scripting.

  • JS has asynchronous capabilities, allowing for non-blocking operations which are crucial for web development.

  • There is a large community of developers using JS for web developme...

View all Associate Software Engineer interview questions
A Software Engineer was asked
Q. Explain virtual functions in OOP.
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 clas...

View all Software Engineer interview questions
A Software Engineer was asked
Q. Explain the diamond problem in OOPS.
Ans. 

The diamond problem occurs in multiple inheritance when a class inherits from two classes that have a common base class.

  • The diamond problem is a challenge in object-oriented programming.

  • It arises when a class inherits from two classes that have a common base class.

  • This can lead to ambiguity in method resolution and conflicts in member variables.

  • To resolve the diamond problem, various programming languages provide ...

View all Software Engineer interview questions

Deltax Interview Experiences

88 interviews found

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I appeared for an interview in May 2025, where I was asked the following questions.

  • Q1. About Delta X
  • Q2. You can leave!!!

Interview Preparation Tips

Interview preparation tips for other job seekers - If you're looking for a proper interview experience,RUN-don't walk =-far away from Delta X.The company has no proper nameboard,no reception & no coordination,even the locals thought the interview was for Domino's outlet.The screening round was literally conducted on the roadside - yes we were standing on the footpath like confused participants in a prank show.No structure,no respect & absolutely no communication.One of the employees even had the audacity to casually smoke in public durin the process - right in front of the candidates.The environment felt like a joke.Every candidate around had the same blank expression - no one knew whther to cry or laugh. This wasn't an interview, it was a career circus.AVOID THIS PLACE IF YOU HAVE EVEN AN OUNCE OF SELF RESPECT!
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

It was a MCQ test on CS Fundamentals. We have to answer 50 questions in 40 minutes. Accuracy is must. Company have its own cutoff and it's usually high. So try to gain maximum marks as possible. The results were announced in 1.5 hrs. The selected candidates will be appearing for the coding challenge.

Round 2 - Coding Test 

There are 5 questions. 1 easy , 3 medium, 1 hard. You should solve atleast 4 questions to get shortlisted for the interview. Results are announced in 2-3 hours. Take a look at these questions. One of the questions from the coding challenge will be asked in the interview.

Round 3 - Technical 

(5 Questions)

  • Q1. Email validation question from coding challenge
  • Ans. 

    Email validation ensures that a given email address is formatted correctly according to standard conventions.

    • An email must contain an '@' symbol, e.g., 'user@example.com'.

    • It should have a domain name after the '@', e.g., 'example.com'.

    • Valid characters include letters, numbers, and certain symbols like '.', '_', and '-'.

    • The domain must have a valid top-level domain (TLD), e.g., '.com', '.org'.

    • Examples of invalid emails:...

  • Answered by AI
  • Q2. Binary Search on rotated arrays
  • Ans. 

    Binary search on rotated arrays involves finding a target value in a sorted array that has been rotated at an unknown pivot point.

    • Identify the pivot point by finding the minimum element in the array.

    • Determine which half of the array the target value falls into based on the pivot point.

    • Perform binary search on the appropriate half of the array to find the target value.

  • Answered by AI
  • Q3. About projects (reason behind using the mentioned database)
  • Ans. 

    Choosing the right database is crucial for project success, impacting performance, scalability, and data integrity.

    • Relational databases like MySQL are ideal for structured data with complex queries, e.g., financial applications.

    • NoSQL databases like MongoDB are suited for unstructured data and scalability, e.g., social media platforms.

    • In-memory databases like Redis provide high-speed data access, beneficial for real-tim...

  • Answered by AI
  • Q4. Use of package.json file
  • Ans. 

    package.json file is used in Node.js projects to manage dependencies, scripts, and metadata.

    • Contains project metadata like name, version, description, etc.

    • Lists dependencies required for the project to run.

    • Defines scripts for tasks like building, testing, and running the project.

    • Can include configurations for tools like ESLint, Babel, etc.

  • Answered by AI
  • Q5. What are scripts in package.json file
  • Ans. 

    Scripts in package.json file are commands that can be run using npm.

    • Scripts are defined under the 'scripts' key in package.json.

    • Common scripts include 'start', 'test', 'build', etc.

    • Scripts can be run using 'npm run '.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Explain your approach clearly while solving DSA questions. Revise your understanding on the projects before the interview. Also revise oops, cn, os and some basic understanding of Low level design i.e. designing of classes for music player.

Skills evaluated in this interview

Interview Questions & Answers

user image Anonymous

posted on 4 Nov 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

General test which you will be able to solve based on general aptitude questions and also another test that includes viewing video, and hearing test.

Round 2 - Assignment 

A video submission of how you would stratergise some question given by them.

Round 3 - One-on-one 

(3 Questions)

  • Q1. General questions, and mathematical oral question/puzzles
  • Q2. About your resume
  • Q3. Marketing related questions
Round 4 - One-on-one 

(3 Questions)

  • Q1. General questions
  • Q2. Some resume questions
  • Q3. Puzzles, They keep pushing you to answer.

Interview Preparation Tips

Interview preparation tips for other job seekers - learn how to solve mathematical operations orally, make sure you know your resume, solve puzzles , and know a little bit of marketing using it's terms, while also having good communication skills.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

This round is all about technical mcqs from theory subjects and programming. No aptitude, reasoning questions.

Round 2 - Coding Test 

I have to solve 5 questions in 2 hrs.

Round 3 - Technical 

(5 Questions)

  • Q1. Ask to solve a DP question given in the coding test.
  • Ans. 

    Dynamic Programming (DP) is a method for solving complex problems by breaking them down into simpler subproblems.

    • DP is used in optimization problems, like the Knapsack problem.

    • It involves storing results of subproblems to avoid redundant calculations.

    • Example: Fibonacci sequence can be computed efficiently using DP.

    • DP can be implemented using either a top-down (memoization) or bottom-up (tabulation) approach.

  • Answered by AI
  • Q2. Ask to solve another medium level leetcode question.
  • Q3. Ask about projects and Internship experienced.
  • Q4. Ask OOPS questions.
  • Q5. Ask me to design Zomato's dish rating feature.
  • Ans. 

    Design a dish rating feature for Zomato to enhance user engagement and improve restaurant visibility.

    • User Interface: Simple star rating system (1-5 stars) for quick feedback.

    • Detailed Reviews: Allow users to write reviews with pros and cons for each dish.

    • Photo Upload: Enable users to upload photos of the dishes they rated.

    • Filter Options: Users can filter dishes by ratings, cuisine, or popularity.

    • Incentives: Reward users...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare previously asked questions. You will get those f om YouTube.
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

Had 50 qsns in 45 min

Round 2 - Coding Test 

Had 5 qsns to execute topics like tress and graphs

Round 3 - Technical 

(2 Questions)

  • Q1. Sql queries and how to extract the data
  • Q2. Oops concepts and their execution
  • Ans. 

    Oops concepts are fundamental principles of object-oriented programming that help in organizing and designing code efficiently.

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

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

    • Polymorphism: Ability of objects to take on multiple forms or have multiple behaviors.

    • Abstraction: Hiding the complex ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not apply they don't hire

Skills evaluated in this interview

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

I applied via Newspaper Ad and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basics questions were asked,most of the questions were from previous year

Round 2 - Technical 

(3 Questions)

  • Q1. Arithma and the operator
  • Ans. 

    Arithma is a fictional company and the operator is a key component in their product.

    • The operator is a crucial element in the functionality of Arithma's product.

    • It is likely a symbol or function used for calculations.

    • Examples of operators could include + (addition), - (subtraction), * (multiplication), / (division).

  • Answered by AI
  • Q2. JSON sanitizer:remove and sort
  • Ans. 

    A JSON sanitizer removes unwanted data and sorts the remaining keys for consistency.

    • Sanitization involves removing sensitive or unnecessary fields, e.g., removing 'password' from user data.

    • Sorting can be done alphabetically by key, e.g., converting {'b': 2, 'a': 1} to {'a': 1, 'b': 2}.

    • Use libraries like 'json-sanitizer' in JavaScript for effective sanitization.

    • Ensure to validate data types after sanitization, e.g., ens...

  • Answered by AI
  • Q3. Get me the query parameter
  • Ans. 

    The query parameter is a part of a URL that contains data to be passed to a web server.

    • Query parameters are added to the end of a URL after a '?'

    • They are key-value pairs separated by '&'

    • Example: www.example.com/search?q=product&category=electronics

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Deltax Product Manager interview:
  • java,DSA
Interview preparation tips for other job seekers - refer previous year questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

MCQ on computer fundamentals

Round 2 - Coding Test 

5 DSA questions medium , hard lvl

Round 3 - Technical 

(3 Questions)

  • Q1. About myself and my project overview
  • Q2. Oops , Abstraction in detail and mysql and nosql diff
  • Q3. DSA questions on Array , Graph and DP
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

90 Question with 60 minutes

Round 2 - Assignment 

Speak about given topic

Round 3 - HR 

(2 Questions)

  • Q1. How can AI and machine learning be leveraged in digital marketing strategies?
  • Ans. 

    AI and machine learning enhance digital marketing by personalizing experiences, optimizing campaigns, and analyzing data efficiently.

    • Personalization: AI algorithms analyze user behavior to deliver tailored content and product recommendations, improving engagement.

    • Predictive Analytics: Machine learning models forecast customer behavior, helping marketers anticipate trends and adjust strategies accordingly.

    • Chatbots: AI-p...

  • Answered by AI
  • Q2. What are the most effective ways to measure the ROI of social media marketing campaigns?
  • Ans. 

    Measuring ROI in social media involves tracking conversions, engagement, and overall impact on business goals.

    • Track conversions: Use UTM parameters to measure traffic and conversions from social media posts.

    • Engagement metrics: Analyze likes, shares, comments, and overall engagement to assess brand awareness.

    • Customer acquisition cost: Calculate the cost of acquiring customers through social media campaigns versus revenu...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well lastest advance technology
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Aptitude Test 

Good nice easy to medium questions

Round 2 - Technical 

(2 Questions)

  • Q1. What is your project
  • Q2. Give some real life examples of oops
  • Ans. 

    Real life examples of OOPs include cars, animals, and banking systems.

    • Cars: Objects like make, model, and color with behaviors like driving and honking.

    • Animals: Objects like species, name, and age with behaviors like eating and sleeping.

    • Banking Systems: Objects like account, balance, and transaction with behaviors like deposit and withdraw.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Questions on computer networks
  • Q2. Questions on SQL queries and DSA

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Deltax?
Ask anonymously on communities.

Deltax Interview FAQs

How many rounds are there in Deltax interview?
Deltax interview process usually has 2-3 rounds. The most common rounds in the Deltax interview process are Aptitude Test, Coding Test and Technical.
How to prepare for Deltax interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Deltax. The most common topics and skills that interviewers at Deltax expect are Digital Marketing, Key Account Management, Social Media Marketing, Campaign Management and Performance Marketing.
What are the top questions asked in Deltax interview?

Some of the top questions asked at the Deltax interview -

  1. Problem Statement - Ringa Ringa Roses There are bunch of kids (n) who are stan...read more
  2. Why do we use JS for Web development Why not Pyth...read more
  3. How can AI and machine learning be leveraged in digital marketing strategi...read more
How long is the Deltax interview process?

The duration of Deltax interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 95 interview experiences

Difficulty level

Easy 14%
Moderate 63%
Hard 22%

Duration

Less than 2 weeks 83%
2-4 weeks 15%
More than 8 weeks 2%
View more

Deltax Reviews and Ratings

based on 60 reviews

2.7/5

Rating in categories

3.4

Skill development

2.6

Work-life balance

2.6

Salary

2.8

Job security

2.7

Company culture

2.7

Promotions

2.7

Work satisfaction

Explore 60 Reviews and Ratings
Associate Product Engineer
66 salaries
unlock blur

₹6 L/yr - ₹9.4 L/yr

Full Stack Developer
19 salaries
unlock blur

₹6 L/yr - ₹8.2 L/yr

Digital Marketing Analyst
19 salaries
unlock blur

₹2.3 L/yr - ₹4 L/yr

Product Engineer
14 salaries
unlock blur

₹8.1 L/yr - ₹15 L/yr

Production Engineer
14 salaries
unlock blur

₹6 L/yr - ₹8.5 L/yr

Explore more salaries
Compare Deltax with

Aneja Associates

3.2
Compare

C-quel Management Services

4.4
Compare

VISION

4.1
Compare

Crescendo Global

4.3
Compare
write
Share an Interview