Upload Button Icon Add office photos

Filter interviews by

LN Technologies Embedded Software Developer Interview Questions and Answers for Experienced

Updated 20 Feb 2021

LN Technologies Embedded Software Developer Interview Experiences for Experienced

1 interview found

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Real Time Operating systems concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Asked mostly internal of RTOS and c basic concepts

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Easy
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Dec 2021. There were 2 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 - Technical 

(2 Questions)

  • Q1. Storage classes and memory layout
  • Q2. Basic C programming snippets

Interview Preparation Tips

Interview preparation tips for other job seekers - Just refresh your basic c programming skills and try to tell more in detail

I applied via Naukri.com and was interviewed before Oct 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Dangling pointer, memory organization in c, create 2d array for a pointer using dynamic memory allocation i.e malloc, some programming from hackerrank

Interview Preparation Tips

Interview preparation tips for other job seekers - These days many companies are giving hackerrank link and evaluating our programming skills and our way of approach, i would advice to first create an account in hackerrank and start solving puzzles. This will improve our programming skills and confidence
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Asked regarding programs
  • Q2. Asked regarding questions of memory structure
  • Q3. What is Compilation process
  • Ans. 

    Compilation process is the process of converting source code into machine code by a compiler.

    • Source code is written in a high-level programming language

    • Compiler translates the source code into assembly code

    • Assembler converts the assembly code into machine code

    • Final executable file is generated

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was nice ..I got selected
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Indeed and was interviewed in Oct 2023. There were 2 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 - Technical 

(5 Questions)

  • Q1. Basic question from my Resume and Work/Projects
  • Q2. Technical Question : Stackoverflow, Queue, Virtual Class/Keyword, Pointers, Linked List
  • Q3. Memory Stack, Local/Glabal/Staic Variable stored where?
  • Q4. Direct Memory Access, Heap, Stack, Dyanamic Memory Allocation, memory Segmentation fault
  • Q5. Difference between Timer and counters?
  • Ans. 

    Timers are used to measure time intervals, while counters are used to count events or occurrences.

    • Timers are typically used for generating delays, measuring time intervals, or triggering events at specific times.

    • Counters are used to count external events, such as pulses or interrupts.

    • Timers can be used to implement software delays, while counters can be used for tasks like frequency measurement.

    • Examples: A timer can be...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - C++ questions mainly

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Online c programming test using online tool

Round 2 - One-on-one 

(1 Question)

  • Q1. Manager level round - explain about project and area of difficulty in embedded. Which one we work and fix issue
Round 3 - HR 

(1 Question)

  • Q1. Discuss about offer letter

Embedded Software Engineer Interview Questions & Answers

Infosys user image Vishnupriya Thamilarasan

posted on 1 May 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
2-4 weeks
Result
-

I applied via Job Portal and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Coding Test 

Very basic c questions like an array

I applied via Recruitment Consulltant and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Coding Test 

Basic c datastructucture networking l2 l3 questions

Round 2 - Technical 

(5 Questions)

  • Q1. Question on projects.
  • Q2. How packet goes from source to destination.
  • Ans. 

    Packets are sent from source to destination through a series of network devices using routing protocols.

    • Packet is created at the source with source and destination IP addresses.

    • Packet is sent to the default gateway or router.

    • Router checks its routing table to determine the next hop for the packet.

    • Packet is forwarded to the next hop until it reaches the destination.

    • Destination receives the packet and sends an acknowledg

  • Answered by AI
  • Q3. Delete a node from single linked list.
  • Ans. 

    To delete a node from a single linked list, we need to find the node and update the pointers.

    • Traverse the list to find the node to be deleted

    • Update the previous node's pointer to point to the next node

    • Free the memory of the node to be deleted

  • Answered by AI
  • Q4. Dynamic memory alocation in c
  • Ans. 

    Dynamic memory allocation in C allows allocation of memory at runtime.

    • Dynamic memory allocation is done using functions like malloc(), calloc(), realloc() and free().

    • malloc() allocates memory block of specified size and returns a pointer to the first byte of allocated memory.

    • calloc() allocates memory block of specified size and initializes all bits to zero.

    • realloc() changes the size of previously allocated memory block...

  • Answered by AI
  • Q5. Interprocess communication in OS
  • Ans. 

    Interprocess communication is a mechanism that allows processes to communicate with each other in an OS.

    • IPC mechanisms include pipes, sockets, message queues, shared memory, and signals.

    • IPC can be used for synchronization, data sharing, and coordination between processes.

    • IPC can be implemented using system calls such as fork(), pipe(), socket(), and msgget().

  • Answered by AI

Interview Preparation Tips

Topics to prepare for LTIMindtree Embedded Engineer interview:
  • Pointer array structure linked l
Interview preparation tips for other job seekers - Slove c problems and clear all basic concepts.

Skills evaluated in this interview

I applied via Referral and was interviewed in Jan 2022. There was 1 interview round.

Round 1 - Phone interview 

(1 Question)

  • Q1. Advanced data structures like double linked list

Interview Preparation Tips

Topics to prepare for Amazon Embedded Software Engineer interview:
  • Data Structures
Interview preparation tips for other job seekers - They ask you about advanced data structures even though you are never going to use them.
The thing is their hiring standards are very high and work is mostly project maintenance type only.

I applied via Recruitment Consultant and was interviewed in Aug 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Factorial of a number. Check validity of the number when scanning latter from user
  • Ans. 

    Validating user input for factorial calculation

    • Use a loop to calculate the factorial of the number

    • Check if the input is a positive integer

    • Handle edge cases such as 0 and 1

    • Use try-except block to catch non-integer inputs

  • Answered by AI
  • Q2. Reverse bits of a given number
  • Ans. 

    Reverse the bits of a given number

    • Use bitwise operators to extract and shift bits

    • Create a new variable to store the reversed bits

    • Loop through the bits and add them to the new variable in reverse order

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare C well

Skills evaluated in this interview

Tell us how to improve this page.

People are getting interviews through

based on 1 LN Technologies interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Software Developer
3 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Senior Software Engineer
3 salaries
unlock blur

₹6 L/yr - ₹9.4 L/yr

Explore more salaries
Compare LN Technologies with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
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