Upload Button Icon Add office photos

Filter interviews by

Xperi Software Developer Intern Interview Questions and Answers

Updated 12 Aug 2024

Xperi Software Developer Intern Interview Experiences

1 interview found

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

I applied via campus placement at SRM Institute of Science & Technology, Chennai and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

MANILY DP AND GRAPH questions were there

Round 2 - Technical 

(2 Questions)

  • Q1. JS QUESTION and REACT
  • Q2. 1 JS SCREEN SHARE AND DO QUESTION in your name count the number of letters frequency of unique elements.

Interview Preparation Tips

Interview preparation tips for other job seekers - JUST BE FOCUSED AND DO DSA MOSTLY as all development was asked as it was mentioned in my Resume.

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Easy Questions- Can be done with decent practice

Round 2 - Technical 

(2 Questions)

  • Q1. Array question - basic knowledge sufficient
  • Q2. Maths questions + stack implementation
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Design parking lot app
  • Ans. 

    A parking lot app to help users find available parking spots and pay for parking.

    • Include a map feature to show available parking spots in real-time

    • Allow users to reserve parking spots in advance

    • Integrate payment options for users to pay for parking

    • Provide notifications for parking expiration or availability of nearby spots

  • Answered by AI
  • Q2. Design parking lot app for blind people
  • Ans. 

    A parking lot app designed for blind people to easily navigate and find available parking spots.

    • Include voice-guided navigation to direct users to available parking spots

    • Use sensors to detect empty parking spaces and relay information to the app

    • Provide audio alerts for obstacles or other vehicles in the parking lot

    • Include a feature for users to easily locate their parked vehicle when returning

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at Malviya National Institute of Technology (NIT), Jaipur and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

It consists of aptitude and 2 easy coding questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell about your project
  • Ans. 

    Developed a web application for managing inventory

    • Used HTML, CSS, and JavaScript for the frontend

    • Implemented a RESTful API using Node.js and Express.js for the backend

    • Utilized a PostgreSQL database for storing inventory data

    • Implemented authentication and authorization using JSON Web Tokens (JWT)

    • Implemented features like adding, updating, and deleting inventory items

  • Answered by AI
  • Q2. Some basic SQL question

Interview Preparation Tips

Topics to prepare for PolicyBazaar Software Developer Intern interview:
  • DSA
  • SQL
  • Web Development
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. It was based on dynamic programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DSA very well
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 DSA questions were asked in OA.

Round 2 - HR 

(1 Question)

  • Q1. Basic HR Questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian School of Mines (ISM), Dhanbad and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 questions on Hackerearth leetcode medium to hard level

Round 2 - Technical 

(1 Question)

  • Q1. 2 Technical Interview First round they asked 2 easy questions one of map and other of stack second round they asked LRU Cache and Kadane's algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode question will be best choice

I was interviewed in May 2022.

Round 1 - Face to Face 

(2 Questions)

Round duration - 150 minutes
Round difficulty - Medium

The interview was scheduled at 6 pm and the duration of the interview was 1.5 hrs but went for around 2.5 hrs. The interviewer started with a brief intro about me. Asked me some coding questions. After coding questions he started asking questions on dbms like difference between sql and no sql, what is horizontal and vertical scaling and when we use them. Then some questions on computer networks like how web browsers works, different between http and HTTPS, what is TCP. After this he asked about my projects and the technology I worked on during the intern.

  • Q1. Snake and Ladder

    You have been given a Snake and Ladder Board with 'N' rows and 'N' columns with the numbers written from 1 to (N*N) starting from the bottom left of the board, and alternat...

  • Ans. BFS

    We will use Breadth-First Search to find the shortest path from cellNumber 1 to cellNumber N*N.

    1. We will maintain a queue of cellNumber where the front of the queue will always contain a cell which can be reached by minimum dice throw from starting cell (cellNumber = 1).
    2. Create a minDiceThrow array of size N*N initialise it with the maximum value (INT_MAX)
    3. Start with pushing cellNumber 1 and updating minDiceThrow[1] = 0...
  • Answered Anonymously
  • Q2. Deletion In Doubly Linked List

    You are given a Doubly Linked List of ‘N’ positive integers. Your task is to delete a node at position ‘POS’ in the linked list.

    Note:
    Assume that the Indexing for the link...
  • Ans. Naive Approach

    If ‘POS’ is 0 means that we have to delete a node at the beginning of the linked list means we have to make the 2nd node as the head node so just set ‘head’  = ‘head → next’ and ‘head → prev’ = ‘NULL’. 

     

    If ‘POS’ is ‘N - 1’ means that we have to add a node at the end of the linked list so just traverse to position ‘N - 2’ of the linked list and set the ‘NEXT’ of the node as ‘NULL’.

     

    If ‘...

  • Answered Anonymously
Round 2 - HR 

Round duration - 20 minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteriaNeed good projects in your resume.Zomato interview preparation:Topics to prepare for the interview - Dsa, computer networks, operating system, system design, dbmsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Study all the concepts of dbms and cn deeply
Tip 2 : Zomato focus on development, so you have to do some good projects or should have previous internship experience.

Application resume tips for other job seekers

Tip 1 : Have good Projects
Tip 2 : Study all the topics deeply that u mentioned in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Jul 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Multi-Level LinkedList sorting
  • Q2. Replacement of blank space with %20 in string without using any new string.
  • Ans. 

    Replace blank space with %20 in string without using new string.

    • Loop through string and replace blank space with %20 in place.

    • Use two pointers, one for original string and one for modified string.

    • Use ASCII value of %20 to replace blank space in place.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on your DSA a lot, for any fresher DSA matters the most to get into PBCs along with your CS Core subjects like OS, CN, DBMS.

I was interviewed before Sep 2020.

Round 1 - Video Call 

(2 Questions)

Round duration - 1 hour
Round difficulty - Medium

It was a 1 hour round on coding and problem solving. 

  • Q1. Search In Rotated Sorted Array

    Aahad and Harshit always have fun by solving problems. Harshit took a sorted array and rotated it clockwise by an unknown amount. For example, he took a sorted array = [1, 2,...

  • Ans. 

    Step 1 : Initially I applied bubble sort.
    Step 2 : The interviewer asked me to optimize the solution
    Step 3 : I had to find a pivot and then sort .
    Step 4 : I applied Binary search to find the pivot and then performed sort.

  • Answered Anonymously
  • Q2. Merge Two Sorted Linked Lists

    You are given two sorted linked lists. You have to merge them to produce a combined sorted linked list. You need to return the head of the final linked list.

    Note:

    The give...
  • Ans. 

    Step 1 : I first merged the linked list and applied sorting.
    Step 2 : The interviewer asked me to optimize the solution
    Step 3: I then took an empty linked list and starting adding elements by comparing the elements( as they are sorted so no need to compare one element with the complete list) of both the given linked list.
    Step 4 : Then interviewer asked me to optimize space complexity.
    Step 5: I took the first linked list...

  • Answered Anonymously

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Banasthali University. I applied for the job as SDE - Intern in BangaloreEligibility criteria7 CGPAMyntra interview preparation:Topics to prepare for the interview - C , OOPS , Java , MySql , Data StructuresTime required to prepare for the interview - 3 MonthsInterview preparation tips for other job seekers

Tip 1 : Always try to be clear with your basic concepts .As you are a fresher , you are expected to be clear with your basic concepts such as OOPS , MySql etc and also you should be able to explain it properly to the interviewer.
Tip 2 : Practice at least 200 Questions and the best platform for preparing is LeetCode.
Tip 3 : You should be clear with your projects and the technology it involved . 2-3 Projects are enough for the interview.

Application resume tips for other job seekers

Tip 1 : Make neat resume with projects and internships mentioned.
Tip 2 : Mention only those things which are true.
Tip 3 : Do mention if you won any Hackathon.

Final outcome of the interviewRejected

Skills evaluated in this interview

Xperi Interview FAQs

How many rounds are there in Xperi Software Developer Intern interview?
Xperi interview process usually has 2 rounds. The most common rounds in the Xperi interview process are Coding Test and Technical.
What are the top questions asked in Xperi Software Developer Intern interview?

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

  1. 1 JS SCREEN SHARE AND DO QUESTION in your name count the number of letters freq...read more
  2. JS QUESTION and RE...read more

Tell us how to improve this page.

Xperi Software Developer Intern Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

3.0

Job security

4.0

Company culture

4.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
26 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 - ₹68 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