Upload Button Icon Add office photos
Engaged Employer

i

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

Motovolt Mobility Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Motovolt Mobility Analytics Executive Interview Questions and Answers

Updated 5 Sep 2021

Motovolt Mobility Analytics Executive Interview Experiences

1 interview found

I applied via LinkedIn and was interviewed before Sep 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. I have asked about basic EV questions
  • Q2. Battery capacity and ranges
  • Ans. 

    Battery capacity and ranges are important factors in determining the usability of electric vehicles.

    • Battery capacity determines how far an electric vehicle can travel on a single charge.

    • Range is the distance an electric vehicle can travel on a single charge.

    • Battery capacity and range are interdependent and affect each other.

    • Improvements in battery technology can increase both battery capacity and range.

    • Electric vehicle...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It is every and cool and answer question with some consciousness.
Give proper explination for everything

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Previous work experience
  • Q2. What is your previous work experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Lithium ion manufacturing process and what are the difficulties faced in your current role
  • Ans. 

    The lithium ion manufacturing process involves mixing raw materials, coating electrodes, assembling cells, and testing for quality.

    • Raw materials such as lithium, cobalt, and nickel are mixed together to create the cathode and anode materials.

    • The electrodes are coated with a thin layer of active material to improve performance.

    • Cells are assembled by stacking electrodes and separators, then sealing them in a casing.

    • Quali...

  • Answered by AI

I applied via Company Website and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Basic questions asked
Round 2 - Technical 

(1 Question)

  • Q1. Forging and casting process related questions raised
Round 3 - Technical 

(1 Question)

  • Q1. With head level technical for casting and forging related process,part,

Interview Preparation Tips

Interview preparation tips for other job seekers - Fluently English speaking no fear of interview fully confident speak to all the technical questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in Oct 2023. 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Spring boot, java 8 and microswrvices
  • Q2. Basic question about spring framework
Round 3 - HR 

(2 Questions)

  • Q1. Basic details asked about my last project that i have worked.
  • Q2. Basic details about last project
Round 4 - Coding Test 

Just normal MCQ test.

Interview Preparation Tips

Interview preparation tips for other job seekers - Misleading experience I would not suggest to join this company.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SELL ABD BUY 1 array question(easy level)
  • Ans. 

    This question involves buying and selling items in an array.

    • The array must contain strings.

    • You need to implement a function to buy and sell items from the array.

    • Provide examples of buying and selling operations.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - first complete dsa,and oops,core subjects of CSE,sql

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

Normal DP question (LC med)

I was interviewed in Dec 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Hard

There was 2 parts. First part problems were based on Quantitative Aptitude. Problems were of 3 types- Easy, Medium and Hard with different scores. Difficulty keeps on increasing if you answer correctly and keeps on decreasing if you answer incorrectly.
First part was of 45 mins.
Second part consisted of 2 coding problems- Medium, Hard. One was based on Greedy and other was a difficult DP + Bitmask problem.
Coding part had more weightage than Aptitude.

  • Q1. 

    K Centers Selection Problem

    In Ninja Land, there are cities numbered from 0 to N-1. The distances between each pair of cities are represented by an N * N matrix 'DIST', where 'DIST[i][j]' is the distance ...

  • Ans. 

    The problem involves selecting K cities to install servers in Ninja Land to minimize the maximum distance from any city to a nearest server.

    • Iterate through all possible combinations of K cities to select for server installation.

    • Calculate the maximum distance from any city to the nearest server for each combination.

    • Choose the combination that minimizes the maximum distance.

  • Answered by AI
  • Q2. 

    Beautiful String Verification

    Given a non-empty string inputString, determine if it can be converted into a 'Beautiful String' using the defined operation.

    You can perform any number of operations to con...

  • Ans. 

    Determine if a given string can be converted into a 'Beautiful String' using a specific operation.

    • Check if the input string is already a 'Beautiful String' by checking if it contains 'abc' in the correct positions.

    • If 'abc' is present in the input string, check if the left and right portions satisfy the defined conditions.

    • If the conditions are met, return 'True', otherwise return 'False'.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 90 minutes
Round difficulty - Medium

There were 3 interviewers in my panel. The most senior panellist asked q. related to my interests and internship experience.
Other 2 asked questions related to Coding and subjects. There was 1 coding question which was implementation based and involved many corner cases. They were checking if I was able to figure out different corner cases and handle those. 
There were situation based questions also asked. One question was on system design of Arogya Setu App.

  • Q1. 

    Complex Number Multiplication

    Calculate the product of two complex numbers represented as strings in the form “A+Bi”. Here, ‘A’ represents the real part, and ‘B’ represents the imaginary part.

    Explanatio...

  • Ans. 

    Calculate the product of two complex numbers represented as strings in the form 'A+Bi'.

    • Parse the input strings to extract real and imaginary parts of both complex numbers

    • Perform multiplication of the complex numbers using the formula (a+bi)*(c+di) = (ac - bd) + (ad + bc)i

    • Format the result as a string in the form 'A+Bi' and return

  • Answered by AI
Round 3 - HR 

Round duration - 30 minutes
Round difficulty - Easy

HR round involved basic questions related to background and behaviour. It was basically a cultural fit round.

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteria6.5 CGPAJaguar Land Rover interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Fundamentals of C/C++, Operating System, DBMS, OOPsTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Focus on Data Structures, Algorithms as >= 75% of your interview will be dedicated to it. Practice as much as you can.
Tip 2 : Learn the fundamentals of C, C++, OS, SQL as that are basic expectations of interviewer.
Tip 3 : Keep 2 descent projects in resume. Try to have an internship. It will make your resume strong.

Application resume tips for other job seekers

Tip 1 : Try to keep relevant information only. Add all your skills and achievements.
Tip 2 : Try to have links of your coding and Github profiles.
Tip 3 : Add 2 to 3 project with small descriptions. Try to keep bullet points. Do mention the Tech Stack.
Tip 4 : Don't lie on any skill. Write only those on which you have worked.

Final outcome of the interviewSelected
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is the use of static keyword
  • Ans. 

    Static keyword is used in programming to declare variables, methods, or classes that belong to the class itself rather than instances of the class.

    • Static variables are shared among all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static classes cannot be instantiated and are used for grouping related methods or constants

    • Static keyword is also used in C to declare functions t

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of electronics

Interview Questionnaire 

1 Question

  • Q1. About technical skills and complete job profile.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, never share any fake information. You will be perfect in you JD

Motovolt Mobility Interview FAQs

What are the top questions asked in Motovolt Mobility Analytics Executive interview?

Some of the top questions asked at the Motovolt Mobility Analytics Executive interview -

  1. Battery capacity and rang...read more
  2. I have asked about basic EV questio...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Tata Power Interview Questions
3.9
 • 162 Interviews
Ather Energy Interview Questions
4.0
 • 55 Interviews
Copart Interview Questions
3.5
 • 26 Interviews
Plastic Omnium Interview Questions
3.7
 • 24 Interviews
Polaris Interview Questions
3.8
 • 22 Interviews
Applus IDIADA Interview Questions
4.0
 • 21 Interviews
Hero Electric Interview Questions
4.0
 • 18 Interviews
View all
Service Engineer
23 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Area Sales Manager
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operator
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Sales Executive
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Motovolt Mobility with

Ather Energy

4.0
Compare

Ola Electric Mobility

3.3
Compare

Bounce

4.0
Compare

Revolt Motors

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