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
3.7

based on 50.8k Reviews

Filter interviews by

Wipro Software Engineer Interview Questions, Process, and Tips

Updated 28 Dec 2024

Top Wipro Software Engineer Interview Questions and Answers

  • Q1. Knapsack There is a potter who makes pottery wares. With his saving, he can purchase some pottery clay, say ‘K’ units to make pottery wares. He can transform this clay i ...read more
  • Q2. Sum of Two Arrays You are given two numbers 'A' and 'B' in the form of two arrays (A[] and B[]) of lengths 'N' and 'M' respectively, where each array element represents a ...read more
  • Q3. Merge Sort Given a sequence of numbers ‘ARR’. Your task is to return a sorted sequence of ‘ARR’ in non-descending order with help of the merge sort algorithm. Example : M ...read more
View all 126 questions

Wipro Software Engineer Interview Experiences

224 interviews found

Interview Questionnaire 

14 Questions

  • Q1. Which subject is your favourite?
  • Q2. What is polymorphism?
  • Ans. 

    Polymorphism is the ability of an object to take on many forms.

    • Polymorphism allows objects of different classes to be treated as if they are of the same class.

    • It is achieved through method overriding and method overloading.

    • Example: A parent class Animal can have child classes like Dog, Cat, and Bird. Each child class can have its own implementation of the method 'makeSound', but they can all be called using the same me...

  • Answered by AI
  • Q3. What is inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • It allows for code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add its own unique properties and metho...

  • Answered by AI
  • Q4. What is the importance of polymorphism?
  • Ans. 

    Polymorphism allows objects of different classes to be treated as if they were of the same class.

    • Polymorphism enables code reuse and flexibility in object-oriented programming.

    • It allows for the creation of generic code that can work with objects of different classes.

    • Examples include method overloading and overriding, and interfaces in Java.

    • Polymorphism can improve code readability and maintainability.

    • It is a key concep

  • Answered by AI
  • Q5. What is singleton class?
  • Ans. 

    A singleton class is a class that allows only a single instance of itself to be created.

    • Singleton classes have a private constructor to restrict object creation.

    • They provide a global point of access to the instance.

    • Commonly used in scenarios where only one instance is needed, such as database connections or thread pools.

  • Answered by AI
  • Q6. What is the difference between class and objects?
  • Ans. 

    A class is a blueprint for creating objects, while an object is an instance of a class.

    • A class defines the properties and methods that objects of that class will have.

    • An object is created from a class and has its own unique set of values for the properties defined in the class.

    • Multiple objects can be created from the same class.

    • Classes can inherit properties and methods from other classes.

    • Example: A class 'Car' can hav...

  • Answered by AI
  • Q7. What is constructor?
  • Ans. 

    Constructor is a special method that is called when an object is created.

    • Constructors have the same name as the class they belong to.

    • They are used to initialize the object's state.

    • They can take parameters to set initial values.

    • If a class does not have a constructor, a default one is provided.

    • Constructors can be overloaded to provide multiple ways of creating objects.

  • Answered by AI
  • Q8. What is destructor?
  • Ans. 

    Destructor is a special member function that is called when an object is destroyed.

    • It is used to release resources that were acquired by the object during its lifetime.

    • It is automatically called when the object goes out of scope or is explicitly deleted.

    • It has the same name as the class preceded by a tilde (~).

    • Example: ~ClassName() { //destructor code }

  • Answered by AI
  • Q9. Why you want to join the wipro?
  • Ans. 

    I want to join Wipro because of its reputation as a leading software company and the opportunities it offers for career growth and learning.

    • Wipro is known for its expertise in software engineering and I want to be a part of that

    • I am impressed by Wipro's commitment to innovation and cutting-edge technologies

    • Wipro provides a supportive and collaborative work environment

    • I believe joining Wipro will provide me with ample o...

  • Answered by AI
  • Q10. What are your strength?
  • Q11. What are your weakness?
  • Q12. Why you choose this college only?
  • Q13. Tell me about your biggest achievement?
  • Q14. What fly without wings?

Interview Preparation Tips

Round: Test
Experience: you have to attempt the given question in the given time allotted for each section. There minimum no. of questions which you have to attempt for clearing each section. If you clear the cutoff for the first three section you will turn to the 4 section which is essay writing in which you grammar is basically checked.
Tips: With accuracy speed matter to clear each section
Total Questions: 66

Round: Technical Interview
Experience: Generally they ask you about your favourite subject. And the whole interview go through it.
Tips: You should at least prepare one subject on your tips

Round: HR Interview
Experience: This round have riddle your answer may vary from interviewer but you should have justification for your answer
Tips: You should remain confidence throughout this round because your personality is being checked over here

College Name: Jaypee University Of Information Technology

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Basic questions on java
Round 2 - One-on-one 

(1 Question)

  • Q1. Basics of sql and java

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 DuplicateYou have been given an integer array/list(ARR) of s ... 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
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Write a program to check given input is palindrome or not
  • Ans. 

    Program to check if input is a palindrome or not

    • Create a function that takes a string input

    • Remove all non-alphanumeric characters and convert to lowercase

    • Compare the original string with its reverse to check if it's a palindrome

  • Answered by AI
  • Q2. What is the difference between HashMap and HashSet.
  • Ans. 

    HashMap is a key-value pair data structure while HashSet is a collection of unique elements.

    • HashMap stores key-value pairs while HashSet stores unique elements

    • HashMap allows duplicate values but keys must be unique, HashSet does not allow duplicates

    • Example: HashMap map = new HashMap<>(); HashSet set = new HashSet<>()

Answered by AI
  • Q3. Difference between path param and request param.
  • Ans. 

    Path param is part of the URL path, while request param is part of the query string in the URL.

    • Path param is used to identify a specific resource in the URL path, while request param is used to provide additional data to the server.

    • Path param is defined in the URL path itself, like /users/{id}, while request param is appended to the URL as key-value pairs, like ?name=John&age=30.

    • Path param is typically used for mandato...

  • Answered by AI

    Skills evaluated in this interview

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

    I applied via LinkedIn and was interviewed in Jul 2024. There were 2 interview rounds.

    Round 1 - One-on-one 

    (3 Questions)

    • Q1. What is this software engineer?
    • Ans. 

      A software engineer is a professional who designs, develops, and maintains software applications and systems.

      • Designs and develops software applications

      • Writes code to implement software solutions

      • Tests and debugs software to ensure functionality

      • Collaborates with team members to create software products

      • Stays updated on new technologies and trends in the field

    • Answered by AI
    • Q2. Who is the best software developer
    • Ans. 

      The best software developer is subjective and can vary based on individual preferences and criteria.

      • The best software developer is someone who consistently produces high-quality code that meets project requirements.

      • They have strong problem-solving skills and the ability to think critically about complex issues.

      • Effective communication and collaboration with team members are also important qualities of a great software d...

    • Answered by AI
    • Q3. What is have a great day software engineer
    • Ans. 

      It is a friendly way of wishing a software engineer to have a good day.

      • It is a common phrase used to wish someone well in their day.

      • It shows a positive and friendly attitude towards the software engineer.

      • It can help create a positive work environment and boost morale.

    • Answered by AI
    Round 2 - HR 

    (2 Questions)

    • Q1. What is this different software engineer
    • Ans. 

      A software engineer is responsible for designing, developing, and maintaining software applications and systems.

      • Designing and developing software applications

      • Testing and debugging code

      • Collaborating with team members

      • Updating and maintaining existing software

      • Implementing new features and functionalities

    • Answered by AI
    • Q2. Who is the best for your software engineer
    • Ans. 

      The best software engineer is someone who is highly skilled, adaptable, and passionate about problem-solving.

      • Highly skilled in programming languages and technologies

      • Adaptable to new technologies and able to learn quickly

      • Passionate about problem-solving and finding innovative solutions

      • Good communication and teamwork skills

      • Experience in relevant industry or domain (e.g. web development, mobile apps, AI)

      • Continuous learnin

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - I am Good 😊

    Skills evaluated in this interview

    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 Tester

     (1)

    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    2-4 weeks
    Result
    No response

    I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

    Round 1 - One-on-one 

    (5 Questions)

    • Q1. Date format Tosca, 2 workdays from today
    • Ans. 

      The date format in Tosca for 2 workdays from today needs to be calculated.

      • Calculate today's date

      • Add 2 workdays to the current date

      • Format the resulting date in Tosca format

    • Answered by AI
    • Q2. {DATE[][+2w][]}
    • Ans. 

      The question is asking for the current date plus 2 weeks.

      • Use a programming language's date manipulation functions to get the current date.

      • Add 2 weeks to the current date to get the desired date.

      • Consider leap years and different month lengths when calculating the date.

    • Answered by AI
    • Q3. Dex environment
    • Q4. Scanningmethods
    • Q5. Scenario based multiple questions

    Get interview-ready with Top Wipro Interview Questions

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

    (2 Questions)

    • Q1. Explain your project in detail
    • Ans. 

      Developed a web-based project management tool for tracking tasks and deadlines

      • Used HTML, CSS, and JavaScript for front-end development

      • Implemented backend functionality using Node.js and MongoDB

      • Incorporated user authentication and authorization features

      • Utilized RESTful APIs for communication between front-end and back-end

    • Answered by AI
    • Q2. What is map function in java
    • Ans. 

      The map function in Java is used to apply a function to each element in a collection and return a new collection with the results.

      • Map function is part of the Java Stream API.

      • It takes a lambda function as an argument to define the transformation to be applied.

      • Example: List numbers = Arrays.asList(1, 2, 3); List squaredNumbers = numbers.stream().map(n -> n * n).collect(Collectors.toList());

    Answered by AI

    Skills evaluated in this interview

    Software Engineer Jobs at Wipro

    View all
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (3 Questions)

    • Q1. Java, collections
    • Q2. What is arraylist
    • Ans. 

      ArrayList is a dynamic array in Java that can grow or shrink in size as needed.

      • ArrayList is a class in Java that implements the List interface.

      • It allows for dynamic resizing, unlike regular arrays.

      • Elements can be added, removed, or accessed using index positions.

      • Example: ArrayList names = new ArrayList();

    Answered by AI
  • Q3. What is spring boot
  • Ans. 

    Spring Boot is a Java-based framework used for creating standalone, production-grade Spring-based Applications.

    • Spring Boot simplifies the process of creating Spring applications by providing a set of default configurations.

    • It allows for easy setup of Spring projects with minimal configuration.

    • Spring Boot includes embedded servers like Tomcat, Jetty, or Undertow, making it easy to deploy applications.

    • It promotes convent...

  • Answered by AI

    Skills evaluated in this interview

    Software Engineer Interview Questions & Answers

    user image Bollu Diwakar Reddy

    posted on 21 Nov 2024

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

    (2 Questions)

    • Q1. Java 8 features
    • Q2. Spring boot features
    Round 2 - HR 

    (2 Questions)

    • Q1. Salary discussion
    • Q2. Joining details

    Software Engineer interview

    user image Soham Konar

    posted on 13 Mar 2022

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

    I applied via Naukri.com and was interviewed in Nov 2024. There was 1 interview round.

    Round 1 - Aptitude Test 

    Some questions about java

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

    I applied via Recruitment Consulltant and was interviewed in Apr 2024. There were 3 interview rounds.

    Round 1 - Technical 

    (2 Questions)

    • Q1. What is a adls
    • Ans. 

      ADLS stands for Azure Data Lake Storage, a scalable and secure data lake platform for big data analytics.

      • ADLS is a cloud-based storage solution provided by Microsoft Azure.

      • It is designed for big data analytics and can handle massive amounts of data.

      • ADLS offers features like high availability, security, and scalability.

      • Example: ADLS Gen2 is a combination of Azure Blob Storage and Azure Data Lake Storage capabilities.

    • Answered by AI
    • Q2. What is activities? Which type of activities are u using
    • Ans. 

      Activities in software engineering refer to tasks or actions performed during the development process.

      • Types of activities include requirements gathering, design, coding, testing, and deployment

      • Examples of activities are creating user stories, designing system architecture, writing code, running test cases, and releasing updates

    • Answered by AI
    Round 2 - Technical 

    (2 Questions)

    • Q1. What is yours strength and weekness
    • Ans. 

      My strength is problem-solving and my weakness is sometimes being too detail-oriented.

      • Strength: I excel at breaking down complex problems into manageable tasks and finding efficient solutions.

      • Weakness: I can get caught up in the details and lose sight of the bigger picture.

      • Example: In a previous project, I was able to identify a critical bug in the code by carefully analyzing the logs and pinpointing the issue.

      • Example:...

    • Answered by AI
    • Q2. What is your project explanation?
    • Ans. 

      I developed a web application for managing inventory and sales for a retail store.

      • Created a user-friendly interface for adding, updating, and deleting products

      • Implemented a search functionality to quickly find products based on various criteria

      • Integrated payment processing system for online sales

      • Generated reports on sales performance and inventory levels

    • Answered by AI
    Round 3 - HR 

    (2 Questions)

    • Q1. Your current Ctc and expected
    • Ans. 

      Current Ctc: $80,000 Expected Ctc: $100,000

      • Current Ctc: $80,000

      • Expected Ctc: $100,000

    • Answered by AI
    • Q2. Relocation to change
    • Ans. 

      I am open to relocating for the right opportunity.

      • I am willing to relocate for a challenging role that aligns with my career goals.

      • I am open to exploring new cities or countries for work.

      • I believe that relocating can offer new experiences and opportunities for personal and professional growth.

    • Answered by AI

    Skills evaluated in this interview

    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 Python, Django, OOPS, SQL 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.

    Tell us how to improve this page.

    Wipro Software Engineer Interview Process

    based on 45 interviews in last 1 year

    3 Interview rounds

    • Technical Round 1
    • Technical Round 2
    • HR Round
    View more

    People are getting interviews through

    based on 136 Wipro interviews
    Job Portal
    Campus Placement
    Company Website
    WalkIn
    Referral
    Recruitment Consultant
    37%
    25%
    13%
    9%
    5%
    1%
    10% candidates got the interview through other sources.
    High Confidence
    ?
    High Confidence means the data is based on a large number of responses received from the candidates.
    Wipro Software Engineer Salary
    based on 13.9k salaries
    ₹1.9 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 948 reviews

    3.8/5

    Rating in categories

    3.8

    Skill development

    3.8

    Work-Life balance

    3.3

    Salary & Benefits

    3.8

    Job Security

    3.7

    Company culture

    3.1

    Promotions/Appraisal

    3.5

    Work Satisfaction

    Explore 948 Reviews and Ratings
    Software Engineer

    Noida

    5-8 Yrs

    Not Disclosed

    Software Engineer - L2

    Chennai

    3-5 Yrs

    ₹ 3.99-16 LPA

    Software Engineer

    Hyderabad / Secunderabad,

    Bangalore / Bengaluru

    5-10 Yrs

    Not Disclosed

    Explore more jobs
    Project Engineer
    32.6k salaries
    unlock blur

    ₹1.8 L/yr - ₹8.3 L/yr

    Senior Software Engineer
    23k salaries
    unlock blur

    ₹5.8 L/yr - ₹22.5 L/yr

    Senior Associate
    21.2k salaries
    unlock blur

    ₹0.8 L/yr - ₹5.5 L/yr

    Senior Project Engineer
    20.5k salaries
    unlock blur

    ₹5 L/yr - ₹19 L/yr

    Technical Lead
    18.6k salaries
    unlock blur

    ₹8.2 L/yr - ₹36.5 L/yr

    Explore more salaries
    Compare Wipro with

    TCS

    3.7
    Compare

    Infosys

    3.7
    Compare

    Tesla

    4.3
    Compare

    Amazon

    4.1
    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