Meril interview experience Real time questions & tips from candidates to crack your interview

Fullstack Developer

Meril
upvote
share-icon
2 rounds | 3 Coding problems

Interview preparation journey

expand-icon
Journey
My preparation journey has been both challenging and exciting. I started by building a strong foundation in programming and web technologies through my training, where I focused on HTML, CSS, JavaScript, and later advanced to React, Node.js, Express, and MongoDB. Along with structured learning, I kept practicing daily on platforms like Coding Ninjas, which helped me improve problem-solving and logical thinking. To apply my knowledge, I developed projects like a Book Store app, a Realtime Chat App, and an HRMS system, which gave me hands-on exposure to frontend, backend, and database integration. Throughout my journey, I stayed consistent, broke down big goals into small tasks, and learned from mistakes. This preparation not only improved my technical skills but also gave me confidence to handle real-world challenges. I believe this journey has prepared me to contribute effectively as a full-stack developer.”
Preparation
Topics: HTML, CSS, JavaScript, React, Node.js, Express, and MongoDB
Application process
Where: Coding Ninjas Placement Cell
Eligibility: Bachelor’s degree in CS/IT

Interview rounds

01
Round
Easy
Online Coding Interview
Duration
Interview date4 Aug 2025
Coding problem2

1. Flatten a 2D Array into a 1D Array

Given a 2D array, the task is to convert it into a 1D array by flattening it. Flattening means storing all the elements of the 2D array in a single linear structure (row/array) while preserving their original order. This tests understanding of array traversal, indexing, and data structure manipulation.

Problem approach
  1. Identifying dimensions (rows R, columns C).
  2. Validation of rectangular shape (optional, but good practice).
  3. Allocation of the result array of size R * C.
  4. Mapping formula (k = i * C + j) to translate 2D indices into 1D.
  5. Looping through each element and storing it in the 1D array.

2. Print Fibonacci Series up to N Terms

The task is to generate and print the Fibonacci series up to a given number of terms (e.g., the first 10 numbers). The Fibonacci series is a sequence where each number is the sum of the two preceding ones, starting with 0 and 1. This problem tests understanding of loops, conditionals, and basic algorithm design.

Problem approach
  1. Initialize first two terms: a = 0, b = 1.
  2. Print a and b.
  3. For remaining terms, use the relation c = a + b.
  4. Print c.
  5. Update values: a = b, b = c.
  6. Repeat until the required number of terms is printed.
02
Round
Medium
Online Coding Interview
Duration
Interview date15 Aug 2025
Coding problem1

1. Merge Overlapping Intervals

You are given a collection of intervals where each interval is defined by a start and end point (e.g., [1,3], [2,6], [8,10], [15,18]). The task is to merge all overlapping intervals and return a new set of non-overlapping intervals that cover the same ranges.

Example:

Input: [1,3], [2,6], [8,10], [15,18]

Output: [1,6], [8,10], [15,18]

Problem approach
  • Steps are right: sort by start, keep a result list, merge when current.start <= last.end, else append.
  • Time complexity: O(n log n) (sorting). Space: O(n) for the output.
  • Subtlety: use <= to merge touching intervals (e.g., [1,2] and [2,3]); use < if you don’t want to merge touching intervals.
  • Edge cases: empty input, single interval, equal start times (sorting handles it).

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
4 rounds | 8 problems
Interviewed by Amazon
8518 views
0 comments
0 upvotes
Analytics Consultant
3 rounds | 10 problems
Interviewed by ZS
907 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
3320 views
0 comments
0 upvotes
company logo
SDE - 2
4 rounds | 6 problems
Interviewed by Expedia Group
2581 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Fullstack Developer
6 rounds | 5 problems
Interviewed by Microsoft
2223 views
0 comments
0 upvotes
company logo
Fullstack Developer
2 rounds | 2 problems
Interviewed by Samsung
2164 views
0 comments
0 upvotes
company logo
Fullstack Developer
2 rounds | 2 problems
Interviewed by Amdocs
1814 views
0 comments
0 upvotes