Upload Button Icon Add office photos

Filter interviews by

Mad Street Den Senior Visual Designer Interview Questions and Answers

Updated 4 May 2024

Mad Street Den Senior Visual Designer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Easy
Process Duration
More than 8 weeks
Result
No response

I applied via Company Website and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Assignment 

Standard task to assess skill set

Round 2 - One-on-one 

(1 Question)

  • Q1. General questions about industry and personal working style

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in May 2021. There were 4 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. First-round was an online test on hacker rank. There were 4 questions related to the array, string, and tree.
  • Q2. Create an immutable class.
  • Ans. 

    An immutable class is a class whose instances cannot be modified after creation.

    • Make all fields private and final

    • Don't provide any setter methods

    • Ensure that any mutable objects passed to the constructor are defensively copied

    • Make the class final so that it cannot be subclassed

  • Answered by AI
  • Q3. Create a Singelton pattern.
  • Ans. 

    Singleton pattern ensures only one instance of a class is created and provides a global point of access to it.

    • Create a private constructor to prevent direct instantiation of the class.

    • Create a private static instance of the class.

    • Create a public static method to access the instance, and create the instance if it doesn't exist.

    • Ensure thread safety by using synchronized keyword or double-checked locking.

  • Answered by AI
  • Q4. Difference between Vector and ArrayList.
  • Ans. 

    Vector is synchronized and ArrayList is not. Vector is thread-safe and ArrayList is not.

    • Vector is a legacy class and ArrayList is a part of the Java Collection Framework.

    • Vector is synchronized which means only one thread can access it at a time, while ArrayList is not.

    • Vector is thread-safe which means it can be used in a multi-threaded environment, while ArrayList is not.

    • Vector is slower than ArrayList because of synch...

  • Answered by AI
  • Q5. Create Linked List without using the internal library and provide the functionality of add delete find.
  • Ans. 

    Create Linked List without using internal library and provide add, delete, find functionality.

    • Create a Node class with data and next pointer

    • Create a LinkedList class with head pointer and methods to add, delete, and find nodes

    • Use a loop to traverse the list and perform operations

    • Handle edge cases such as adding to an empty list or deleting the head node

  • Answered by AI
  • Q6. One question was related to binary search.
  • Q7. Few more questions related to java.
  • Q8. The architecture of the current system.
  • Ans. 

    The current system follows a microservices architecture.

    • The system is divided into multiple independent services.

    • Each service has its own database and communicates with other services through APIs.

    • The architecture allows for scalability and flexibility.

    • Examples of microservices used in the system include user authentication, payment processing, and inventory management.

  • Answered by AI
  • Q9. Find the total no of the island in a 2d matrix. Working code was required.
  • Ans. 

    Find the total no of islands in a 2D matrix.

    • Use DFS or BFS to traverse the matrix.

    • Mark visited cells to avoid repetition.

    • Count the number of islands found.

  • Answered by AI
  • Q10. Find loop in a linked list.
  • Ans. 

    Loop detection in a linked list.

    • Use two pointers, one moving at twice the speed of the other.

    • If there is a loop, the faster pointer will eventually catch up to the slower one.

    • If there is no loop, the faster pointer will reach the end of the list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Before the interview brush up on the Linked list, Tree, and array. This is a common interview problem asked in Snapdeal.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Mar 2022. There were 5 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 

Mettle Test based on DP based approach

Round 3 - Technical 

(1 Question)

  • Q1. Based on Tree, Graph, Segment Tree
Round 4 - Technical 

(1 Question)

  • Q1. DS algo based on DP, Trees, Graphs
Round 5 - Technical 

(3 Questions)

  • Q1. Systed Design Round 1
  • Q2. Design a Distributed Queue to have functionality similar to Kafka.
  • Ans. 

    Design a distributed queue similar to Kafka.

    • Use a distributed architecture with multiple brokers and partitions.

    • Implement a publish-subscribe model for producers and consumers.

    • Ensure fault tolerance and high availability through replication and leader election.

    • Use a log-based storage system for messages and offsets.

    • Provide support for message ordering and retention policies.

    • Implement a scalable and efficient message de...

  • Answered by AI
  • Q3. Design Price Tagger System
  • Ans. 

    Design a Price Tagger System

    • Identify the products to be tagged with prices

    • Determine the pricing strategy (e.g. cost-plus, value-based, etc.)

    • Choose the appropriate tagging technology (e.g. barcode, RFID, etc.)

    • Develop a user-friendly interface for tagging and updating prices

    • Implement a database to store product and pricing information

    • Integrate with point-of-sale systems for accurate pricing at checkout

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DS and Algo and System Design questions alot and do lot of practice

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Coding Test 

Basic coding test from hackerearth.

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

(1 Question)

  • Q1. Design Search Systems
  • Ans. 

    Designing search systems involves creating efficient algorithms and data structures to quickly retrieve relevant information.

    • Understand the data structure of the search system (e.g. inverted index, trie)

    • Implement efficient search algorithms (e.g. binary search, hash tables)

    • Consider scalability and performance optimization techniques (e.g. caching, indexing)

    • Include user-friendly features like autocomplete and spell corr...

  • Answered by AI

Skills evaluated in this interview

I applied via Approached by Company and was interviewed before Oct 2021. 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 - Coding Test 

Simple programming test from mettl website

Round 3 - Technical 

(2 Questions)

  • Q1. First tech interview is also more of a coding round.
  • Q2. Questions on data structures in Java Multithreading Immutability
Round 4 - Technical 

(1 Question)

  • Q1. 2nd technical interview more of conceptual questions on related technology
Round 5 - Technical 

(1 Question)

  • Q1. Tech manager round based on previous project and scenario based questions
Round 6 - HR 

(1 Question)

  • Q1. Salary discuss Why you want to join paytm

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared before interview
Go through basic programming questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in May 2023.

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 

Some mcq questions on Java and 2 DSA medium questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Spring boot , Java and DSA questions
Round 4 - One-on-one 

(1 Question)

  • Q1. Design BookMyShow low level design
  • Ans. 

    BookMyShow low level design for ticket booking system

    • Use microservices architecture for scalability and flexibility

    • Implement user authentication and authorization for secure transactions

    • Utilize databases for storing user and event information

    • Include payment gateway integration for seamless transactions

  • Answered by AI
Round 5 - One-on-one 

(1 Question)

  • Q1. Design lru cache and code
  • Ans. 

    LRU cache is a data structure that stores a fixed number of items and removes the least recently used item when the cache is full.

    • Use a combination of a doubly linked list and a hashmap to implement the LRU cache.

    • When an item is accessed, move it to the front of the linked list to mark it as the most recently used item.

    • When adding a new item, check if the cache is full. If it is full, remove the least recently used ite...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
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 - Technical 

(1 Question)

  • Q1. Sharding, sql vs nosql, project discussion and tradoffs
Round 3 - HR 

(1 Question)

  • Q1. Behavior and culture questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Leetcode medium question

Round 2 - Technical 

(2 Questions)

  • Q1. HLD Design along with LLD
  • Ans. 

    HLD (High-Level Design) and LLD (Low-Level Design) are two stages in software design process.

    • HLD focuses on system architecture and overall design.

    • LLD focuses on detailed design of individual components.

    • HLD defines the structure and behavior of the system.

    • LLD defines the implementation details of each component.

    • HLD is more abstract and conceptual.

    • LLD is more concrete and specific.

    • HLD helps in understanding the system's...

  • Answered by AI
  • Q2. Design movie ticket system
  • Ans. 

    Design a movie ticket system

    • Create a database to store movie details, showtimes, and seat availability

    • Implement a user interface for customers to select movies, seats, and purchase tickets

    • Develop a ticketing algorithm to handle seat reservations and prevent double bookings

    • Include features like seat selection, payment processing, and ticket confirmation

    • Consider scalability and performance for handling high traffic durin

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basic HR Questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Programing question project details java8
  • Q2. Java 8 new added features
  • Ans. 

    Java 8 introduced several new features including lambda expressions, streams, functional interfaces, and default methods.

    • Lambda expressions allow you to write code in a more concise and readable way.

    • Streams provide a new way to work with collections in a functional style.

    • Functional interfaces are interfaces with a single abstract method, enabling the use of lambda expressions.

    • Default methods allow interfaces to have me...

  • Answered by AI

Skills evaluated in this interview

Mad Street Den Interview FAQs

How many rounds are there in Mad Street Den Senior Visual Designer interview?
Mad Street Den interview process usually has 2 rounds. The most common rounds in the Mad Street Den interview process are Assignment and One-on-one Round.

Tell us how to improve this page.

Mad Street Den Senior Visual Designer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Flipkart Interview Questions
4.0
 • 1.3k Interviews
Paytm Interview Questions
3.3
 • 747 Interviews
Myntra Interview Questions
4.0
 • 213 Interviews
Snapdeal Interview Questions
3.8
 • 75 Interviews
Shopclues Interview Questions
3.9
 • 9 Interviews
LimeRoad Interview Questions
2.6
 • 9 Interviews
GrapplTech Interview Questions
4.7
 • 9 Interviews
View all
Graphic Designer
53 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Graphic Designer
16 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Machine Learning Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Image Editor
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Mad Street Den with

Myntra

4.0
Compare

Flipkart

4.0
Compare

Paytm

3.3
Compare

Snapdeal

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