Upload Button Icon Add office photos

Filter interviews by

42Gears Mobility Systems Mts1 Interview Questions, Process, and Tips

Updated 16 Sep 2021

42Gears Mobility Systems Mts1 Interview Experiences

1 interview found

Mts1 Interview Questions & Answers

user image Anonymous

posted on 16 Sep 2021

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 Minutes
Round difficulty - Easy

It was from 8 to 11 in the morning. Basic aptitude MCQs were there and 2 coding questions were there.

  • Q1. 

    Expression Equality Checker

    Given two strings representing expressions in variables, determine if they are equivalent. Return 'YES' if the expressions are identical and 'NO' if they are different. Each ex...

  • Ans. Optimal Solution
    • We keep track of the current sign, whether it is + or -
    • For example, the expression: a-(-b+c) evaluates to a+b-c. Here the sign of b and c are changed in the final expression.
    • We maintain a boolean stack for doing so. If it is true, that means character is added and if it is false, that means the character is removed.
    • We maintain a count array of size 26(since there are 26 lowercase alphabets). We keep a c...
  • Answered Anonymously
  • Q2. 

    Longest Increasing Subsequence Problem Statement

    Given an array of integers with 'N' elements, determine the length of the longest subsequence where each element is greater than the previous element. This...

  • Ans. Recursive Approach
    • We will write a recursive algorithm that will try all the possibilities.
    • The argument of recursive function will be the current index and what was the previous number used for LIS. Initially, we will be passing the previous number as the minimum number of an integer and starting index as 0.
    • The base case would be when we reach index n,i.e we have exhausted the array elements so return 0 because there is...
  • Answered Anonymously
Round 2 - Face to Face 

(2 Questions)

Round duration - 32 Minutes
Round difficulty - Easy

It was my first face to face technical round. DSA questions of easy-medium type were asked. And some discussion on the project was there.

  • Q1. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    It is a standard problem in the linked list we can solve it using two pointers one moves one step at a time and the other two steps at a time. For each time we check whether they are the same. And this goes up to NULL is reached.

  • Answered Anonymously
  • Q2. 

    Convert Binary Tree to Mirror Tree

    Convert a given binary tree into its mirror tree, where the left and right children of all non-leaf nodes are interchanged.

    Input:

    An integer ‘T’ denoting the number o...
  • Ans. Recursive approach.

    The idea is to traverse the binary tree and swap the left and right subtrees.

     

    The steps are as follows:

     

    1. Call mirror function as mirror(node->left)  to access the left subtree.
    2. Call mirror function as mirror(node->right) to access the right subtree.
    3. Swap left and right subtrees using:
    • ‘TEMP’ = leftSubtree
    • leftSubtree = rightSubtree
    • rightSubtree = ‘TEMP’
    Space Complexity: O(n)Explanation...
  • Answered Anonymously
Round 3 - Face to Face 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Medium

It was technical plus HR round

  • Q1. 

    Matrix Element Cube Sum Problem

    For a given M x N sized 2D array 'MATRIX', find and return the value of (i * i + j * j) for elements where the sum of the cubes of its digits equals the element itself. Her...

  • Ans. Brute Force approach

    The idea is to traverse the matrix of size M x N. For each element in the matrix, we find the sum of the cube of their digits recursively. If the sum of the cube of digits is equal to the element itself, calculate (i*i + j*j).

     

    1. Traverse the given matrix.
    2. For each element in the matrix, store the value of the element in variable ‘DUPLICATE’ and call a function that calculates the sum of the cubes ...
  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI applied for the job as MTS 1 in BangaloreEligibility criteriaAbove 7 CGPA, CSE and ECE branch42gearMobilitySystems interview preparation:Topics to prepare for the interview - data structures and algorithm, language C++, i have prepared some puzzles also, Dbms, Oops, A project in web developmentTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Good practice of DSA
Tip 2 : Good project(decent one)
Tip 3 : For interviews prepare a little bit about the company you are applying for.

Application resume tips for other job seekers

Tip 1 : Add a project in resume.
Tip 2 : Add your top skills and make sure you have knowledge about the things written in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Company Website and was interviewed in May 2023. 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. How would you fit the Org
  • Ans. 

    I would fit the Org by leveraging my marketing expertise and leadership skills to drive growth and achieve organizational goals.

    • I have a proven track record of developing and implementing successful marketing strategies.

    • I have experience managing cross-functional teams and collaborating with stakeholders to achieve objectives.

    • I am skilled in market research and analysis, allowing me to identify opportunities and make d...

  • Answered by AI
  • Q2. Do you have experience in current trends
  • Ans. 

    Yes, I have experience in current marketing trends.

    • I have stayed up-to-date with the latest marketing trends through continuous learning and attending industry conferences.

    • I have successfully implemented various digital marketing strategies, such as influencer marketing and social media advertising, which are current trends in the industry.

    • I have experience in utilizing data analytics and marketing automation tools to ...

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

(2 Questions)

  • Q1. What is your expectation about the role
  • Ans. 

    To lead and execute marketing strategies, drive brand awareness, and achieve business objectives.

    • Develop and implement comprehensive marketing plans

    • Manage and optimize digital marketing campaigns

    • Analyze market trends and competitor activities

    • Collaborate with cross-functional teams

    • Track and report on marketing metrics

    • Build and maintain strong customer relationships

    • Stay updated with industry developments and best practic

  • Answered by AI
  • Q2. Why looking for a change
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic marketing environment.

    • Looking for a change to expand my skill set and knowledge

    • Seeking a more challenging role that aligns with my career goals

    • Want to work in a company with a strong marketing culture and innovative strategies

    • Desire to contribute to a larger team and make a bigger impact

    • Seeking better work-life balance or location flexibility

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good level of questions. Good explanation provided about the company

Tell us how to improve this page.

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.4k Interviews
BrowserStack Interview Questions
3.7
 • 48 Interviews
SOTI Interview Questions
3.3
 • 22 Interviews
Fingent Interview Questions
4.4
 • 22 Interviews
Backbase Interview Questions
4.1
 • 21 Interviews
Mentor Graphics Interview Questions
4.0
 • 19 Interviews
Khoros Interview Questions
3.8
 • 19 Interviews
3Pillar Global Interview Questions
3.4
 • 18 Interviews
Yodlee Interview Questions
3.8
 • 17 Interviews
Bottomline Interview Questions
3.3
 • 17 Interviews
View all
Member Technical Staff
35 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Software Engineer
34 salaries
unlock blur

₹3.8 L/yr - ₹15.2 L/yr

Softwaretest Engineer
23 salaries
unlock blur

₹3 L/yr - ₹8.8 L/yr

Technical Support Engineer
19 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Test Engineer
18 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Explore more salaries
Compare 42Gears Mobility Systems with

SOTI

3.3
Compare

Codeproofs

3.5
Compare

ManageEngine

1.4
Compare

MobileIron

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