Upload Button Icon Add office photos

RadiSys

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

RadiSys Platform Engineer Lead Interview Questions, Process, and Tips

Updated 15 Oct 2022

RadiSys Platform Engineer Lead Interview Experiences

1 interview found

I applied via Approached by Company and was interviewed in Sep 2022. There were 4 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 Resume tips
Round 2 - Coding Test 

Scenario based programming questions?
General stuff about project and role which i have done

Round 3 - Technical 

(4 Questions)

  • Q1. Memory leaks how do you find them and fix them?
  • Ans. 

    Memory leaks can be found and fixed using various tools and techniques.

    • Use memory profiling tools like Valgrind, LeakSanitizer, or AddressSanitizer to detect memory leaks.

    • Analyze the code to identify the root cause of the memory leak and fix it.

    • Ensure that all allocated memory is properly deallocated and avoid unnecessary memory allocations.

    • Use smart pointers and garbage collection techniques to manage memory automatic...

  • Answered by AI
  • Q2. Mutex and semaphores?
  • Q3. What is system call and how it works?
  • Ans. 

    System call is a request made by a program to the operating system for performing a specific task.

    • System call provides an interface between the user program and the operating system.

    • It allows user programs to request services from the operating system.

    • Examples of system calls include read, write, open, close, fork, exec, etc.

    • System call is initiated by a software interrupt or trap instruction.

    • The operating system perfo...

  • Answered by AI
  • Q4. Write an expression to clear a nth bit in a number?
  • Ans. 

    Expression to clear nth bit in a number

    • Use bitwise AND operator with the complement of 2 raised to the nth power

    • Example: To clear 3rd bit of 1010, use 1010 & ~(1<<3) = 1000

  • Answered by AI
Round 4 - Technical 

(4 Questions)

  • Q1. Explain about the project and roles handled by me?
  • Q2. Write a program for Circular buffer implementation with producer and consumer scenario? Detect overflow and stop when detecting overflow and stop producer while consumer completes reading?
  • Ans. 

    Circular buffer program with producer and consumer scenario, detecting overflow and stopping producer.

    • Implement a circular buffer with a fixed size and two pointers for producer and consumer

    • Use semaphores to synchronize access to the buffer

    • When the buffer is full, stop the producer until the consumer reads from the buffer

    • When the buffer is empty, stop the consumer until the producer writes to the buffer

    • Use mutex locks ...

  • Answered by AI
  • Q3. Write a program to delete a node in the singly linked list?
  • Ans. 

    Program to delete a node in a singly linked list

    • Find the node to be deleted and its previous node

    • Update the previous node's next pointer to skip the node to be deleted

    • Free the memory occupied by the node to be deleted

  • Answered by AI
  • Q4. Explain secure boot flow in Intel and NXP?
  • Ans. 

    Secure boot flow in Intel and NXP

    • Intel uses a firmware-based approach to secure boot, where the firmware verifies the digital signature of the bootloader and OS kernel before loading them

    • NXP uses a hardware-based approach to secure boot, where the boot ROM verifies the digital signature of the bootloader and OS kernel before loading them

    • Both Intel and NXP use Trusted Platform Module (TPM) to store and verify the digita...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for RadiSys Platform Engineer Lead interview:
  • Secure boot
  • Linux Internals
  • Yocto
  • C
  • Data Structures
Interview preparation tips for other job seekers - If you have proper knowledge on the project you've worked then you can get through the interview process

Skills evaluated in this interview

Interview questions from similar companies

Interview Preparation Tips

Round: Technical Interview
Experience: questions were mainly asked on C, data structures linked lists, wireless communications. i was asked questions on pointers, linked lists, difference between structures and unions, endien-ness(big or little)
about microprocesors- interrupt scheme: which scheme is better , when?
about assembly programming.
They may ask you to write assembly codes/C program
emphasis is on the logic used and not so much on the syntax.

Tips: do C really well. they ask you about projects. also do communication subjects, microprocessors.
they prefer if you know about data structures and OS but it's okay even if you don't.
be honest. if you don't know something say you don't.
do your final year project well.

College Name: Veermata Jijabai Technological Institute, Mumbai [ VJTI ]

Software Engineer Interview Questions & Answers

Intel user image Niranjhana Narayanan

posted on 4 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Why UDP and not TCP in project
  • Ans. 

    UDP is preferred over TCP in this project due to its low latency and lightweight nature.

    • UDP is a connectionless protocol, which means it does not establish a direct connection between the sender and receiver.

    • UDP is faster than TCP as it does not have the overhead of establishing and maintaining a connection.

    • UDP is suitable for applications where real-time data transmission is crucial, such as video streaming or online ...

  • Answered by AI
  • Q2. How would you clear the 7th bit in a 32 bit register
  • Ans. 

    To clear the 7th bit in a 32-bit register, perform a bitwise AND operation with a mask that has all bits set to 1 except the 7th bit.

    • Create a mask with the 7th bit set to 0 and all other bits set to 1

    • Perform a bitwise AND operation between the register and the mask

    • Store the result back in the register

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions were based on C concepts, given piece of code, find error, output, etc then data structures, bit manipulation, a few aptitude questions were also there (around 5-7).
Tips: Practice aptitude, C, data structures (geeksforgeeks.org is a good source).
Duration: 1 hour
Total Questions: 30

Round: Technical + HR Interview
Experience: I was asked to explain project in detail, I had done projects on embedded, so was asked about that, details like what fields did you use in that structure, why this implementation and not some related other. Memory management, network communications, operating systems. Then questions on C concepts like memory allocation, function pointers, then data structures like linked lists, then bit manipulation in registers. Questions from electrical coursework. Then later, why higher studies, would you still go for higher studies if you had a good job at a company, why etc.
Tips: Be thorough with C (know your Kernighan & Ritchie) and be prepared to go into details about your projects.

Skills: C, Data Structures, Coursework Understanding, Project And Internship
College Name: IIT Madras

Skills evaluated in this interview

I was interviewed before May 2016.

Interview Preparation Tips

Round: written test
Experience: it was elitmus test conducted by the company itself on campus. As per my knowledge only those scoring 90 percentile got selected for round 2.
Tips: Attempt only those ques that are necessary for scoring 90+ in e litmus. Specially in verbal don't attempt more then required questions, though you might be tempted. The aim is not to score max bt to score 90+

Round: Technical Interview
Experience: This was a programming based round. I was asked to write algorithms for various array linked list based problems. There was cross questioning prompting to reduce complexity and to use different data structures for same problems.

Mostly it focused on subjects like c, data structures and ADA.
Tips: Be clear with basic of data structures and algorithms. Pointers, queue, stacks, array linked lists, sorting etc are the keywords.

Round: Technical Interview
Experience: This was a information security specific round since that was my major. In depth cross questioning on my thesis topics, honeypots, network intrusion etc. Security certificates, and on the go problems to provide security solution layer wise in different scenarios. Security concept of torrents was also asked in detail.
Tips: It was more of a security discussion and throwing of ideas about how things in a particular case could work or could not. Don't worry about right or wrong answer just be clear with your reasoning about the solution you are suggesting.

Round: Other Interview
Experience: I don't know what to name this round, but it focused mainly on developing test cases for an object. Say they gave me a stapler and said to develop a test plan listing down test cases for a given object to pass so that it can be confirmed that it is a stapler. Another scenario was with a lift.
Tips: This is one round where your presence of mind and inter personal skills matter. I think the way you present your thoughts was most important here.

Round: Behavioural Interview
Experience: This was was mostly about how would you react in a given professional situation
Like your assigned work could not be completed on time, or if you are doing something wrong with the work assigned.
Tips: This is all about inter personal skills and putting your best foot forward :)

College Name: Indira Gandhi Delhi Technical University For Women, Delhi

Software Engineer Interview Questions & Answers

Intel user image ESHAN SHEKHAR cs15m018

posted on 2 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Given a blackbox with arithmetic circuits , design the logical circuits
  • Ans. 

    Design logical circuits for arithmetic circuits in a blackbox.

    • Understand the functionality of the arithmetic circuits in the blackbox.

    • Identify the inputs and outputs of the blackbox.

    • Design logical circuits using logic gates to replicate the arithmetic operations.

    • Test the logical circuits to ensure they produce the same outputs as the arithmetic circuits.

  • Answered by AI
  • Q2. Embedded c-code for recursion
  • Ans. 

    Recursion in embedded C-code allows a function to call itself, useful for repetitive tasks or complex algorithms.

    • Ensure proper base case to avoid infinite recursion

    • Use stack space efficiently as embedded systems have limited resources

    • Avoid recursive functions with deep call stacks to prevent stack overflow

    • Example: Recursive function to calculate factorial of a number

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: During this round we had some technical questions and some digital logic questions.
Tips: Please be patient.Interviewers do stress testing. Don't panic even if you don't know any answers.
Duration: 2 hours
Total Questions: 1

Round: Technical Interview
Experience: He asked me questions regarding my project and some coding questions
Tips: Please be patient.Interviewers do stress testing. Don't panic even if you don't know any answers.

Round: Technical + HR Interview
Experience: He asked me questions regarding my project and some coding questions
Tips: Please be patient.Interviewers do stress testing. Don't panic even if you don't know any answers.

College Name: IIT Madras

Skills evaluated in this interview

Software Engineer Interview Questions & Answers

Intel user image Niranjhana Narayanan

posted on 2 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 4 interview rounds.

Interview Preparation Tips

Round: Test
Experience: Questions were based on C concepts, given piece of code, find error, output,etc then data structures, bit manipulation, a few aptitude questions were also there (around 5-7).
Duration: 1 hour
Total Questions: 30

Round: Technical + HR Interview
Experience: I was asked to explain project in detail, I had done projects on embedded, so was asked what fields did you use in that structure, why this implementation and not some related other. Then questions on C concepts, memory allocation, function pointers, data structures, linked lists, then bit manipulation in registers. Then later, why higher studies, would you still go for higher studies if you had a good job at a company, why etc.
Tips: Just be thorough with C (Know your Kernighan Ritchie) and be prepared to go into details about your projects.

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Tell me about your self
  • Ans. 

    I am a passionate software engineer with experience in developing web applications using various technologies.

    • Experienced in developing web applications using HTML, CSS, JavaScript, and frameworks like React and Angular

    • Proficient in backend development with Node.js and databases like MongoDB and MySQL

    • Familiar with version control systems like Git and project management tools like Jira

  • Answered by AI
  • Q2. Questions on gen data structures and basic electrical questions Regards software - Dsa,computer organization,computer networks

Interview Preparation Tips

Round: Test
Experience: I was gen basic analytics questions
Tips: No needforany serious preperation,just be yourself
Duration: 45 minutes
Total Questions: 25

Round: Technical + HR Interview
Experience: I got trough most of dsa and computer network questions but i was notso strong in digital part so i cupped
Tips: Just know the basics of all the areas you are interested in.

Round: HR Interview
Experience: This is the basic question expected i have gone through my family childhood experiences and hobies
Tips: Every person have a unique style of expressing themselves ,so prepare for these kind of questions,dont rise any interest in higher studies

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. C Programming Questions OS Related questions
  • Q2. Write how semaphore works
  • Ans. 

    Semaphore is a synchronization tool used to control access to a shared resource.

    • Semaphore maintains a count of available resources.

    • A process can request access to a resource by decrementing the semaphore count.

    • If the count is zero, the process is blocked until a resource becomes available.

    • When a process is done with a resource, it increments the semaphore count.

    • If there are blocked processes waiting for a resource, one

  • Answered by AI
  • Q3. Question on looping constructs

Interview Preparation Tips

College Name: IIT MADRAS

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Dec 2016. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Question on pointers and concepts based on Resume
  • Q2. Device Drivers, Linux, Firmware and some questions like "how will you handle some scenarios"
  • Q3. Why Intel, Introduce yourself
  • Ans. 

    I am passionate about technology and innovation, and I believe Intel is at the forefront of cutting-edge advancements in the field.

    • I have always been fascinated by the latest advancements in technology and Intel's reputation for innovation drew me to the company.

    • I admire Intel's commitment to pushing the boundaries of what is possible in the tech industry.

    • I am excited about the opportunity to work with a team of talent...

  • Answered by AI

Interview Preparation Tips

College Name: IIT Madras

I applied via Campus Placement and was interviewed in Dec 2016. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. OS concepts, C programme to convert big endian (int data type) to little endian(short data type)

Interview Preparation Tips

Round: Test
Duration: 1 hour
Total Questions: 25

College Name: IIT Madras
Contribute & help others!
anonymous
You can choose to be anonymous

RadiSys Interview FAQs

How many rounds are there in RadiSys Platform Engineer Lead interview?
RadiSys interview process usually has 4 rounds. The most common rounds in the RadiSys interview process are Technical, Resume Shortlist and Coding Test.
What are the top questions asked in RadiSys Platform Engineer Lead interview?

Some of the top questions asked at the RadiSys Platform Engineer Lead 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

Recently Viewed

REVIEWS

Spectra Technovision India

No Reviews

SALARIES

Tech Mahindra

SALARIES

Tech Mahindra

SALARIES

Tech Mahindra

INTERVIEWS

RadiSys

No Interviews

SALARIES

Vodafone Idea

SALARIES

Tech Mahindra

SALARIES

Tech Mahindra

JOBS

Tech Mahindra

No Jobs

REVIEWS

Teleperformance

No Reviews

Tell us how to improve this page.

Interview Questions from Similar Companies

Vodafone Idea Interview Questions
4.1
 • 553 Interviews
Intel Interview Questions
4.2
 • 215 Interviews
Texas Instruments Interview Questions
4.1
 • 120 Interviews
HFCL Limited Interview Questions
4.0
 • 60 Interviews
Telstra Interview Questions
4.0
 • 48 Interviews
View all
Lead Engineer
251 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
249 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
241 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Staff Engineer
178 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Engineer
133 salaries
unlock blur

₹0 L/yr - ₹0 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.0
Compare
Did you find this page helpful?
Yes No
write
Share an Interview