Upload Button Icon Add office photos

Filter interviews by

Mad Street Den Software Engineer Interview Questions and Answers

Updated 22 Mar 2024

Mad Street Den Software Engineer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 ( 1 medium + 1 hard ) coding questions , 2 ( 1 medium + 1 easy ) sql questions, 10 MCQS( os, cn, dbms, aptitude ).

Round 2 - Technical 

(1 Question)

  • Q1. 1 easy coding and design problem on how would you design a web app like book my show.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cool

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about your certifications on Cloud
  • Ans. 

    I am certified in AWS Certified Solutions Architect - Associate and Google Cloud Certified - Professional Cloud Architect.

    • Certified in AWS Certified Solutions Architect - Associate

    • Certified in Google Cloud Certified - Professional Cloud Architect

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Desing API endpoints
  • Q2. SQL queries test
  • Q3. Basic and intermediate level questions on C#
Round 3 - Group Discussion 

Questions about projects, DI in ASP.NET Core, React Element Tree

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

(2 Questions)

  • Q1. Describe your current project
  • Q2. Why do you want to change?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2023. 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 

Leetcode question sum of 3

Round 3 - Technical 

(2 Questions)

  • Q1. Theoretical questions based on SQL, WPF
  • Q2. They will ask about your leet code. Answer

Interview Preparation Tips

Topics to prepare for EffiaSoft Software Engineer interview:
  • Leetcode
Interview preparation tips for other job seekers - Go thorough JD and prepare well!
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
Not Selected
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 tips
Round 2 - Coding Test 

Database realted task

Round 3 - Technical 

(1 Question)

  • Q1. Oops concept ,kotlin related question
Round 4 - HR 

(1 Question)

  • Q1. What is your strength and weakness

I was interviewed in Apr 2020.

Interview Questionnaire 

4 Questions

  • Q1. Explain the most challenging problem you faced at work
  • Q2. Given the following design - A university has colleges, colleges have departments, departments have students. There are department level elections being held where students nominate themselves to stand fo...
  • Ans. 

    Design a database for a university with colleges, departments, and students. Write a query to get students with maximum votes.

    • Use a relational database like MySQL or PostgreSQL

    • Create tables for colleges, departments, students, and elections

    • Use foreign keys to establish relationships between tables

    • Add columns for election details like candidate names and vote counts

    • Write a query to join tables and filter for maximum vot

  • Answered by AI
  • Q3. Explain how you would design a bit.ly URL shortening service. What would be the choice of database. What would be your table design what would be the endpoints
  • Ans. 

    Design a bit.ly URL shortening service with database choice, table design, and endpoints.

    • Use a relational database like MySQL or PostgreSQL for scalability and ACID compliance.

    • Create a table with columns for the original URL, shortened URL, and metadata like creation date and click count.

    • Endpoints should include URL shortening, redirection, and analytics.

    • Implement caching to improve performance and reduce database load...

  • Answered by AI
  • Q4. Coding test - knapsack problem, 2 sum problem, alien language problem. All from leetcode.

Interview Preparation Tips

Interview preparation tips for other job seekers - System Design, Coding practice on leetcode. Popular leetcode problems help improve confidence greatly. If you are just starting off leetcode, start with the most popular easy questions. On day one, don't struggle for more than 30 minutes to solve the question. Look at the answer if no success. with every 10 questions solved looking at the answer, increase the struggle time. Also, studying at the same time everyday helps.
Read or watch system design questions explained on Youtube.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Assignment 

Desgining of backend services

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 

(2 Questions)

  • Q1. Why You want to join us?
  • Ans. 

    I am passionate about software development and believe your company offers a great learning opportunity.

    • Excited about the innovative projects your company is working on

    • Impressed by the positive reviews from current and former employees

    • Eager to work with experienced developers and learn from them

  • Answered by AI
  • Q2. How much experience you have in the skillset section provided in the JD
  • Ans. 

    I have experience working with the skillset mentioned in the job description for over a year.

    • I have completed multiple projects using the skillset mentioned

    • I have taken relevant courses or certifications in the skillset

    • I have received positive feedback on my proficiency in the skillset from previous employers or colleagues

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed in Dec 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(4 Questions)

  • Q1. 1.diffrence between javaScript and nodejs
  • Ans. 

    JavaScript is a programming language used for web development, while Node.js is a runtime environment for executing JavaScript code outside of a web browser.

    • JavaScript is primarily used for client-side scripting, while Node.js is used for server-side scripting.

    • JavaScript is executed in a web browser, while Node.js is executed on a server.

    • Node.js provides additional modules and libraries for server-side development, suc...

  • Answered by AI
  • Q2. 2.Tell me the angular lifecycle
  • Ans. 

    Angular lifecycle consists of eight different phases.

    • The first phase is ngOnChanges() which is called when a component receives data-bound input properties.

    • The second phase is ngOnInit() which is called once the component is initialized.

    • The third phase is ngDoCheck() which is called during every change detection run.

    • The fourth phase is ngAfterContentInit() which is called after the component's content has been projecte...

  • Answered by AI
  • Q3. 3. what is the use of ORM Tool
  • Ans. 

    ORM tool is used to map object-oriented programming language to a relational database management system.

    • ORM tool helps in reducing the amount of code required to interact with the database.

    • It provides an abstraction layer between the application and the database.

    • ORM tool helps in managing the database schema and relationships between tables.

    • It allows developers to work with objects instead of SQL statements.

    • Examples of...

  • Answered by AI
  • Q4. 4. What is form control build.
  • Ans. 

    Form control build refers to the process of creating and customizing form controls in web development.

    • Form controls are elements like text boxes, radio buttons, and dropdown menus that allow users to input data on a website.

    • Developers can use HTML, CSS, and JavaScript to build and style form controls to fit the needs of their website or application.

    • Form control build also involves adding validation and error handling t

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Theoretical Knowledged of angular I fronted development and node js for backend development.

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Assignment 

Hospital management syatem

Round 2 - Coding Test 

Check the coding and databases connection and validations

Interview Preparation Tips

Interview preparation tips for other job seekers - They should be learn many languages for best create coding in projects

Mad Street Den Interview FAQs

How many rounds are there in Mad Street Den Software Engineer interview?
Mad Street Den interview process usually has 2 rounds. The most common rounds in the Mad Street Den interview process are Coding Test and Technical.

Tell us how to improve this page.

Mad Street Den Software Engineer Salary
based on 4 salaries
₹8.5 L/yr - ₹11 L/yr
33% more than the average Software Engineer Salary in India
View more details

Mad Street Den Software Engineer Reviews and Ratings

based on 3 reviews

3.5/5

Rating in categories

5.0

Skill development

4.6

Work-life balance

4.6

Salary

4.6

Job security

5.0

Company culture

5.0

Promotions

4.6

Work satisfaction

Explore 3 Reviews and Ratings
Graphic Designer
53 salaries
unlock blur

₹2.3 L/yr - ₹4.8 L/yr

Senior Graphic Designer
16 salaries
unlock blur

₹3.3 L/yr - ₹7.2 L/yr

Machine Learning Engineer
14 salaries
unlock blur

₹8 L/yr - ₹17.5 L/yr

Image Editor
7 salaries
unlock blur

₹3 L/yr - ₹3.8 L/yr

Data Analyst
6 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Explore more salaries
Compare Mad Street Den with

Myntra

4.0
Compare

Flipkart

4.0
Compare

Paytm

3.3
Compare

Snapdeal

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