Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by MeraEvents Team. If you also belong to the team, you can get access from here

MeraEvents Verified Tick

Compare button icon Compare button icon Compare
1.6

based on 3 Reviews

i

This rating is based on a small number of reviews, so it may not fully reflect the overall employee experience.

Filter interviews by

MeraEvents Associate Software Developer Interview Questions and Answers

Updated 28 Aug 2021

MeraEvents Associate Software Developer Interview Experiences

1 interview found

I applied via Recruitment Consultant and was interviewed before Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is a closure? and why is it used for?
  • Ans. 

    A closure is a function that has access to variables in its outer scope, even after the outer function has returned.

    • A closure is created when a function is defined inside another function.

    • It allows the inner function to access variables in the outer function, even after the outer function has returned.

    • Closures are used for data privacy, event handlers, and creating factory functions.

    • Example: function outer() { let x = ...

  • Answered by AI
  • Q2. How do you manage concurrency in NodeJS systems?
  • Ans. 

    Concurrency in NodeJS is managed using event loop, worker threads, and cluster module.

    • NodeJS uses a single-threaded event loop to handle concurrency.

    • Worker threads can be used to offload CPU-intensive tasks to separate threads.

    • Cluster module can be used to create multiple worker processes to handle incoming requests.

    • Use locks and semaphores to prevent race conditions and ensure data consistency.

    • Avoid blocking I/O opera...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview was a technical round, it was a 45-minute interview round. The questions mostly asked were basics in Javascript, Data Structure, and Algorithms.

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Assignment 

Was given two hours to implement an Api

Round 2 - Technical 

(2 Questions)

  • Q1. Asked to develop register, login and logout using grpc.
  • Q2. Number of islands in Dsa
  • Ans. 

    Number of islands in DSA refers to the problem of finding the number of connected groups of 1s in a 2D grid.

    • Use Depth First Search (DFS) or Breadth First Search (BFS) to traverse the grid and mark visited islands.

    • Count the number of times DFS/BFS is called to find the total number of islands.

    • Consider diagonal connections if specified in the problem.

    • Example: Given grid [['1','1','0','0'],['0','1','0','1'],['1','0','0','

  • Answered by AI
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Moderate Coding question

Round 2 - Technical 

(2 Questions)

  • Q1. On Java, OOPS concepts and coding logics
  • Q2. Data Structures and algorithms
Round 3 - Technical 

(2 Questions)

  • Q1. Mostly the same as Round 1
  • Q2. But question complexity is increased
Round 4 - HR 

(2 Questions)

  • Q1. Normal questions about us
  • Q2. Nothing major as I remember
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Quantiative Aptitude

Round 2 - One-on-one 

(1 Question)

  • Q1. Questions related to basic DSA, Searching, sorting, SQL Queries based on aggregate functions, Basic puzzle (GFG)
Round 3 - One-on-one 

(1 Question)

  • Q1. Resume based, Discussion about projects mentioned on the resume.
Round 4 - HR 

(1 Question)

  • Q1. Strength, Weakness,

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm during the process
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was a leetcode medium

Round 2 - Assignment 

It was a leetcode medium

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Design Calculator
  • Q2. React without react dom
  • Ans. 

    React without react dom involves using React's server-side rendering capabilities to render components without the need for a DOM.

    • Use ReactDOMServer.renderToString() to render React components on the server side

    • This can be useful for server-side rendering of React components for SEO purposes

    • Example: ReactDOMServer.renderToString()

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Design Pagination
  • Q2. Questions regarding NEXTjs

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Discussion about Projects
  • Q2. Design AB framework
  • Ans. 

    AB framework is a system for testing two versions of a software application to determine which performs better.

    • Define the goals and metrics for comparison

    • Create two versions of the software with the only difference being the feature being tested

    • Randomly assign users to either version A or version B

    • Collect and analyze data on user behavior and performance to determine which version is more effective

  • Answered by AI

Skills evaluated in this interview

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

I applied via Indeed and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Core HTML, CSS and JS

Round 2 - Coding Test 

JS deep dive and react

Round 3 - Behavioral 

(1 Question)

  • Q1. Mimic Promise.all, Array.flat, OTP Component etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Study core JS concepts and be strong in react fundamentals
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Coding Test 

DSA questions asked in an interview

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

I applied via LinkedIn and was interviewed before May 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 

(3 Questions)

  • Q1. How python dictionary is implemented internally ?
  • Ans. 

    Python dictionary is implemented using hash tables.

    • Python dictionary is a collection of key-value pairs.

    • The keys in a dictionary must be unique and immutable.

    • The values in a dictionary can be of any data type.

    • Python dictionary is implemented using hash tables.

    • Hash tables provide constant time complexity for insertion, deletion and retrieval of elements.

    • The hash function used in Python dictionary is based on the key's h...

  • Answered by AI
  • Q2. What is heap sort
  • Ans. 

    Heap sort is a comparison-based sorting algorithm that uses a binary heap data structure.

    • It divides the input into a sorted and an unsorted region.

    • It repeatedly extracts the maximum element from the unsorted region and inserts it into the sorted region.

    • It has a time complexity of O(n log n) and is not stable.

    • Example: [8, 5, 3, 1, 9, 6, 0, 7, 4, 2] -> [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]

  • Answered by AI
  • Q3. Coding question to sort array based on a custom filter

Skills evaluated in this interview

MeraEvents Interview FAQs

What are the top questions asked in MeraEvents Associate Software Developer interview?

Some of the top questions asked at the MeraEvents Associate Software Developer interview -

  1. How do you manage concurrency in NodeJS syste...read more
  2. What is a closure? and why is it used f...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

InsanelyGood Interview Questions
4.1
 • 19 Interviews
Vegrow Interview Questions
4.2
 • 16 Interviews
Shine Interview Questions
2.7
 • 16 Interviews
Pepper Content Interview Questions
2.4
 • 11 Interviews
Elevate Interview Questions
3.6
 • 9 Interviews
Meddo Interview Questions
3.1
 • 8 Interviews
Mogli labs Interview Questions
3.5
 • 8 Interviews
ParallelDots Interview Questions
4.0
 • 8 Interviews
FloCareer Interview Questions
4.3
 • 8 Interviews
View all
IOS Application Developer
4 salaries
unlock blur

₹4.2 L/yr - ₹4.8 L/yr

Explore more salaries
Compare MeraEvents with

InsanelyGood

4.1
Compare

Mogli labs

3.5
Compare

Shine

2.7
Compare

Vegrow

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