Upload Button Icon Add office photos
Engaged Employer

i

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

Mobiveil Technologies India Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 48 Reviews

Filter interviews by

Mobiveil Technologies India Interview Questions, Process, and Tips

Updated 25 Jul 2024

Top Mobiveil Technologies India Interview Questions and Answers

View all 11 questions

Mobiveil Technologies India Interview Experiences

Popular Designations

11 interviews found

IOT Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Jul 2024

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

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. How to mass provision devices using AWS IoT
  • Ans. 

    Mass provision devices using AWS IoT involves creating a fleet provisioning template and using AWS IoT Device Management service.

    • Create a fleet provisioning template in AWS IoT console

    • Use the template to provision multiple devices at once

    • Utilize AWS IoT Device Management service for managing and monitoring provisioned devices

  • Answered by AI
  • Q2. How to provision devices using Azure IoT
  • Ans. 

    Azure IoT provides various methods for provisioning devices including manual, automatic, and zero-touch provisioning.

    • Use Azure IoT Hub Device Provisioning Service for automatic provisioning

    • Leverage Azure IoT Hub Device Twins for manual provisioning

    • Implement zero-touch provisioning using Azure IoT Edge

  • Answered by AI
  • Q3. What all protocols have you worked on in IoT
  • Ans. 

    I have worked on protocols such as MQTT, CoAP, HTTP, and LoRaWAN in IoT projects.

    • MQTT (Message Queuing Telemetry Transport)

    • CoAP (Constrained Application Protocol)

    • HTTP (Hypertext Transfer Protocol)

    • LoRaWAN (Long Range Wide Area Network)

  • Answered by AI
  • Q4. How I2C protocol works
  • Ans. 

    I2C is a serial communication protocol used to connect multiple devices in a master-slave configuration.

    • I2C uses two wires - SDA (data line) and SCL (clock line) for communication

    • Devices are connected in a bus topology with a master device controlling the communication

    • Each device on the bus has a unique address for identification

    • Communication is initiated by the master device which sends start and stop signals

    • Data is t...

  • Answered by AI
  • Q5. If 2 masters on I2C send data at once which one will take preference ?
  • Ans. 

    The master with the lower address will take preference in sending data on I2C.

    • The master with the lower address on the I2C bus will take preference in sending data.

    • I2C arbitration is based on the address of the master, with lower addresses having higher priority.

    • If two masters attempt to send data simultaneously, the one with the lower address will win the arbitration and proceed to send its data.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Do you basics really well about IoT protocols and IoT platforms

Skills evaluated in this interview

IOT Engineer Interview Questions asked at other Companies

Q1. If i gave you 1000 devices to connect with MQTT what you will see first
View answer (3)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the difference between structure and union
  • Ans. 

    Structure is a data type that allows storing different data types in a single variable, while union is a data type that allows storing only one value at a time.

    • Structure allows storing multiple data types in a single variable, while union allows storing only one value at a time

    • In structure, each member has its own memory location, while in union all members share the same memory location

    • Example: struct Person { char na...

  • Answered by AI
  • Q2. What is the volatile keyword and it's purpose
  • Ans. 

    The volatile keyword is used in C/C++ to indicate that a variable may be changed unexpectedly by external factors.

    • Used to prevent compiler optimizations that assume the variable's value will not change.

    • Commonly used for variables shared between threads or accessed by interrupt service routines.

    • Example: volatile int sensorValue; // variable updated by hardware interrupts

  • Answered by AI
Round 2 - Coding Test 

Linked list , data structures

Round 3 - HR 

(2 Questions)

  • Q1. Explain about yourself
  • Q2. Asked past experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep to update yourself

Skills evaluated in this interview

Embedded Software Engineer Interview Questions asked at other Companies

Q1. 3. 1)Do you know about Autosar. 2)define function definition and function declaration. 3)difference between structure and union. 4) define Enumeration 5)what is microcontroller and microprocessor and its applications 6)where we uses in real... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Dec 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Bitwise operation and memory layout in c
  • Ans. 

    Bitwise operations are used to manipulate individual bits in memory. Memory layout in C refers to how data is stored in memory.

    • Bitwise operations include AND, OR, XOR, and NOT.

    • They are often used for tasks like setting or clearing specific bits, checking if a bit is set, or toggling bits.

    • Memory layout in C determines how variables are stored in memory, including their size, alignment, and order.

    • It is important to under...

  • Answered by AI
  • Q2. Explain few terms in LTE
  • Ans. 

    LTE stands for Long-Term Evolution, a standard for wireless communication in mobile networks.

    • LTE is a 4G wireless communication technology

    • It provides high-speed data transmission and low latency

    • LTE uses OFDMA for downlink and SC-FDMA for uplink

    • LTE supports multiple antennas for improved signal quality (MIMO)

    • LTE Advanced (LTE-A) is an enhanced version with higher data rates and capacity

  • Answered by AI
  • Q3. In one path goes wrong in mimo does snr and data both or any one goes bad

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic steps for debugging
  • Ans. 

    Debugging involves identifying and resolving issues in software or hardware systems.

    • Identify the problem by reproducing the issue

    • Isolate the cause by narrowing down the possible sources

    • Gather relevant data and analyze it

    • Develop and execute a plan to fix the issue

    • Verify the fix by testing and retesting

    • Document the debugging process and the solution

  • Answered by AI
  • Q2. What is difference between calloc and melloc
  • Ans. 

    calloc and malloc are memory allocation functions in C. calloc initializes the allocated memory to zero, while malloc does not.

    • calloc is used to allocate and initialize memory for an array of elements, while malloc is used to allocate memory for a single element.

    • calloc takes two arguments - the number of elements and the size of each element, while malloc takes only the size of the element.

    • calloc returns a pointer to t...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - NA

Skills evaluated in this interview

Senior Validation Engineer Interview Questions asked at other Companies

Q1. What is difference between calloc and melloc
View answer (1)

Mobiveil Technologies India interview questions for popular designations

 Design Engineer

 (1)

 Embedded Engineer

 (1)

 Embedded Software Developer

 (1)

 Embedded Software Engineer

 (1)

 Hardware Engineer

 (1)

 IOT Engineer

 (1)

 Project Lead

 (1)

 RTL Design Engineer

 (1)

I applied via Naukri.com and was interviewed in Feb 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 - Technical 

(1 Question)

  • Q1. Blocking non blocking, counter, asynchronous and synchronous reset, oops concepts, function and task

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep trying beleive me it will surely happen.

RTL Design Engineer Interview Questions asked at other Companies

Q1. Logic gates implementation using Mux, De-Mux.
View answer (1)

Project Lead Interview Questions & Answers

user image Anonymous

posted on 30 Dec 2021

I applied via Naukri.com and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Basics of LTE/5G Testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on basics and be confident

Project Lead Interview Questions asked at other Companies

Q1. PowerBuilder 1. How to build app in one click? 2. How to read data from web page? 3. Have you used any PDF tools 4. How to save data from datawindow to XML 5. How to read mail from Outlook 6. How you migrate to new version.net SQL 1. Perfor... read more
View answer (1)

Interview Questionnaire 

1 Question

  • Q1. What is the reason for changing the job

Interview Preparation Tips

Interview preparation tips for other job seekers - Because of Personal issues I need to change my job

Hardware Engineer Interview Questions asked at other Companies

Q1. How many ways would one arrange sets of coloured balls, the first set all red, the next all blue, and the last all green, and all balls in a set are identical, in a line?
View answer (2)

Telecom Test Lead Interview Questions & Answers

user image Anonymous

posted on 3 Jan 2022

Interview Questionnaire 

2 Questions

  • Q1. LTE basics, oran functionality
  • Q2. 5g call flow

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm, learn basics
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Storage classes
  • Q2. Coding ques on c
  • Q3. Single linked list

Interview Preparation Tips

Interview preparation tips for other job seekers - will crack easily

Embedded Engineer Interview Questions asked at other Companies

Q1. how many algorithms that you got familiar with when learning c programming?
View answer (1)

Interview Questionnaire 

2 Questions

  • Q1. I2c driver, dummy write, clock through
  • Q2. Structure padding, basic c programming questions

Embedded Software Developer Interview Questions asked at other Companies

Q1. How many result cases are possible when to find maximum of three numbers. This is tricky question
View answer (3)

Mobiveil Technologies India Interview FAQs

How many rounds are there in Mobiveil Technologies India interview?
Mobiveil Technologies India interview process usually has 1-2 rounds. The most common rounds in the Mobiveil Technologies India interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Mobiveil Technologies India 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 Mobiveil Technologies India. The most common topics and skills that interviewers at Mobiveil Technologies India expect are Python, Debugging, Linux, C++ and Perl.
What are the top questions asked in Mobiveil Technologies India interview?

Some of the top questions asked at the Mobiveil Technologies India interview -

  1. If 2 masters on I2C send data at once which one will take preferenc...read more
  2. How to mass provision devices using AWS ...read more
  3. What all protocols have you worked on in ...read more

Tell us how to improve this page.

Mobiveil Technologies India Interview Process

based on 4 interviews in last 1 year

Interview experience

4.8
  
Excellent

People are getting interviews through

based on 7 Mobiveil Technologies India interviews
Job Portal
71%
29% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

Tata Elxsi Interview Questions
3.9
 • 291 Interviews
KPIT Technologies Interview Questions
3.5
 • 289 Interviews
Cyient Interview Questions
3.7
 • 279 Interviews
Sasken Interview Questions
3.9
 • 77 Interviews
Einfochips Interview Questions
3.3
 • 69 Interviews
Mindteck Interview Questions
3.3
 • 21 Interviews
View all

Mobiveil Technologies India Reviews and Ratings

based on 48 reviews

3.6/5

Rating in categories

3.6

Skill development

3.6

Work-Life balance

3.3

Salary & Benefits

3.5

Job Security

3.4

Company culture

3.0

Promotions/Appraisal

3.4

Work Satisfaction

Explore 48 Reviews and Ratings
Software Engineer
45 salaries
unlock blur

₹3 L/yr - ₹9 L/yr

Project Lead
30 salaries
unlock blur

₹8.9 L/yr - ₹30 L/yr

Senior Software Engineer
24 salaries
unlock blur

₹8 L/yr - ₹18.5 L/yr

Verification Engineer
24 salaries
unlock blur

₹3 L/yr - ₹9.8 L/yr

Senior Engineer
19 salaries
unlock blur

₹6.5 L/yr - ₹24 L/yr

Explore more salaries
Compare Mobiveil Technologies India with

Einfochips

3.3
Compare

Mistral Solutions

3.9
Compare

Sasken

3.9
Compare

KPIT Technologies

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview