Upload Button Icon Add office photos

Filter interviews by

Xperi Software Developer Interview Questions and Answers

Updated 31 Oct 2024

Xperi Software Developer Interview Experiences

2 interviews found

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

I applied via Job Portal and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. Common HR questions
Round 2 - Technical 

(1 Question)

  • Q1. Questions on programming language knowledge
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Coding Test 

There were questins of dsa array and linked list

Round 2 - Technical 

(2 Questions)

  • Q1. What is API ?
  • Ans. 

    API stands for Application Programming Interface. It is a set of rules and protocols that allows different software applications to communicate with each other.

    • APIs define the methods for requesting and receiving data between software applications

    • APIs can be used to access functionality of a remote system or service

    • Examples of APIs include Google Maps API, Twitter API, and Facebook Graph API

  • Answered by AI
  • Q2. Javascript based coding questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Ads the skills which u know I ur resume and no fake skills

Skills evaluated in this interview

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Nagarro
Q4. Crazy Numbers Pattern Challenge Ninja enjoys arranging numbers in ... read more
asked in PhonePe
Q5. Form a Triangle Problem Statement You are given an array of integ ... read more

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is ambitionbox
  • Q2. How many questions are there in that
Round 2 - One-on-one 

(2 Questions)

  • Q1. Same as above questions
  • Q2. Same as above questions second one
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Binary search for closest element
  • Ans. 

    Binary search to find the closest element in a sorted array

    • Implement binary search to find the target element in the array

    • Keep track of the closest element found so far while searching

    • Update the closest element if a closer one is found during the search

  • Answered by AI
  • Q2. String manipulation
Round 2 - Technical 

(1 Question)

  • Q1. Low level Design for an online e-commerce website
  • Ans. 

    Low level design for an online e-commerce website involves designing the architecture and components of the website.

    • Identify the main components such as user interface, database, payment gateway, product catalog, etc.

    • Design the database schema to store user information, product details, orders, etc.

    • Implement user authentication and authorization mechanisms for secure access.

    • Integrate payment gateway for processing tran...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zepto Software Developer interview:
  • DSA
  • Design patterns

Skills evaluated in this interview

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

I applied via campus placement at RV College Of Engineering (RVCE) and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 Medium level dsa questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Lld of cab booking system
  • Ans. 

    The Low Level Design (LLD) of a cab booking system involves detailing the system architecture and components at a lower level of abstraction.

    • Identify the main components of the system such as user interface, booking engine, payment gateway, and driver allocation algorithm.

    • Define the interactions between these components and how data flows between them.

    • Specify the data structures and algorithms used for efficient bookin...

  • Answered by AI
  • Q2. Discussion about online assesment

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for machine coding rounds.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indraprastha Institute of Information Technology (IIIT), Delhi and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Maximum Sum Subarray
  • Q2. Insert node in binary search tree
  • Ans. 

    To insert a node in a binary search tree, compare the value of the node to be inserted with the current node and traverse left or right accordingly.

    • Start at the root node and compare the value of the node to be inserted with the current node.

    • If the value is less than the current node, move to the left child node. If it is greater, move to the right child node.

    • Repeat this process until reaching a leaf node, then insert ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Given an array of n numbers , find the kth largest find the sum from a th largest to bth largest n can be huge
  • Ans. 

    Find the sum of kth to bth largest numbers in a huge array efficiently.

    • Sort the array in descending order to easily find the kth and bth largest numbers.

    • Use a priority queue or min heap to efficiently find the kth and bth largest numbers without sorting the entire array.

    • Once you have the kth and bth largest numbers, iterate through the array and sum the numbers between them.

  • Answered by AI
  • Q2. Mostly elasticsearch related and company work related questions

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

DSA + JAVA + Spring boot

Round 2 - Case Study 

LLD (bookmyshow) + DSA

Interview Preparation Tips

Topics to prepare for Lenskart Software Developer interview:
  • Spring batch
  • spring Jpa
  • Transactions
  • Microservices
Interview preparation tips for other job seekers - DSA + HLD
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium level question are asked

Round 2 - Technical 

(1 Question)

  • Q1. Given a array and asked sum
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Implement an immutable class.
  • Ans. 

    An immutable class is a class whose instances cannot be modified after creation.

    • Use final keyword for class declaration to prevent inheritance

    • Make all fields private and final to prevent modification

    • Do not provide setter methods, only getter methods should be used

  • Answered by AI
  • Q2. Implement a springboot service that intercepts http requests.
  • Ans. 

    Implement a Springboot service to intercept HTTP requests.

    • Create a Springboot application with necessary dependencies.

    • Implement a custom interceptor by extending HandlerInterceptorAdapter.

    • Override preHandle and postHandle methods to intercept requests and responses.

    • Register the interceptor in the WebMvcConfigurerAdapter configuration class.

  • Answered by AI

Skills evaluated in this interview

Xperi Interview FAQs

How many rounds are there in Xperi Software Developer interview?
Xperi interview process usually has 2 rounds. The most common rounds in the Xperi interview process are Technical, Coding Test and HR.
How to prepare for Xperi Software Developer 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 Xperi. The most common topics and skills that interviewers at Xperi expect are Coding, SAN, DTS, Agile and Consumer Electronics.
What are the top questions asked in Xperi Software Developer interview?

Some of the top questions asked at the Xperi Software Developer interview -

  1. What is AP...read more
  2. Questions on programming language knowle...read more
  3. Javascript based coding questi...read more

Tell us how to improve this page.

Xperi Software Developer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more
Xperi Software Developer Salary
based on 7 salaries
₹14 L/yr - ₹22 L/yr
122% more than the average Software Developer Salary in India
View more details

Xperi Software Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
27 salaries
unlock blur

₹20 L/yr - ₹41.4 L/yr

Associate Software Engineer
20 salaries
unlock blur

₹6 L/yr - ₹16.7 L/yr

Software Engineer
18 salaries
unlock blur

₹15.5 L/yr - ₹24.5 L/yr

Staff Engineer
15 salaries
unlock blur

₹36 L/yr - ₹65 L/yr

Senior Sdet Engineer
8 salaries
unlock blur

₹19 L/yr - ₹35 L/yr

Explore more salaries
Compare Xperi with

Qualcomm

3.8
Compare

Broadcom

3.4
Compare

NXP Semiconductors

3.7
Compare

Texas Instruments

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