Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Moveinsync Technology Solutions Senior Software Engineer Interview Questions and Answers

Updated 8 Jul 2024

Moveinsync Technology Solutions Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find in rotated sorted array
  • Ans. 

    Search for a target value in a rotated sorted array.

    • Use binary search to find the pivot point where the array is rotated.

    • Determine which half of the array the target value lies in based on the pivot point.

    • Continue binary search in the appropriate half of the array to find the target value.

  • Answered by AI
  • Q2. Design IMDB. how will you manage concurrent ratings
  • Ans. 

    Design IMDB with concurrent ratings management

    • Implement a locking mechanism to ensure only one user can update a rating at a time

    • Use a queue system to handle multiple rating requests in an orderly manner

    • Consider using distributed systems to handle high concurrency levels

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design vehicle rental system. Api design
  • Ans. 

    Design a vehicle rental system API

    • Create endpoints for listing available vehicles, booking a vehicle, and returning a vehicle

    • Include authentication and authorization mechanisms for users and admins

    • Implement payment gateway integration for processing rental payments

    • Include features like vehicle search, filtering, and reviews/ratings

    • Consider scalability and performance optimizations for handling high traffic

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Sep 2021. There were 4 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. DS and algo round. Leetcode medium 2 questions.
Round 3 - Case Study 

System Design. Design backend of Amazon

Round 4 - HR 

(1 Question)

  • Q1. Normal questions and salary expectation

Interview Preparation Tips

Interview preparation tips for other job seekers - Job security is 0 so don't join there. Also upper management is not as intelligent.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

It was a ideal machine coding round. Consisting of a question to be completed within 45 mins. For a given manager to employee hierarchy, count direct + indirect repartees.

Interview Preparation Tips

Topics to prepare for Uber Senior Software Engineer interview:
  • Data Structures
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Print the nodes of a n-ary tree in an arc wise manner as seen from the outside.
  • Ans. 

    Print nodes of n-ary tree in arc wise manner from outside

    • Traverse the tree level by level from outside to inside

    • Use a queue to keep track of nodes at each level

    • Print the nodes at each level in a clockwise or anticlockwise manner

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Uber Senior Software Engineer interview:
  • n-ary tree

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 Resume tips
Round 2 - Coding Test 

Mostly DSA expect DP, graph problems

Round 3 - Technical 

(1 Question)

  • Q1. Graph traversal + DP
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Asked medium level graph question.

Round 2 - Coding Test 

Asked LLD question with at flow executable.

Round 3 - HLD 

(1 Question)

  • Q1. Asked HLD questions.
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 May 2024. There was 1 interview round.

Round 1 - Coding Test 

React based
problem solving round

I applied via Recruitment Consultant and was interviewed in Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Merge the two list which has different intervals. So merge them on the basis where they are overlapping.
  • Ans. 

    Merge two lists with different intervals based on overlapping intervals.

    • Sort both lists based on start time.

    • Iterate through both lists and compare intervals for overlap.

    • Merge overlapping intervals and add non-overlapping intervals to the result list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice more of the competitive coding interview questions, such as from the coding practice website like leetcode, careercup, geekfor geeks.

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

3 easy to medium level DSA questions on hackerank

Round 2 - Technical 

(3 Questions)

  • Q1. DSA question: 2 Sum
  • Q2. API methods like get, post, put delete
  • Q3. ACID Properties and Databases
Round 3 - Technical 

(1 Question)

  • Q1. System Design questions on Cryptography, Concurrency

Interview Preparation Tips

Interview preparation tips for other job seekers - Have good knowledge on Basics

I applied via Campus Placement and was interviewed in Dec 2016. There were 4 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Given a 2d matrix with some D doors and W walls, we need fill distance matrix with minimum distance to the nearest door
  • Ans. 

    Given a 2D matrix with doors and walls, fill distance matrix with minimum distance to the nearest door.

    • Iterate through the matrix and find the doors

    • Use Breadth-First Search (BFS) to calculate the minimum distance from each cell to the nearest door

    • Update the distance matrix with the minimum distances

  • Answered by AI
  • Q2. Given a read-only array we want to find kth smallest element in unordered array with O(1) space
  • Ans. 

    Find kth smallest element in unordered array with O(1) space

    • Use the QuickSelect algorithm to partition the array and find the kth smallest element

    • Choose a pivot element and partition the array into two subarrays

    • Recursively partition the subarray that contains the kth smallest element

    • Repeat until the pivot element is the kth smallest element

    • Time complexity: O(n) average case, O(n^2) worst case

  • Answered by AI
  • Q3. Design question
  • Q4. Find friends of friend who already are not friends with you
  • Ans. 

    To find friends of friends who are not already friends with you, we can first find your friends and then their friends excluding yourself and your friends.

    • Get your list of friends

    • For each friend, get their list of friends

    • Exclude yourself and your friends from the final list of friends of friends

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: It started with an informal talk after he gave his introduction. We talked about the cyclone that was going to be there and what I did in my internship and my previous projects. Then we moved to questions. After solving both questions he asked if I had questions.
Tips: Just walk the interviewer through the solution you're proposing.

Round: Other Interview
Experience: He started with a design question with how to stream an image such that all clients see the same image at the same time. You need to take care of delays, network problems. He kept on adding new elements like compression, streaming, utc time related issues, client rendering delays and so on.

Round: Other Interview
Experience: This was bar-raiser round.

Skills: Design, Algorithms And Data Structures, Graph Theory
College Name: IIT Madras

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Moveinsync Technology Solutions Interview FAQs

How many rounds are there in Moveinsync Technology Solutions Senior Software Engineer interview?
Moveinsync Technology Solutions interview process usually has 2 rounds. The most common rounds in the Moveinsync Technology Solutions interview process are Technical.
What are the top questions asked in Moveinsync Technology Solutions Senior Software Engineer interview?

Some of the top questions asked at the Moveinsync Technology Solutions Senior Software Engineer interview -

  1. Design IMDB. how will you manage concurrent rati...read more
  2. Design vehicle rental system. Api des...read more
  3. Find in rotated sorted ar...read more

Recently Viewed

INTERVIEWS

JSW Steel

10 top interview questions

CAMPUS PLACEMENT

Government College of Engineering, Aurangabad

INTERVIEWS

Stratogent Technology Services

No Interviews

INTERVIEWS

Kirloskar Electric Company

No Interviews

INTERVIEWS

Commonwealth Bank of Australia, India

No Interviews

INTERVIEWS

Kirloskar Electric Company

No Interviews

INTERVIEWS

Kirloskar Electric Company

No Interviews

INTERVIEWS

Dassault Systemes

10 top interview questions

INTERVIEWS

Wtw Global Delivery And Solutions

No Interviews

INTERVIEWS

Stratogent Technology Services

No Interviews

Tell us how to improve this page.

Moveinsync Technology Solutions Senior Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Fast track your campus placements

View all
Moveinsync Technology Solutions Senior Software Engineer Salary
based on 9 salaries
₹11 L/yr - ₹36 L/yr
62% more than the average Senior Software Engineer Salary in India
View more details

Moveinsync Technology Solutions Senior Software Engineer Reviews and Ratings

based on 4 reviews

2.1/5

Rating in categories

2.4

Skill development

2.1

Work-life balance

2.8

Salary

1.7

Job security

2.2

Company culture

1.4

Promotions

1.2

Work satisfaction

Explore 4 Reviews and Ratings
Operations Specialist
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Manager
31 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
30 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
29 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Transport Executive
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Moveinsync Technology Solutions with

Ridecell

4.1
Compare

QuickRide

2.9
Compare

Rapido

3.9
Compare

Shuttl

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent