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 Software Engineer Interview Questions, Process, and Tips

Updated 7 Feb 2025

Top Wipro Software Engineer Interview Questions and Answers

  • Q1. Knapsack Problem Statement There is a potter with a limited amount of pottery clay (denoted as 'K' units) who can make 'N' different items. Each item requires a specific ...read more
  • Q2. Sum of Two Numbers Represented as Arrays Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two n ...read more
  • Q3. Merge Sort Problem Statement You are given a sequence of numbers, ARR . Your task is to return a sorted sequence of ARR in non-descending order using the Merge Sort algo ...read more
View all 124 questions

Wipro Software Engineer Interview Experiences

217 interviews found

Software Engineer Interview Questions & Answers

user image Nitish Kumar Singh

posted on 16 Jul 2024

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

I applied via Naukri.com and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Case Study 

Related to project shows on case study

Round 2 - Coding Test 

Coding are just like a programming

Round 3 - Group Discussion 

Group discussion may be all member are discuss in thought to project

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

30 min python selenium

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

C# coding nd mvc entity framework

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

They asked syntax mostly from the C# .net mvc and entity framework

Wipro interview questions for designations

 Senior Software Engineer

 (143)

 Associate Software Engineer

 (13)

 Software Engineer Trainee

 (6)

 Software Testing Engineer

 (4)

 Software Development Engineer

 (3)

 Embedded Software Engineer

 (3)

 Assistant Software Engineer

 (2)

 Software Engineer Analyst

 (1)

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

Good Coding Questions 2 were asked and of moderate level

Round 2 - Technical 

(2 Questions)

  • Q1. Longest common prefixs
  • Ans. 

    Find the longest common prefix among an array of strings.

    • Iterate through the characters of the first string and compare with the corresponding characters of other strings.

    • Stop when a mismatch is found or when reaching the end of the shortest string.

    • Return the prefix found so far.

  • Answered by AI
  • Q2. Left view of Binary Tree
  • Ans. 

    The left view of a binary tree is the set of nodes visible when the tree is viewed from the left side.

    • Traverse the tree in a level order manner and keep track of the first node at each level.

    • Use a queue data structure to store nodes at each level.

    • Example: For a binary tree with root node 1, left child 2, and right child 3, the left view would be [1, 2].

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Wipro Interview Questions

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

I applied via Walk-in and was interviewed in Oct 2023. 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 - Aptitude Test 

All mathematics & reasoning

Round 3 - Coding Test 

Commands Oracle DBA , RAC ASM Rman dataguard hot cold backups import , export data pump

Round 4 - Technical 

(2 Questions)

  • Q1. Depending on the HR thinking questions & commands
  • Q2. Technical questions are asking depending on the work experience

Software Engineer Jobs at Wipro

View all
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
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 - Aptitude Test 

Combine of English, Basic Mathematics and Reasoing based question are there, some time ask picture based questions.

Round 3 - Coding Test 

In 2nd round they conduct coding based test contain puzzle based question need to write a code in the software. Pre-pare AMCAT based agency tests before you appear for Wipro

Round 4 - Group Discussion 

If you got enough score approx 650 out of 1000 only then eligible for next round that is Group discussion, Check your confidence level, your public speaking, listening skill, also notes your relevent points

Round 5 - One-on-one 

(5 Questions)

  • Q1. This is the last round, in which HR + technical questions are there. they ask why you want to join us, Write a code using your fev language to find the perfect squre in a given list of array elements.
  • Q2. Round robin code using C
  • Ans. 

    Round robin scheduling algorithm is implemented using C language

    • Create a queue data structure to store processes

    • Implement a loop to iterate through the processes in a circular manner

    • Adjust the time quantum for each process execution

    • Example: https://www.geeksforgeeks.org/round-robin-scheduling-with-different-arrival-times/

  • Answered by AI
  • Q3. What about your strength and weekness
  • Q4. Tell me something crazy about yourself
  • Q5. Do you like programming give us example why?
  • Ans. 

    Yes, I love programming because it allows me to solve complex problems and create innovative solutions.

    • I enjoy the challenge of breaking down problems into smaller, manageable tasks.

    • I find satisfaction in seeing my code come to life and produce the desired results.

    • Programming allows me to continuously learn and improve my skills, which keeps me engaged and motivated.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared before you apply, must check the pattern asked by company in previous campus. No one replace the Hard Work

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Hiring process is very smooth

Software Engineer Interview Questions & Answers

user image Priya koppada

posted on 24 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Difference between find element and find elements
  • Ans. 

    find element returns the first matching element, find elements returns a list of all matching elements

    • find element returns a single WebElement matching the specified locator

    • find elements returns a list of WebElements matching the specified locator

    • Example: driver.findElement(By.id("exampleId")) vs driver.findElements(By.className("exampleClass"))

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Difference between abstraction and interface
  • Ans. 

    Abstraction is hiding implementation details, while interface is defining a contract for classes to implement.

    • Abstraction focuses on hiding the internal implementation details of a class, allowing the user to only interact with the public methods.

    • Interface defines a contract that specifies the methods a class must implement, without providing the implementation details.

    • Abstraction can be achieved through abstract class...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. React features like virtual dom
Round 2 - HR 

(1 Question)

  • Q1. Basic discussion
Contribute & help others!
anonymous
You can choose to be anonymous

Wipro Interview FAQs

How many rounds are there in Wipro Software Engineer interview?
Wipro interview process usually has 2-3 rounds. The most common rounds in the Wipro interview process are Resume Shortlist, Technical and HR.
How to prepare for Wipro 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 Software Engineering, AutoCAD, Python, CAE and Java.
What are the top questions asked in Wipro Software Engineer interview?

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

  1. What are the steps involved in program execution? When is the memory allocated ...read more
  2. what is the difference between class and objec...read more
  3. What is the use of stack memory, data memory and program memo...read more
How long is the Wipro Software Engineer interview process?

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

Recently Viewed

INTERVIEWS

Wipro

No Interviews

SALARIES

Wipro

SALARIES

Wipro

JOBS

Wipro

No Jobs

JOBS

Wipro

No Jobs

JOBS

Hexaware Technologies

No Jobs

LIST OF COMPANIES

Quest Global

Locations

LIST OF COMPANIES

Quest Global

Locations

INTERVIEWS

Wipro

No Interviews

Tell us how to improve this page.

Wipro Software Engineer Interview Process

based on 116 interviews

6 Interview rounds

  • Resume Shortlist Round
  • Aptitude Test Round
  • HR Round - 1
  • HR Round - 2
  • Personal Interview1 Round - 1
  • Personal Interview1 Round - 2
View more
Wipro Software Engineer Salary
based on 14k salaries
₹2 L/yr - ₹15.4 L/yr
At par with the average Software Engineer Salary in India
View more details

Wipro Software Engineer Reviews and Ratings

based on 978 reviews

3.8/5

Rating in categories

3.7

Skill development

3.8

Work-life balance

3.3

Salary

3.8

Job security

3.7

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 978 Reviews and Ratings
Software Engineer - L2

Mumbai

3-7 Yrs

Not Disclosed

Software Engineer - L3

Mumbai

3-7 Yrs

Not Disclosed

Software Engineer

Mumbai

3-7 Yrs

Not Disclosed

Explore more jobs
Project Engineer
32.8k 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.4k 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