Upload Button Icon Add office photos

RadiSys

Compare button icon Compare button icon Compare

Filter interviews by

RadiSys Interview Questions, Process, and Tips

Updated 24 Oct 2024

Top RadiSys Interview Questions and Answers

View all 35 questions

RadiSys Interview Experiences

Popular Designations

37 interviews found

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

I applied via Campus Placement and was interviewed in Nov 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

No too easy tests c++ oops concepts

Round 2 - Technical 

(1 Question)

  • Q1. Be thorough with data structures
Round 3 - Coding Test 

Be thorough with oops and core cs subjects

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and learn dsa and Oops and core Cs subjects

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Puzzles and c++ related questions were asked

Round 2 - Coding Test 

Data structure and algorith reltaed questions were asked

Round 3 - One-on-one 

(2 Questions)

  • Q1. Linux working internal wuestions
  • Q2. C internals questions were asked

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (183)

Engineer Interview Questions & Answers

user image Anonymous

posted on 29 Jun 2022

I applied via Referral and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Call flow in detail with wireshark log knowledge 2. Ofdm & mimo 3. Csfb 4. Features of 4g technology
Round 2 - One-on-one 

(1 Question)

  • Q1. In depth knowledge of 4g technology, protocols maybe asked based on profile. Basic Coding questions if mentioned in jd

Interview Preparation Tips

Interview preparation tips for other job seekers - Tell the interviewer about the topics you're comfortable and can answer in detail.

Engineer Interview Questions asked at other Companies

Q1. ❖ If a team member is unable to carry out his work, he is doing it repetitively, how would you handle it?, would you like to work only on lifing of components, or would you be ready to shift to other departments?
View answer (5)
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 

(2 Questions)

  • Q1. Questions on Data structures and algorithms
  • Q2. Questions on sql and DBMS

Interview Preparation Tips

Interview preparation tips for other job seekers - Be careful how you answer questions in a job interview.

SDE (Software Development Engineer) Interview Questions asked at other Companies

Q1. A string is given consisting of lowercase alphabets. Write a function which returns yes if the string has all the lowercase letters appearing in it at least once. O(N) time and without using extra space
View answer (3)

RadiSys interview questions for popular designations

 Lead Engineer

 (10)

 Software Engineer

 (6)

 Engineer

 (2)

 SDE (Software Development Engineer)

 (2)

 Senior Engineer

 (2)

 Senior Software Engineer

 (2)

 Software Developer

 (2)

 Staff Engineer

 (2)

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 

(1 Question)

  • Q1. Basic python questions
Round 3 - One-on-one 

(1 Question)

  • Q1. About your profile and project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Not much learning. Good work Life balance.

Senior Engineer Interview Questions asked at other Companies

Q1. what is the meaning of M in M20,M25,M30 grade of concrete?
View answer (57)

Get interview-ready with Top RadiSys Interview Questions

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

I applied via campus placement at National Institute of Technology, Surathkal and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Normal MCQ questions from different computer science subjects

Round 2 - Technical 

(1 Question)

  • Q1. Hashmap Implementation Bit Manipulation question Projects
Round 3 - HR 

(1 Question)

  • Q1. Normal HR questions

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (180)

I applied via Naukri.com and was interviewed in Sep 2021. There was 1 interview round.

Interview Questionnaire 

20 Questions

  • Q1. 1. Bwp part concept
  • Q2. 2. What is corset
  • Q3. 3. Rach procedure
  • Q4. 4. Ue attach procedure
  • Q5. 5. Which numerology are you using
  • Q6. 6. Which bandwidth are you using with RB's
  • Q7. 7. 5G architecture
  • Q8. 8. Protocol layers.
  • Q9. 9. Channel mapping
  • Q10. 10. Cell selection ,cell reselection
  • Q11. 11. Slots based on numerology
  • Q12. 12. What is cce
  • Q13. 13. Find loop in linked list
  • Q14. 14 . WAP set bit or reset bit
  • Q15. 15. Storage classes
  • Q16. 16 .what is semaphore
  • Q17. 17. Array vs linkedlist
  • Q18. 18.SRB ,DRB in 5G
  • Q19. 19. For taking Wireshark logs which command we use
  • Q20. 18. How to find how much process are running on server

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep calp, don't hesitate

Interview Questionnaire 

3 Questions

  • Q1. Convert Binary Tree to linked list
  • Ans. 

    Convert a binary tree to a singly linked list.

    • Traverse the tree in-order and add each node to the linked list.

    • Use a stack to keep track of the nodes while traversing the tree.

    • Recursively merge the left and right subtrees into the linked list.

    • Use a queue to perform a level-order traversal and add nodes to the linked list.

  • Answered by AI
  • Q2. Implement a linked list from scratch
  • Ans. 

    Implementing a linked list involves creating a data structure that consists of nodes linked together.

    • Create a Node class with a value and a next pointer

    • Create a LinkedList class with a head pointer

    • Implement methods to add, remove, and traverse nodes

    • Consider edge cases such as adding to an empty list or removing the head node

  • Answered by AI
  • Q3. Concepts of oops, vectors, virtual pointers etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Study about the company you are applying to, and prepeare from geeks for geeks.

Skills evaluated in this interview

Junior Engineer Trainee Interview Questions asked at other Companies

Q1. How can be the powerfactor improved?
View answer (12)

Engineering MobilityEngine Interview Questions & Answers

user image Anonymous

posted on 19 Jun 2021

Interview Questionnaire 

5 Questions

  • Q1. Basic c question like storage class of c, memory leak,dangling pointer, Memory Layout
  • Q2. Link list programming implementation
  • Q3. Programming on Bit wise operators
  • Q4. Basic Telecom domain related like call flow, attach procedure, handover concept, protocol stack, Architecture
  • Q5. Question on project what is your role, What you did.

Skills evaluated in this interview

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

I applied via Job Fair and was interviewed before Aug 2022. There were 3 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 - Aptitude Test 

It was way easy. Had concepts of speed and permutations.

Round 3 - Technical 

(1 Question)

  • Q1. Questions were based on pure technical background, and whatever was mentioned in the resume

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (183)

RadiSys Interview FAQs

How many rounds are there in RadiSys interview?
RadiSys interview process usually has 3 rounds. The most common rounds in the RadiSys interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for RadiSys 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 RadiSys. The most common topics and skills that interviewers at RadiSys expect are LTE, Mac, C, 4G and C++.
What are the top questions asked in RadiSys interview?

Some of the top questions asked at the RadiSys interview -

  1. Memory leaks how do you find them and fix th...read more
  2. Write a program for Circular buffer implementation with producer and consumer s...read more
  3. Write an expression to clear a nth bit in a numb...read more
How long is the RadiSys interview process?

The duration of RadiSys interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

RadiSys Interview Process

based on 33 interviews

Interview experience

4.5
  
Excellent
View more

Interview Questions from Similar Companies

Vodafone Idea Interview Questions
4.1
 • 555 Interviews
Intel Interview Questions
4.2
 • 223 Interviews
Texas Instruments Interview Questions
4.1
 • 124 Interviews
Broadcom Interview Questions
3.4
 • 41 Interviews
Analog Devices Interview Questions
4.1
 • 27 Interviews
View all

RadiSys Reviews and Ratings

based on 448 reviews

4.0/5

Rating in categories

3.9

Skill development

3.9

Work-life balance

3.8

Salary

3.8

Job security

3.9

Company culture

3.5

Promotions

3.9

Work satisfaction

Explore 448 Reviews and Ratings
Software Engineer
253 salaries
unlock blur

₹7.8 L/yr - ₹17 L/yr

Lead Engineer
251 salaries
unlock blur

₹14 L/yr - ₹42.2 L/yr

Senior Software Engineer
241 salaries
unlock blur

₹10.7 L/yr - ₹30 L/yr

Staff Engineer
178 salaries
unlock blur

₹20.1 L/yr - ₹50 L/yr

Senior Engineer
133 salaries
unlock blur

₹10 L/yr - ₹30.5 L/yr

Explore more salaries
Compare RadiSys with

Intel

4.2
Compare

NXP Semiconductors

3.7
Compare

Texas Instruments

4.1
Compare

Analog Devices

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