Upload Button Icon Add office photos

Meditab Software

Compare button icon Compare button icon Compare

Filter interviews by

Meditab Software Embedded Software Engineer Interview Questions, Process, and Tips

Updated 4 Jul 2023

Meditab Software Embedded Software Engineer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in Jun 2023. There were 3 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 

(6 Questions)

  • Q1. Tell me about yourself ?
  • Q2. What are Pointer and Pointer-related snippets?
  • Ans. 

    Pointers are variables that store memory addresses. Pointer-related snippets are code examples involving pointers.

    • Pointers are used to store memory addresses of variables in C/C++.

    • Pointer arithmetic can be performed to access elements of arrays.

    • Dereferencing a pointer means accessing the value at the memory address stored in the pointer.

  • Answered by AI
  • Q3. Write a code for the Reverse Linked list
  • Ans. 

    Code to reverse a linked list

    • Create three pointers: prev, current, next

    • Iterate through the linked list, updating pointers accordingly

    • Set the next of current to prev, move prev and current pointers forward

    • Update the head of the linked list to the last node visited

  • Answered by AI
  • Q4. Write a code for string reversal.
  • Ans. 

    Code to reverse a string in C++ using pointers.

    • Use two pointers, one pointing to the start of the string and the other pointing to the end.

    • Swap the characters at the two pointers and move them towards each other until they meet in the middle.

    • Repeat the process until the entire string is reversed.

  • Answered by AI
  • Q5. Find the prime number of Natural numbers between their ranges.
  • Ans. 

    To find prime numbers between a range of natural numbers.

    • Iterate through each number in the range

    • Check if the number is prime by dividing it by numbers up to its square root

    • If the number is prime, add it to the list of prime numbers

  • Answered by AI
  • Q6. What are the main roles of you in your projects?
Round 3 - HR 

(3 Questions)

  • Q1. Why are you looking for a job change?
  • Q2. What is the culture of your Company?
  • Q3. Demotivate for a salary negotiation?

Interview Preparation Tips

Topics to prepare for Meditab Software Embedded Software Engineer interview:
  • C
  • Linux Internals
  • Embedded Linux
  • Communication Protocols
Interview preparation tips for other job seekers - Prepare with c concepts sincerely and code then Linux internal like IPC Mechanism

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic C questions and 2 c programs to find wrong in code.
  • Q2. Prepare all UART, SPI, CAN, I2C timing digrams their frame format.
  • Ans. 

    Explanation of UART, SPI, CAN, I2C timing diagrams and frame formats.

    • UART: asynchronous serial communication, start and stop bits, baud rate

    • SPI: synchronous serial communication, master-slave architecture, clock polarity and phase

    • CAN: differential serial communication, arbitration, error detection and correction

    • I2C: synchronous serial communication, master-slave architecture, addressing, clock stretching

  • Answered by AI
  • Q3. Matlab knowledge is advantage

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and cofident

Skills evaluated in this interview

I applied via Naukri.com

Interview Questionnaire 

1 Question

  • Q1. About previous projects, C programming basics, Autosar related basic questions. Indetailed understanding about the previous projects required whichever area worked un.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is not so hard.

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

Interview Questionnaire 

2 Questions

  • Q1. Filter in MVC
  • Ans. 

    Filter in MVC is used to retrieve a subset of data from a larger dataset based on certain criteria.

    • Filters can be applied to data in the model or in the view.

    • Filters can be used to sort, group, or limit the data returned.

    • Filters can be implemented using LINQ or other query languages.

    • Examples of filters include date range filters, category filters, and search filters.

  • Answered by AI
  • Q2. Authentication and authorisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare all basics of MVC,SQL and C#

Skills evaluated in this interview

I applied via Company Website and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Aptitude Test 

First Round was Aptitute Test having Aptitute Question And Java Questions.

Round 2 - Coding Test 

Second round was coding round having two DSA problems

Round 3 - One-on-one 

(1 Question)

  • Q1. 1. Difference between .equals() and == function. 2. Fibonacci series 3. MultiThreading
  • Ans. 

    Questions on Java basics - .equals() vs ==, Fibonacci series, and MultiThreading.

    • The .equals() function compares the values of two objects, while == compares their memory addresses.

    • Fibonacci series is a sequence of numbers where each number is the sum of the two preceding ones.

    • MultiThreading is a technique where multiple threads of execution run concurrently within a single program.

    • Examples: 5 == 5 is true, but new Str...

  • Answered by AI
Round 4 - One-on-one 

(1 Question)

  • Q1. 1. Javascript code to find the frequency of characters in a sentence. 2. Difference between dynamic and static intialization.
  • Ans. 

    Javascript code to find frequency of characters in a sentence and difference between dynamic and static initialization.

    • To find frequency of characters in a sentence, create an object and iterate over each character in the sentence. Increment the count of each character in the object.

    • Dynamic initialization refers to initializing a variable at runtime, while static initialization refers to initializing a variable at comp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Follow Basics of Java And Javascript.
Go through Concepts of OOPs

Skills evaluated in this interview

I appeared for an interview in Apr 2021.

Interview Questionnaire 

2 Questions

  • Q1. Personal based questions
  • Q2. Technical questions based on Java

I applied via Referral and was interviewed in Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Sliding window problem in an Array(using 2 pointers) like Pythagorean triplets.
  • Q2. Overlapping circular linked list problem.
  • Ans. 

    Detect if two circular linked lists overlap

    • Traverse both lists and check if they have the same tail node

    • If they have different tail nodes, they do not overlap

    • If they have the same tail node, check if they intersect at any point

    • Use Floyd's cycle-finding algorithm to detect intersection point

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I had 6 rounds of technical interview . Each round of 1 hr or more. In all the rounds I was asked to write proper programs (Sometimes on HackerRank, sometimes on an IDE, sometimes just on a text editor.) . Questions were designed to test problem solving abilities and proper use to dataStructures and coding basics. Lot of emphasis on writing efficient program with least time complexity possible.

During preparations, its important to understand basics of different dataStructures and how to efficiently use it in your programs . For practicing interview problems, I referred leetcode and geeksforgeeks . Solving different kind of problems from these websites really helped me. Dynamic Programming is also an important area from where lot of problems are asked in interview.

Skills evaluated in this interview

I applied via Referral and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Sql based quedtion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare continuously don't lose hope

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Esay leave DSA questions
Round 2 - One-on-one 

(1 Question)

  • Q1. Java, OOPS, Collection,HashMap working
Round 3 - One-on-one 

(1 Question)

  • Q1. Manager Round, previous projects, role and responsibilities

Interview Preparation Tips

Interview preparation tips for other job seekers - interview is quite easy, just focus on DSA basic questions

Interview Questionnaire 

1 Question

  • Q1. Oops programming,SQL server Database

Meditab Software Interview FAQs

How many rounds are there in Meditab Software Embedded Software Engineer interview?
Meditab Software interview process usually has 3 rounds. The most common rounds in the Meditab Software interview process are Resume Shortlist, Technical and HR.
How to prepare for Meditab Software Embedded Software Engineer 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 Meditab Software. The most common topics and skills that interviewers at Meditab Software expect are Ethernet, RTOS, ARM, Analytical skills and Atmel.
What are the top questions asked in Meditab Software Embedded Software Engineer interview?

Some of the top questions asked at the Meditab Software Embedded Software Engineer interview -

  1. What are Pointer and Pointer-related snippe...read more
  2. Find the prime number of Natural numbers between their rang...read more
  3. Write a code for the Reverse Linked l...read more

Tell us how to improve this page.

Meditab Software Embedded Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

KPIT Technologies Interview Questions
3.4
 • 291 Interviews
Chetu Interview Questions
3.3
 • 175 Interviews
AVASOFT Interview Questions
2.9
 • 165 Interviews
Oracle Cerner Interview Questions
3.7
 • 157 Interviews
Brane Enterprises Interview Questions
2.0
 • 135 Interviews
ivy Interview Questions
3.6
 • 129 Interviews
DE Shaw Interview Questions
3.8
 • 121 Interviews
ServiceNow Interview Questions
4.1
 • 121 Interviews
Axtria Interview Questions
3.1
 • 117 Interviews
View all
Meditab Software Embedded Software Engineer Salary
based on 4 salaries
₹5.4 L/yr - ₹6.1 L/yr
17% less than the average Embedded Software Engineer Salary in India
View more details
Programmer Analyst
139 salaries
unlock blur

₹3.6 L/yr - ₹9.2 L/yr

Quality Analyst
76 salaries
unlock blur

₹3.6 L/yr - ₹8 L/yr

Medical Billing Specialist
36 salaries
unlock blur

₹2 L/yr - ₹4.8 L/yr

Medical Billing Executive
33 salaries
unlock blur

₹2.1 L/yr - ₹4.2 L/yr

Senior Programmer Analyst
32 salaries
unlock blur

₹6.7 L/yr - ₹17.6 L/yr

Explore more salaries
Compare Meditab Software with

KPIT Technologies

3.4
Compare

Thomson Reuters

4.1
Compare

Oracle Cerner

3.7
Compare

NextComm Corporation

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