Upload Button Icon Add office photos

Filter interviews by

DesignX Interview Questions and Answers

Updated 22 Apr 2022

DesignX Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed in Oct 2021. 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 - HR 

(1 Question)

  • Q1. After shortlisted your resume, HR can call you and schedule a date for technical interview.
Round 3 - Technical 

(1 Question)

  • Q1. Asked by the interviewer: 1. Tell me about yourself ? 2. Why you become a MERN developer? 3. Difference between DOM vs Virtual DOM? 4. Do you know how to Redux works? Please Explain? 5. In MongoDB have any...

Interview Preparation Tips

Topics to prepare for DesignX Mern Full Stack Developer interview:
  • React.Js
  • Nodejs
  • MongoDB
  • AWS
  • Cloud
  • Mern
  • Full Stack
  • Front-end
Interview preparation tips for other job seekers - Please notice freshers not only experienced developers !

Mern Full Stack Developer Interview Questions asked at other Companies

Q1. What is the way to save large files (e.g. photos) into MongoDB database.
View answer (2)

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Easy level to Medium level

Round 2 - Coding Test 

2 Easy questions of DSA

Round 3 - One-on-one 

(2 Questions)

  • Q1. One DSA question
  • Q2. Normal discussion about tech stack
Round 4 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Why do you want to join digit?

Interview Preparation Tips

Interview preparation tips for other job seekers - Go easy.. Nothing is hard in digit hiring
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 Nov 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Questions from arrays and strings and some aptitude questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. How to merge 2 csv files
  • Ans. 

    To merge two CSV files, you can use software like Microsoft Excel or programming languages like Python.

    • Open both CSV files in a software like Microsoft Excel.

    • Copy the data from one CSV file and paste it into the other CSV file.

    • Save the merged CSV file with a new name.

    • Alternatively, you can use programming languages like Python to merge CSV files by reading both files, combining the data, and writing to a new file.

  • Answered by AI
  • Q2. Basic questions on arrays
Round 3 - HR 

(1 Question)

  • Q1. 3 reasons why u choose this company
  • Ans. 

    I applied to this company because of its reputation in the industry, opportunities for growth, and company culture.

    • Reputation in the industry - I have heard great things about the company's innovative projects and successful track record.

    • Opportunities for growth - The company offers various training programs and career advancement opportunities for employees.

    • Company culture - I value a positive work environment and the...

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Questions on python

Skills evaluated in this interview

Assistant Manager Interview Questions & Answers

Blinkit user image RATNAKAR DIP SHARMA

posted on 10 Jun 2023

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Can you handle the situation if vendor payment not done for company side .
  • Ans. 

    Yes, I have experience handling vendor payments and can address the situation effectively.

    • I have experience in managing vendor relationships and ensuring timely payments.

    • I would first investigate the reason for the missed payment, whether it was an oversight or a dispute with the vendor.

    • I would communicate with the vendor to explain the situation and work towards a resolution, such as negotiating a new payment schedule...

  • Answered by AI
  • Q2. How to identify the root cause of supply not done
  • Ans. 

    Identifying the root cause of supply not done involves analyzing processes, communication, and potential obstacles.

    • Review the supply chain process from start to finish to identify any bottlenecks or inefficiencies

    • Communicate with team members involved in the supply process to gather information on any issues or challenges faced

    • Check for any external factors such as supplier delays or transportation issues that may be c...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please consider this firm as a last option.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

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

Round 1 - Group Discussion 

How to maintain the store ? And How remove the bad stock?

Round 2 - One-on-one 

(2 Questions)

  • Q1. How to maintain the store
  • Ans. 

    Maintaining the store involves ensuring cleanliness, organization, inventory management, and customer satisfaction.

    • Regularly clean and organize the store to create a welcoming environment for customers

    • Implement efficient inventory management practices to avoid stockouts and overstocking

    • Train and motivate staff to provide excellent customer service

    • Monitor sales trends and adjust product displays accordingly

    • Regularly ins...

  • Answered by AI
  • Q2. How to remove the bad stock
  • Ans. 

    To remove bad stock, conduct regular inventory audits, identify slow-moving items, negotiate with suppliers for returns or exchanges, and implement a clearance sale strategy.

    • Conduct regular inventory audits to identify bad stock

    • Identify slow-moving items and take necessary actions

    • Negotiate with suppliers for returns or exchanges

    • Implement a clearance sale strategy to move out bad stock quickly

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Instahyre and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Asked to write different SQL queries.
1. Moving average of lf previous 10 days
2. For a data which records in and out time of an employee. How many employees were present in the office at a given time
3. A/B testing vs pre-post testing

Round 2 - Case Study 

1. Had to come up with a method to give a score to each user based on FRM(frequency, recency, monetory)
2. Guesstimate: how many burgers does McD sells in a day

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

I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Code postorder traversal without using recursion.
  • Ans. 

    Iterative solution using a stack to perform postorder traversal.

    • Use a stack to simulate the recursive call stack.

    • Push nodes in the order of right, left, root.

    • Pop nodes from stack and add to result array.

    • Repeat until stack is empty.

  • Answered by AI
  • Q2. Leetcode Problem 1626 - Best team with no conflicts.
Round 2 - System Design 

(2 Questions)

  • Q1. Design whatsapp with one to one, group messaging and read receipts functionalities. Design the database.
  • Ans. 

    Design a messaging app like WhatsApp with one-to-one, group messaging, and read receipts functionalities.

    • Use a relational database to store user information, messages, and group memberships.

    • Create tables for users, messages, groups, and group memberships.

    • Include columns for message content, sender, receiver, timestamp, and read status.

    • Implement a feature to mark messages as read with read receipts.

    • Use indexes for effic

  • Answered by AI
  • Q2. Questions on dbms, cn and os.

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Aug 2022. There were 2 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 - One-on-one 

(4 Questions)

  • Q1. How do you setup a Dark Store?
  • Ans. 

    Setting up a Dark Store involves converting a retail store into a fulfillment center for online orders.

    • Select a suitable location for the Dark Store, preferably in a centralized area with good access to transportation.

    • Optimize the layout of the store for efficient picking, packing, and shipping of orders.

    • Implement inventory management systems to track stock levels accurately and prevent stockouts.

    • Train staff on order f...

  • Answered by AI
  • Q2. How do joins work in the simplest manner?
  • Ans. 

    Joins combine data from two or more tables based on a related column.

    • Joins are used to retrieve data from multiple tables based on a related column

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

  • Answered by AI
  • Q3. Write a basic query explaining the order of execution?
  • Ans. 

    The order of execution in a query determines the sequence in which operations are performed.

    • 1. The order of execution in a query typically follows the sequence: FROM, WHERE, GROUP BY, HAVING, SELECT, ORDER BY.

    • 2. The FROM clause specifies the tables involved in the query.

    • 3. The WHERE clause filters the rows based on specified conditions.

    • 4. The GROUP BY clause groups the rows that have the same values into summary rows.

    • 5...

  • Answered by AI
  • Q4. Difference between Group By and Distinct?
  • Ans. 

    Group By is used to aggregate data based on a specific column, while Distinct is used to remove duplicate rows from a result set.

    • Group By is used with aggregate functions like COUNT, SUM, AVG, etc.

    • Distinct is used to retrieve unique values from a column or set of columns.

    • Group By can be used to group data based on multiple columns, while Distinct operates on individual columns only.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Blinkit Data Analyst interview:
  • SQL
  • joins
  • window functions

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Jan 2022. There were 2 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 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - In operation management. Location -bihar and up
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Binary search for closest element
  • Ans. 

    Binary search to find the closest element in a sorted array

    • Implement binary search to find the target element in the array

    • Keep track of the closest element found so far while searching

    • Update the closest element if a closer one is found during the search

  • Answered by AI
  • Q2. String manipulation
Round 2 - Technical 

(1 Question)

  • Q1. Low level Design for an online e-commerce website
  • Ans. 

    Low level design for an online e-commerce website involves designing the architecture and components of the website.

    • Identify the main components such as user interface, database, payment gateway, product catalog, etc.

    • Design the database schema to store user information, product details, orders, etc.

    • Implement user authentication and authorization mechanisms for secure access.

    • Integrate payment gateway for processing tran...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zepto Software Developer interview:
  • DSA
  • Design patterns

Skills evaluated in this interview

DesignX Interview FAQs

How many rounds are there in DesignX interview?
DesignX interview process usually has 3 rounds. The most common rounds in the DesignX interview process are Resume Shortlist, HR and Technical.
How to prepare for DesignX 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 DesignX. The most common topics and skills that interviewers at DesignX expect are Adobe After Effects, Adobe Premiere Pro, Aftereffects, Business Intelligence and Data Analytics.

Tell us how to improve this page.

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 425 Interviews
Udaan Interview Questions
4.0
 • 333 Interviews
CARS24 Interview Questions
3.6
 • 329 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
Zepto Interview Questions
3.5
 • 207 Interviews
Blinkit Interview Questions
3.7
 • 180 Interviews
BlackBuck Interview Questions
3.8
 • 175 Interviews
Tata 1mg Interview Questions
3.6
 • 146 Interviews
Digit Insurance Interview Questions
4.0
 • 142 Interviews
Paisabazaar.com Interview Questions
3.4
 • 139 Interviews
View all

DesignX Reviews and Ratings

based on 6 reviews

2.8/5

Rating in categories

2.9

Skill development

2.6

Work-life balance

2.3

Salary

2.0

Job security

2.3

Company culture

2.8

Promotions

2.3

Work satisfaction

Explore 6 Reviews and Ratings
Data Analyst
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Product Manager
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Front end Developer
3 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare DesignX with

Udaan

3.9
Compare

Swiggy

3.8
Compare

CARS24

3.5
Compare

BlackBuck

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