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 Senior Software Engineer Interview Questions and Answers

Updated 23 Jan 2024

Mobiveil Technologies India Senior Software Engineer Interview Experiences

1 interview found

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

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Jul 2024. There were 4 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Ofdm, Fixed point, sampling theorem, digital filters,
  • Q2. Previous work clarity
  • Ans. 

    Previous work clarity is essential for successful collaboration and understanding of project requirements.

    • Clearly explain the projects you have worked on in the past, including your role and responsibilities

    • Provide examples of how you communicated with team members to ensure clarity in project goals

    • Discuss any challenges you faced in previous projects and how you overcame them

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Fft, ofdm, CP, sampling theorem, previous experience,
  • Q2. C basics, memory layout, function pointer, big small endian, bit manipulation, zero padding in structures
Round 3 - Coding Test 

Bit manipulation, memory layout, interrupts, semaphore mutex, implement memcpy, sorting, algo to share resource equally

Round 4 - One-on-one 

(1 Question)

  • Q1. Previous work experience, general attitude

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for coding, strong on basics
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Referral and was interviewed in Nov 2023. There were 6 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 - Coding Test 

Duration: 1Hour 30 Minutes, 2 Coding Questions of Total 175 Marks. 1st Question has 75 marks and 2nd Question has 100 marks.

Round 3 - Technical 

(2 Questions)

  • Q1. 1. Find the smallestMissingNumber in given array using Bitwise OR operation alone 2. Based on Array data Manipulation.
  • Ans. 

    Using Bitwise OR operation to find the smallest missing number in an array.

    • Iterate through the array and perform Bitwise OR operation with each element to set corresponding bit in a bitmask

    • Iterate through the bitmask to find the first unset bit, which represents the smallest missing number

    • Example: Array [0, 1, 3, 4, 6] would have a bitmask of 10101, smallest missing number is 2

  • Answered by AI
  • Q2. Q2: Customized Data Extraction From Given Dynamic Array & Perform Some Math Operations On the Extracted Data
Round 4 - Technical 

(1 Question)

  • Q1. Write a Pseudo code for given scenario?
  • Ans. 

    Pseudo code for a scenario

    • Define variables and data structures needed

    • Write the main logic using conditional statements and loops

    • Handle edge cases and error conditions

    • Test the pseudo code with sample inputs

  • Answered by AI
Round 5 - Technical 

(1 Question)

  • Q1. System Design & Design Pattern based questions
Round 6 - HR 

(1 Question)

  • Q1. Not Applicable (Yet to be scheduled)

Skills evaluated in this interview

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

I applied via Referral and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Selenium xpath and dynamic loading of elements
  • Ans. 

    Selenium xpath is used to locate elements on a web page, especially useful for dynamic loading scenarios.

    • Use xpath to locate elements based on their attributes or position on the page

    • For dynamic loading, use explicit waits to ensure elements are present before interacting with them

    • Consider using relative xpath expressions to make your tests more robust and maintainable

  • Answered by AI
  • Q2. Java programs on strings
  • Q3. Test Ng architecture explain
  • Ans. 

    TestNG is a testing framework inspired by JUnit and NUnit, with more advanced features for test automation.

    • TestNG uses annotations to define test methods and test configurations.

    • It supports parameterized tests, test dependencies, and test groups.

    • TestNG allows parallel execution of tests, making it faster than other testing frameworks.

    • It provides detailed test reports and supports data-driven testing.

    • TestNG can be integ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well and go for interview

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Some technical question on advanced java
Round 2 - Technical 

(1 Question)

  • Q1. Scenario based question design swiggy app on microservice architecture
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 3 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 - Coding Test 

I interviewed with Mediatek having just 1 year of experience. It was for outsourcing position.

They asked me concepts from C language, writing code for data structures (LinkedIn list), and a question on string which I can't remember. This was pre COVID days.

Round 3 - Technical 

(1 Question)

  • Q1. Write code to insert a node to the middle of linked list
  • Ans. 

    Insert a node to the middle of a linked list

    • Find the middle node using slow and fast pointers

    • Create a new node with the data to be inserted

    • Adjust the pointers to insert the new node in the middle

  • Answered by AI

Interview Preparation Tips

Topics to prepare for MediaTek India Technology Senior Software Engineer interview:
  • C
  • Operating Systems
  • Multithreading
  • TCP
  • IPV4
  • IPV6
  • Data Structures
Interview preparation tips for other job seekers - Study concepts of C language thoroughly. All questions on pointers, double pointers, bit manipulation and memory management.

Study questions on data structures like Linked list, stacks, queues, arrays, and strings. Practice writing code in C.

Study operating system and Unix concepts like processes, threads, deadlock, mutex, semaphores, IPC mechanisms etc. Practice problems on concurrent programming.

Study networking concepts like OSI model, TCP, UDP, IP (v4 and v6) and socket programming. Practice socket programming in C.

Skills evaluated in this interview

I was interviewed in Aug 2021.

Round 1 - Technical 

(1 Question)

  • Q1. Python basic questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up your basic skills and make sure you answer in confident level
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 2 interview rounds.

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 - Coding Test 

First Round was pretty basic and coding questions was medium in Python and React.
Then coding assignment from client and then Manager Round followed by HR Round

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

Interview Questionnaire 

1 Question

  • Q1. 5G Call Flow,ENDC Procedure ,RRC layer,Mac layer,Python scripting

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics concept

I applied via Naukri.com and was interviewed in Jun 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. On python, on storage
Round 3 - Technical 

(1 Question)

  • Q1. On python , oops concept ,
Round 4 - HR 

(1 Question)

  • Q1. Why you are changing the job

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and work on the skills and good communication

Mobiveil Technologies India Interview FAQs

How many rounds are there in Mobiveil Technologies India Senior Software Engineer interview?
Mobiveil Technologies India interview process usually has 1 rounds. The most common rounds in the Mobiveil Technologies India interview process are Technical.
How to prepare for Mobiveil Technologies India Senior Software Engineer 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 Linux, C++, Linux Kernel, Python and Computer science.
What are the top questions asked in Mobiveil Technologies India Senior Software Engineer interview?

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

  1. Bitwise operation and memory layout i...read more
  2. Explain few terms in ...read more
  3. In one path goes wrong in mimo does snr and data both or any one goes ...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Mobiveil Technologies India interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Mobiveil Technologies India Senior Software Engineer Salary
based on 24 salaries
₹8 L/yr - ₹18.5 L/yr
23% less than the average Senior Software Engineer Salary in India
View more details
Software Engineer
44 salaries
unlock blur

₹3.8 L/yr - ₹9 L/yr

Project Lead
30 salaries
unlock blur

₹8.9 L/yr - ₹30 L/yr

Verification Engineer
24 salaries
unlock blur

₹3 L/yr - ₹9.8 L/yr

Senior Software Engineer
24 salaries
unlock blur

₹8 L/yr - ₹18.5 L/yr

Senior Engineer
18 salaries
unlock blur

₹9 L/yr - ₹24 L/yr

Explore more salaries
Compare Mobiveil Technologies India with

Einfochips

3.4
Compare

Mistral Solutions

3.9
Compare

Sasken

3.8
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