Upload Button Icon Add office photos

Filter interviews by

Cambridge Mobile Telematics Interview Questions and Answers

Updated 3 Apr 2024

Cambridge Mobile Telematics Interview Experiences

1 interview found

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

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

Round 1 - Coding Test 

Unlike asking mindless DSA questions, there were 3 problem statements related to their domain. Problem solving skills were assessed not data structures. Liked the round

Round 2 - Technical 

(1 Question)

  • Q1. HM round. Interviewer was friendly and asking questions related to my past experience. The results from coding test was shared and asked to enhance/fix the solution. Him and I were from different tech stac...

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Jobs at Cambridge Mobile Telematics

View all

Interview questions from similar companies

I applied via Company Website and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Sales ke bare mein
  • Q2. Customer ke pass jakar on road in karna
  • Q3. Company ke bare mein batana

Interview Preparation Tips

Interview preparation tips for other job seekers - Anytime interviews

I applied via Walk-in and was interviewed before Jun 2021. 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 - Technical 

(7 Questions)

  • Q1. Good management &good leaning Market
  • Q2. Good work enivimont good jobs
  • Q3. Very nice job good working and
  • Q4. Good management &good job
  • Q5. Good management good work
  • Q6. Very nice job and jobs
  • Q7. Good jobs and very nice
Round 3 - One-on-one 

(4 Questions)

  • Q1. Good jobs and very nice jobs
  • Q2. Very jobs nice working
  • Q3. Good good job nice job
  • Q4. Nice job good jobs g

Interview Preparation Tips

Interview preparation tips for other job seekers - Some time not sticks in good jobs and

Interview Questionnaire 

1 Question

  • Q1. About database locks and engines

Interview Questionnaire 

7 Questions

  • Q1. Some of The most important Salary Immideyetly Processes
  • Q2. Oneandof Yaer NoukrNoukri.com *****
  • Q3. Noukri.com Online Payment
  • Q4. Fast forward Noukri.com
  • Q5. Brhamanc IT Course hdca and core java programming language Brhamanc IT Information Technology World Asia Pacific region India Tamilnadu Coimbatore Chinnathdagam 641108
  • Q6. Brhamanc IT Course hdca and core java programming language
  • Q7. QUALIFICATION:10TH STANDARD

I applied via Company Website and was interviewed in May 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Salary and designation

Interview Preparation Tips

Interview preparation tips for other job seekers - 1

I applied via Job Portal and was interviewed in Jun 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Sort an array
  • Ans. 

    Sorts an array of strings in ascending order.

    • Use a sorting algorithm like bubble sort, selection sort, or merge sort.

    • Compare adjacent elements and swap them if they are in the wrong order.

    • Repeat the process until the array is sorted.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good experience overall.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Do you have experience

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

Online test which can be attempted anytime between 22 May 2020, 06:00 AM and 25 May 2020, 01:00 AM

  • Q1. 

    Postfix Expression Evaluation Problem Statement

    Given a postfix expression, your task is to evaluate the expression. The operator will appear in the expression after the operands. The output for each expr...

  • Ans. 

    Evaluate postfix expressions by applying operators to operands in a given order.

    • Iterate through the postfix expression and push operands onto a stack

    • When an operator is encountered, pop the required number of operands from the stack, apply the operator, and push the result back onto the stack

    • Continue until the entire expression is evaluated and the final result is left on the stack

  • Answered by AI
  • Q2. 

    Dice Throws Problem Statement

    You are given D dice, each having F faces numbered from 1 to F. The task is to determine the number of possible ways to roll all the dice such that the sum of the face-up num...

  • Ans. 

    The task is to determine the number of possible ways to roll all the dice such that the sum of the face-up numbers equals the given 'target' sum.

    • Use dynamic programming to solve the problem efficiently.

    • Create a 2D array to store the number of ways to achieve each sum with different number of dice.

    • Iterate through the dice and sum possibilities to fill up the array.

    • Return the result modulo 10^9 + 7.

    • Optimize the solution ...

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

June 25 2020
Timing: 12:00 pm to 1:00 pm
This round was completely devoted to coding. I was asked to introduce myself and then 2 coding questions were asked.

  • Q1. 

    Find First and Last Positions of an Element in a Sorted Array

    Given a sorted array ARR consisting of N integers and an integer X, find the first and last positions of occurrence of X in the array.

    Note:

    ...
  • Ans. 

    Find the first and last positions of an element in a sorted array efficiently.

    • Use binary search to find the first occurrence of X in the array.

    • Use binary search to find the last occurrence of X in the array.

    • Handle cases where X is not present or present only once.

    • Return the first and last positions as 0-based indices.

  • Answered by AI
  • Q2. 

    Maze with N Doors and 1 Key Problem Statement

    You are given an N x N maze where some cells have doors, and you have a key that can be used only once to open a door. Determine if there exists a path from t...

  • Ans. 

    Determine if there exists a path from the top-left cell to the bottom-right cell of a maze with N doors and 1 key.

    • Use depth-first search (DFS) or breadth-first search (BFS) to explore possible paths through the maze.

    • Keep track of the cells visited and use the key only once to open doors.

    • Check if the bottom-right cell is reachable after traversing the maze.

    • Handle edge cases such as the top-left and bottom-right cells ha...

  • Answered by AI
Round 3 - Video Call 

Round duration - 60 minutes
Round difficulty - Medium

9th July 2020
6:30PM to 7:30PM

Round 4 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

23-July 2020
4:00 PM to 5:00 PM
Coding questions + Several questions on computer fundamentals and networking were asked in a rapid-fire manner.

  • Q1. 

    Stock Trading Maximum Profit Problem

    Given the stock prices for 'N' days, your goal is to determine the maximum profit that can be achieved. You can buy and sell the stocks any number of times but can onl...

  • Ans. 

    The goal is to determine the maximum profit that can be achieved by buying and selling stocks on different days.

    • Iterate through the stock prices and buy on the days when the price is lower than the next day's price, and sell on the days when the price is higher than the next day's price.

    • Calculate the profit by summing up the differences between buying and selling prices.

    • Repeat the process for each test case and output

  • Answered by AI
Round 5 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

6- Aug 2020
3:00 PM to 4:00 PM
Resceduled to: @5:30 PM
Projects, Fundamentals check, Behavioral, Coding

  • Q1. 

    Path Counting in Directed Graph

    Given a directed graph with a specified number of vertices V and edges E, your task is to calculate the total number of distinct paths from a given source node S to all ot...

  • Ans. 

    Calculate total number of distinct paths from a given source node to all other nodes in a directed graph.

    • Use dynamic programming to keep track of the number of paths from the source node to each node.

    • Consider the modulo operation to handle large numbers efficiently.

    • Start by initializing the number of paths from the source node to itself as 1.

    • Iterate through all edges and update the number of paths for each destination ...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Dr. B.R. Ambedkar National Institute of Technology. Eligibility criteriaDevelopment skills and leadership principlesAmazon interview preparation:Topics to prepare for the interview - Data structures, OOPS, Operating systems, DBMS, NetworkingTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Be confident while answering questions
Tip 2 : Make the interview conversational and Always keep a smiling face
Tip 3 : Ask something at the end of the interview which shows your interest in the company
Tip 4 : Prepare projects on the skills mentioned in the resume

Application resume tips for other job seekers

Tip 1 : Mention projects and internships.
Tip 2 : Keep your resume short and crisp.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

5 Questions

  • Q1. What is interview?
  • Ans. 

    An interview is a formal conversation between an employer and a job candidate to assess their suitability for a role.

    • Interviews are used to evaluate a candidate's skills, experience, and personality.

    • They can be conducted in person, over the phone, or via video conferencing.

    • Interviews typically involve a series of questions and may include assessments or tests.

    • Examples of common interview questions include 'Tell me abou

  • Answered by AI
  • Q2. If you selected by the interviewers then firstly what you will do?
  • Q3. Before interview what type of stress loaded on your brain?
  • Q4. Ehat you will do with your first selary?
  • Ans. 

    I plan to save a portion, invest in professional development, and treat myself to a small reward.

    • Save a portion of the salary for future financial goals

    • Invest in professional development such as courses or certifications

    • Treat myself to a small reward or experience as a form of celebration

  • Answered by AI
  • Q5. When you join your first day at job then what is your responsibility.

Interview Preparation Tips

Interview preparation tips for other job seekers - i want to say only that when i started my job till end of job i doing my work with anthusiasam.

Cambridge Mobile Telematics Interview FAQs

How many rounds are there in Cambridge Mobile Telematics interview?
Cambridge Mobile Telematics interview process usually has 2 rounds. The most common rounds in the Cambridge Mobile Telematics interview process are Coding Test and Technical.
How to prepare for Cambridge Mobile Telematics interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Cambridge Mobile Telematics. The most common topics and skills that interviewers at Cambridge Mobile Telematics expect are Python, Scheduling, Risk Assessment, Telematics and Analytics.

Tell us how to improve this page.

Cambridge Mobile Telematics Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.0
 • 5.1k Interviews
Flipkart Interview Questions
3.9
 • 1.4k Interviews
PolicyBazaar Interview Questions
3.6
 • 382 Interviews
BigBasket Interview Questions
3.9
 • 362 Interviews
CARS24 Interview Questions
3.5
 • 337 Interviews
Udaan Interview Questions
3.9
 • 334 Interviews
JustDial Interview Questions
3.5
 • 330 Interviews
Lenskart Interview Questions
3.2
 • 316 Interviews
View all

Cambridge Mobile Telematics Reviews and Ratings

based on 3 reviews

2.7/5

Rating in categories

2.0

Skill development

2.3

Work-life balance

4.0

Salary

2.0

Job security

2.3

Company culture

4.0

Promotions

2.0

Work satisfaction

Explore 3 Reviews and Ratings
Data Systems Engineer II

Chennai

3-6 Yrs

Not Disclosed

Technical Support Manager

Chennai

4-7 Yrs

Not Disclosed

Data Scientist I

Chennai

3-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
7 salaries
unlock blur

₹4.8 L/yr - ₹11.2 L/yr

Software Engineer II
3 salaries
unlock blur

₹7 L/yr - ₹10.4 L/yr

Software Engineer Level 1
3 salaries
unlock blur

₹8 L/yr - ₹10 L/yr

Explore more salaries
Compare Cambridge Mobile Telematics with

Amazon

4.0
Compare

Flipkart

3.9
Compare

Amazon Development Centre India

4.0
Compare

Udaan

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