Upload Button Icon Add office photos

Filter interviews by

Carwale Mern Full Stack Developer Interview Questions and Answers

Updated 13 Jul 2023

Carwale Mern Full Stack Developer Interview Experiences

1 interview found

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

I applied via Campus Placement and was interviewed in Jun 2023. There were 4 interview rounds.

Round 1 - Coding Test 

4 questions :- 3 were string based and one DP
1. characters and it's frequency were given in key value format in a string, print the total frequency of each character in lexicographical order.
2. Minimum Jump to reach end of the array(search Jump game from leetcode)
3. Partion the given string into 2 parts such that both parts are present in list of words provided. Print all the ways of partitioning.

Round 2 - Technical 

(2 Questions)

  • Q1. 1.Find next greater element for each element in the given array of integers
  • Ans. 

    Use stack to find next greater element for each element in the array

    • Create an empty stack to store indices of elements

    • Iterate through the array and for each element, pop elements from stack until finding a greater element

    • Store the next greater element in a result array

  • Answered by AI
  • Q2. 2.In an array, find triplets such that their sum is 0.
  • Ans. 

    Use three pointers to find triplets with sum 0 in an array.

    • Sort the array first to easily find triplets.

    • Use three pointers - one fixed, one moving from left, one moving from right.

    • Check if the sum of the three pointers is 0, if not adjust pointers accordingly.

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Questions regarding projects and system design questions.
Round 4 - HR 

(1 Question)

  • Q1. Family background, questions about project, work preferences etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with the project and technology used, prepare well for system design rounds and keep explaining the approach verbally.

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Can you outline a simple strategy for fallback error handling in a Node.js application using async/await?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Difference between exe and dll
  • Ans. 

    Exe is an executable file that can be run independently, while DLL is a dynamic link library that is loaded by programs when needed.

    • Exe stands for executable file, while DLL stands for dynamic link library.

    • Exe files can be run independently, while DLL files are loaded by programs when needed.

    • Exe files have their own memory space, while DLL files share memory space with the calling process.

    • Exe files are typically larger...

  • Answered by AI
  • Q2. What are http verbs
  • Ans. 

    HTTP verbs are used to indicate the action to be performed on a resource in a RESTful API.

    • GET - retrieve data from a server

    • POST - send data to a server to create/update a resource

    • PUT - update a resource on the server

    • DELETE - remove a resource from the server

    • PATCH - partially update a resource on the server

  • Answered by AI
  • Q3. What is method overloading and overriding Output based question
  • Q4. Linq query to filter data and group by
  • Ans. 

    Use Linq query to filter data and group by in C#

    • Use 'Where' method to filter data based on a condition

    • Use 'GroupBy' method to group the filtered data based on a key

    • Example: var result = data.Where(x => x.Property == value).GroupBy(x => x.GroupKey)

  • Answered by AI
  • Q5. Attribute in mvc
  • Ans. 

    An attribute in MVC is a piece of metadata that provides additional information about a model, view, or controller.

    • Attributes are used to add behavior or data to a class or method in MVC

    • They can be used for validation, authorization, caching, etc.

    • Examples include [Required], [Authorize], [OutputCache]

  • Answered by AI

Interview Preparation Tips

Topics to prepare for BOLD Technology Systems Full Stack Software Developer interview:
  • OOPS
  • dependency injection
  • Angular
  • .Net Core
Interview preparation tips for other job seekers - Deep dive in basics as interviewer focus more on basics

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(7 Questions)

  • Q1. What is your Role and responsibility in your current organization?
  • Q2. What Kind of Production environments do you solve?
  • Ans. 

    I solve complex production environments by identifying issues, optimizing performance, and implementing solutions.

    • Identifying bottlenecks and optimizing performance

    • Troubleshooting and resolving production issues

    • Implementing scalable solutions for high traffic websites

    • Working with cloud services like AWS or Azure

    • Automating deployment processes with tools like Jenkins or Docker

  • Answered by AI
  • Q3. What Features you have worked on? Explain 1 feature?
  • Ans. 

    Developed a real-time chat feature for a social networking platform.

    • Implemented WebSocket technology for instant messaging

    • Designed user interface for chat window with message history

    • Integrated push notifications for new messages

    • Developed backend logic for message encryption and decryption

  • Answered by AI
  • Q4. How did you prepare the design doc for this feature? What was your Approach?
  • Ans. 

    I prepared the design doc by outlining the requirements, architecture, data flow, and user interactions.

    • Outlined the requirements and goals of the feature

    • Defined the architecture and technologies to be used

    • Described the data flow and interactions between components

    • Included wireframes or mockups for user interfaces

    • Listed potential edge cases and how to handle them

  • Answered by AI
  • Q5. Find if Array2 is a substring of Array1
  • Ans. 

    Check if Array2 is a substring of Array1

    • Iterate through Array1 and check if each element contains Array2

    • Use built-in string functions like includes() or indexOf() to check for substring

    • Consider edge cases like empty arrays or arrays with empty strings

  • Answered by AI
  • Q6. How will you build breadcrums in react?
  • Ans. 

    Breadcrumbs in React can be built using a combination of state management and conditional rendering.

    • Create a state variable to store the breadcrumb data.

    • Update the state variable as the user navigates through the application.

    • Render the breadcrumbs component with the data stored in the state.

  • Answered by AI
  • Q7. How will you design a parking system? What api's will you create ? Their body and response object.
  • Ans. 

    Design a parking system with APIs for managing parking spots and reservations.

    • Create API for adding new parking spots with details like location, availability, and pricing

    • Create API for listing available parking spots based on location and availability

    • Create API for reserving a parking spot with user details and duration

    • Create API for cancelling a parking reservation

    • Response object for adding parking spot: { success: t...

  • Answered by AI

Skills evaluated in this interview

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

It was an online test

Round 2 - Technical 

(1 Question)

  • Q1. Basic DSA Questions
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Web development
  • Q2. What is useref in react
  • Ans. 

    useRef is a hook in React that allows you to create a mutable ref object.

    • useRef is used to access DOM nodes or store mutable values that persist across renders.

    • It can be used to focus an input field, measure the size of an element, or store previous values.

    • Example: const inputRef = useRef(null);

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. React in deep and project
  • Ans. 

    React is a JavaScript library for building user interfaces, commonly used in web development projects.

    • React is a declarative, efficient, and flexible JavaScript library for building user interfaces.

    • It allows developers to create reusable UI components that can be easily composed to build complex user interfaces.

    • React uses a virtual DOM to improve performance by only updating the parts of the actual DOM that have change...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed before Jun 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 tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. The interview process really went smooth. The questions were mostly asked of List Comprehension, React and MVC Architectural patterns.
  • Q2. The questions were mostly into Docker, Rendering lists, React, and high level architectural principles
Round 3 - HR 

(1 Question)

  • Q1. Final round was mostly about discussion into culture fit rounds, questionnaire regarding ethics.

Interview Preparation Tips

Topics to prepare for BookMyShow Full Stack Software Developer interview:
  • React
  • Data Structures
Interview preparation tips for other job seekers - A great workplace to learn. Totally follows work life balance.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Portal and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Can you outline a simple strategy for fallback error handling in a Node.js application using async/await?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Assessments of data structure and JS and Angular

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Oct 2022. There were 5 interview rounds.

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 - HR 

(1 Question)

  • Q1. Asked for experience and background
Round 3 - One-on-one 

(1 Question)

  • Q1. Technical questions
Round 4 - Coding Test 

Prectical test on relevant experience and position requirements.

Round 5 - HR 

(1 Question)

  • Q1. Salary discussion and all

Carwale Interview FAQs

How many rounds are there in Carwale Mern Full Stack Developer interview?
Carwale interview process usually has 5 rounds. The most common rounds in the Carwale interview process are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in Carwale Mern Full Stack Developer interview?

Some of the top questions asked at the Carwale Mern Full Stack Developer interview -

  1. 1.Find next greater element for each element in the given array of integ...read more
  2. 2.In an array, find triplets such that their sum is...read more
  3. Questions regarding projects and system design questio...read more

Tell us how to improve this page.

Carwale Mern Full Stack Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Tracxn Interview Questions
3.1
 • 100 Interviews
InvestoXpert Interview Questions
4.5
 • 62 Interviews
MagicBricks Interview Questions
3.4
 • 57 Interviews
Zolo Interview Questions
3.4
 • 49 Interviews
Netmeds.com Interview Questions
3.6
 • 42 Interviews
Uplers Interview Questions
4.1
 • 40 Interviews
Impact Guru Interview Questions
4.5
 • 37 Interviews
Yahoo Interview Questions
4.6
 • 29 Interviews
View all
Accounts Manager
133 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Key Account Manager
91 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Product Manager
28 salaries
unlock blur

₹12 L/yr - ₹25 L/yr

Regional Manager
28 salaries
unlock blur

₹4.5 L/yr - ₹10.2 L/yr

Software Developer
23 salaries
unlock blur

₹7 L/yr - ₹15 L/yr

Explore more salaries
Compare Carwale with

MagicBricks

3.4
Compare

Impact Guru

4.4
Compare

Netmeds.com

3.6
Compare

Tracxn

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