Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Wipro Team. If you also belong to the team, you can get access from here

Wipro Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Wipro Embedded Software Engineer Interview Questions, Process, and Tips

Updated 19 Feb 2024

Top Wipro Embedded Software Engineer Interview Questions and Answers

View all 6 questions

Wipro Embedded Software Engineer Interview Experiences

3 interviews found

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
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(5 Questions)

  • Q1. What are storage classes
  • Ans. 

    Storage classes in C define the scope and lifetime of variables.

    • Storage classes include auto, register, static, extern, and typedef.

    • Auto variables are local to the block they are declared in.

    • Register variables are stored in CPU registers for faster access.

    • Static variables retain their value between function calls.

    • Extern variables are declared in one file and can be used in another file.

    • Typedef is used to create new dat

  • Answered by AI
  • Q2. What is use of device drivers
  • Ans. 

    Device drivers are software programs that allow the operating system to communicate with hardware devices.

    • Device drivers act as a translator between the hardware device and the operating system.

    • They provide a standardized interface for the operating system to interact with different types of hardware devices.

    • Device drivers help improve system stability and performance by enabling efficient communication between hardwar...

  • Answered by AI
  • Q3. How do you copy files from and device to other
  • Ans. 

    You can copy files from one device to another by using file transfer protocols like FTP, SCP, or by physically transferring the files via USB or external storage devices.

    • Use FTP (File Transfer Protocol) to transfer files over a network

    • Use SCP (Secure Copy Protocol) for secure file transfers

    • Physically transfer files by connecting devices via USB or using external storage devices like USB drives or SD cards

  • Answered by AI
  • Q4. Bit mask operation
  • Q5. Swapping without 3 rd variable
  • Ans. 

    Swapping two variables without using a third variable

    • Use XOR operation: a = a ^ b; b = a ^ b; a = a ^ b;

    • Use addition and subtraction: a = a + b; b = a - b; a = a - b;

    • Use multiplication and division: a = a * b; b = a / b; a = a / b;

  • Answered by AI

Skills evaluated in this interview

Embedded Software Engineer Interview Questions Asked at Other Companies

asked in Aptiv
Q1. 3. 1)Do you know about Autosar. 2)define function definition and ... read more
asked in Cyient
Q2. Introduction. Difference between Embedded Systems and Embedded so ... read more
asked in Cyient
Q3. 1) which microcontroller you have used in Academics?
Q4. What is conductor, insulator and semi conductor?
asked in HCLTech
Q5. 3. How to enter if and else at the same time

I applied via LinkedIn and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Describe your project
  • Q2. Code snippets of c programming
  • Ans. 

    Code snippets of c programming

    • Use #include to include header files

    • Use int main() to start the program

    • Use printf() to print output

    • Use scanf() to take input

    • Use if-else statements for conditional execution

    • Use loops like for, while, do-while for repetitive tasks

    • Use arrays to store multiple values of same data type

    • Use pointers to manipulate memory addresses

    • Use structures to group related data

    • Use functions to modularize code

  • Answered by AI
  • Q3. What is isr routine in c programming
  • Ans. 

    ISR routine is a function that is executed in response to an interrupt signal.

    • ISR stands for Interrupt Service Routine

    • It is used to handle hardware interrupts

    • ISR routines are written in C language

    • They are executed when an interrupt signal is received

    • ISR routines should be short and efficient

    • They should not block other interrupts

    • Examples of ISR routines include handling keyboard input or timer interrupts

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why do you want to work for Wipro

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay on basics and your last work details

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Discuss 4 case study related to supply chain management.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Software Engineer interview:
  • Supply Chain Management
Interview preparation tips for other job seekers - Develop some case study of your own and also deep analysis for each.

I applied via Campus Placement and was interviewed before Feb 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Hr

Interview Preparation Tips

Interview preparation tips for other job seekers - You should be true to what you are putting before the interviewer . Try to put your ideas Add something you did well in your career like in projects /research which you know very well and versed in concepts about it for open interview so that interviewer can get bandwidth where he can ask questions from. This is simply a key .

I applied via Campus Placement and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. 1.Describe a situation where you have taken a quick decision and failed, and a situation where you succeeded. 2. What is a skill you have tried to achieve but failed? 3. Describe a decision you have taken ...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Always try to take risk in small problems . When you face the consequences, you would be able to tackle bigger problems.
2. Every skill you learn, even if you didn't excel in it is not to be considered a waste of time/failure, you learn something simply by participating.

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about Yourself, some questions related to machine learning, and I was asked more questions to differentiate like differences between ml and ai, python and c, c and java and procedural and functiona...

Interview Preparation Tips

Interview preparation tips for other job seekers - Get a complete grip on your resume and be confident about what you say, If you don't know the answer it is okay to agree that you don't know the answer so that interviewer can ask the next questions.

I was interviewed before Jun 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 180 minutes
Round difficulty - Easy

It was an mcq + coding round. There were aptitude and ouput based question in mcq. And coding questions were easy

  • Q1. 

    Find the Duplicate Number Problem Statement

    Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...

  • Ans. 

    Find the duplicate number in an array of integers from 0 to (N-2).

    • Iterate through the array and keep track of the frequency of each number using a hashmap.

    • Return the number with a frequency greater than 1 as the duplicate number.

    • Time complexity can be optimized to O(N) using Floyd's Tortoise and Hare algorithm.

  • Answered by AI
  • Q2. 

    Reverse String Operations Problem Statement

    You are provided with a string S and an array of integers A of size M. Your task is to perform M operations on the string as specified by the indices in array A...

  • Ans. 

    Given a string and an array of indices, reverse substrings based on the indices to obtain the final string.

    • Iterate through the array of indices and reverse the substrings accordingly

    • Ensure the range specified by each index is non-empty

    • Return the final string after all operations are completed

  • Answered by AI
Round 2 - Video Call 

Round duration - 60 Minutes
Round difficulty - Easy

It was technical + hr round. there were 2 people as interviewer. They stated from intro and asked some basic puzzles and hr questions. After that they asked about my projects, technologies and some ds algo and dbms questions.

Interview Preparation Tips

Eligibility criterianaAccenture interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice aptitude
Tip 2 : Focus on practicing coding
Tip 3 : Learn from mistakes

Application resume tips for other job seekers

Tip 1 : Mention some projects that you have done
Tip 2 : Try to have skills that are required for the role

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Job Portal and was interviewed before Jan 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts,JAVA 8

Interview Preparation Tips

Interview preparation tips for other job seekers - Quite simple and easy. 1st round technical.2nd round HR

I applied via Campus Placement and was interviewed before Aug 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 Resume tips
Round 2 - Coding Test 

Easy DSA questions and some questions on resume

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join if you are a fresher and want to grow as a developer. I had resigned that time I am writing this review
Contribute & help others!
anonymous
You can choose to be anonymous

Wipro Interview FAQs

How many rounds are there in Wipro Embedded Software Engineer interview?
Wipro interview process usually has 2 rounds. The most common rounds in the Wipro interview process are HR, One-on-one Round and Technical.
How to prepare for Wipro 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 Wipro. The most common topics and skills that interviewers at Wipro expect are C, C++ and Embedded Development.
What are the top questions asked in Wipro Embedded Software Engineer interview?

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

  1. How do you copy files from and device to ot...read more
  2. What is isr routine in c programm...read more
  3. What is use of device driv...read more

Recently Viewed

INTERVIEWS

ZTT India

No Interviews

INTERVIEWS

Caterpillar Inc

No Interviews

INTERVIEWS

TCS

No Interviews

REVIEWS

Kyb Motorcycle Suspension

No Reviews

SALARIES

Kyb Motorcycle Suspension

INTERVIEWS

Trelleborg

No Interviews

SALARIES

Hitachi Payment Services

INTERVIEWS

John Deere

No Interviews

INTERVIEWS

Diyar United Company Kuwait

No Interviews

DESIGNATION

Tell us how to improve this page.

Wipro Embedded Software Engineer Interview Process

based on 4 interviews

Interview experience

5
  
Excellent
View more
Wipro Embedded Software Engineer Salary
based on 84 salaries
₹3.5 L/yr - ₹14.9 L/yr
23% more than the average Embedded Software Engineer Salary in India
View more details

Wipro Embedded Software Engineer Reviews and Ratings

based on 6 reviews

2.9/5

Rating in categories

4.5

Skill development

4.1

Work-life balance

2.5

Salary

3.6

Job security

4.1

Company culture

1.7

Promotions

3.0

Work satisfaction

Explore 6 Reviews and Ratings
Project Engineer
32.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
23.1k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
21.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Project Engineer
20.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
18.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Wipro with

TCS

3.7
Compare

Infosys

3.6
Compare

Tesla

4.2
Compare

Amazon

4.1
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent