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

Wipro Project Engineer Interview Questions, Process, and Tips

Updated 24 Feb 2025

Top Wipro Project Engineer Interview Questions and Answers

  • Q1. Triangle Star Pattern Task Your task is to print a triangle pattern using stars (*) for a given integer N, which represents the number of rows. Input: Integer N (Total n ...read more
  • Q2. Encode The String Problem Statement Given a string S of length N , encode it using the specified rules related to vowels and consonants. Explanation: Follow these encodi ...read more
  • Q3. Binary to Decimal Conversion Challenge Transform a given binary number 'N', represented as an integer, into its equivalent decimal format and display the result. Input: ...read more
View all 287 questions

Wipro Project Engineer Interview Experiences

590 interviews found

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

Easy to pass the aptitude 2 coding in thst

Round 2 - Technical 

(3 Questions)

  • Q1. They are asking some basic questions regarding c language
  • Q2. What is c tell me about your self tell me about your project
  • Q3. Difference between c and c#
  • Ans. 

    C is a procedural programming language, while C# is an object-oriented programming language developed by Microsoft.

    • C is a procedural programming language, while C# is an object-oriented programming language.

    • C is widely used for system programming and embedded systems, while C# is commonly used for developing Windows applications and web services.

    • C does not have built-in support for classes and objects, while C# does.

    • C#...

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. How are you different from others?
  • Q2. Fibonacci series code
Round 2 - HR 

(1 Question)

  • Q1. What is your salary expectation?

Project Engineer Interview Questions Asked at Other Companies

asked in Wipro
Q1. Triangle Star Pattern Task Your task is to print a triangle patte ... read more
asked in Wipro
Q2. Encode The String Problem Statement Given a string S of length N, ... read more
asked in Wipro
Q3. Binary to Decimal Conversion Challenge Transform a given binary n ... read more
asked in Wipro
Q4. Mindbending Product Problem Statement You are given an array ARR ... read more
asked in Wipro
Q5. Difference between compiler and interpreter. Why do you apply to ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Java core questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. SCD AND ITS TYPES
  • Ans. 

    SCD stands for Slowly Changing Dimensions, which are used in data warehousing to track changes in data over time.

    • Type 0: Overwrite the existing data with new data

    • Type 1: Update the existing data with new data

    • Type 2: Create a new record for the new data and maintain a link to the old record

    • Type 3: Create a new record for the new data and delete the old record

    • Type 4: Create a new record for the new data, maintain a link ...

  • Answered by AI

Wipro interview questions for designations

 Project Trainee Engineer

 (1)

 Project Engineer and Project Coordinator

 (1)

 Senior Project Engineer

 (53)

 Project Executive Engineer

 (4)

 Project Engineer 3

 (1)

 IT Project Engineer

 (1)

 Project Engineer Mechanical

 (1)

 Junior Project Engineer

 (1)

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

Basic aptitude questions

Round 2 - Coding Test 

One basic coding question and another mid-level difficulty question.

Round 3 - HR 

(2 Questions)

  • Q1. Are you able to relocate?
  • Q2. Who is your inspiration in this generation?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident!

Get interview-ready with Top Wipro Interview Questions

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

I applied via Indeed and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Data structure and oops concepts

Round 2 - Group Discussion 

Random topics were asked

Round 3 - Technical 

(3 Questions)

  • Q1. OOPS concepts ,dsa and logic building
  • Q2. Inhertence logics and accessing properties
  • Ans. 

    Inheritance logics involve the concept of classes inheriting properties and methods from other classes.

    • Inheritance allows a subclass to access properties and methods of a superclass.

    • Subclasses can override inherited methods with their own implementation.

    • Access modifiers like public, private, and protected control the visibility of inherited properties.

  • Answered by AI
  • Q3. Was asked to check for a palindrome

Interview Preparation Tips

Interview preparation tips for other job seekers - work on logic building
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Closures in javascript
  • Ans. 

    Closures in JavaScript allow functions to access variables from an outer function even after the outer function has finished executing.

    • Closures are created when a function is defined within another function and the inner function references variables from the outer function.

    • Closures can be used to create private variables and functions in JavaScript.

    • Closures can also be used to create callback functions and maintain st

  • Answered by AI
  • Q2. Hoisting in javascript
  • Ans. 

    Hoisting in JavaScript refers to the behavior where variable and function declarations are moved to the top of their containing scope during the compilation phase.

    • Variable declarations are hoisted but not their initializations.

    • Function declarations are fully hoisted, meaning they can be called before they are declared.

    • Hoisting can lead to unexpected behavior if not understood properly.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude test is the first round of interview

Round 2 - Technical 

(1 Question)

  • Q1. Technical questions regarding area of study
Round 3 - HR 

(1 Question)

  • Q1. Questions regarding soft skills
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

30 aptitude and 2 coding - 60mins

Round 2 - Technical 

(1 Question)

  • Q1. Java Based Interviews
Round 3 - HR 

(1 Question)

  • Q1. General Discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - its easy to crack, learn all the basics.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Numarical , Resoning and Verbal ability

Round 2 - Technical 

(2 Questions)

  • Q1. What is type casting
  • Ans. 

    Type casting is the process of converting a variable from one data type to another.

    • Type casting can be implicit or explicit

    • Implicit type casting is done automatically by the compiler

    • Explicit type casting requires the programmer to specify the conversion

    • Example: converting an integer to a float in a programming language

  • Answered by AI
  • Q2. Tell me about oops in java
  • Ans. 

    Object-oriented programming concepts in Java

    • Encapsulation: bundling data and methods that operate on the data into a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability for objects to take on multiple forms

    • Abstraction: hiding the implementation details and showing only the necessary features

    • Example: Creating classes like Car, Truck, and Motorcycle that inher

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. How can motivate a group if you are the leader
  • Q2. How did manage work life balance

Skills evaluated in this interview

Wipro Interview FAQs

How many rounds are there in Wipro Project Engineer interview?
Wipro interview process usually has 2-3 rounds. The most common rounds in the Wipro interview process are Aptitude Test, Technical and HR.
What are the top questions asked in Wipro Project Engineer interview?

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

  1. Difference between compiler and interpreter. Why do you apply to IT, from your ...read more
  2. 1. OOPs concept 2. Difference between Encapsulation and Abstraction? 3. What is...read more
  3. Why did you choose this programming language over other programming languag...read more
How long is the Wipro Project Engineer interview process?

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

Tell us how to improve this page.

Wipro Project Engineer Interview Process

based on 391 interviews

6 Interview rounds

  • Aptitude Test Round
  • Technical Round
  • HR Round - 1
  • HR Round - 2
  • Personal Interview1 Round - 1
  • Personal Interview1 Round - 2
View more
Wipro Project Engineer Salary
based on 32.8k salaries
₹1.8 L/yr - ₹8.3 L/yr
At par with the average Project Engineer Salary in India
View more details

Wipro Project Engineer Reviews and Ratings

based on 4.1k reviews

3.5/5

Rating in categories

3.5

Skill development

3.6

Work-life balance

2.9

Salary

3.5

Job security

3.5

Company culture

2.7

Promotions

3.2

Work satisfaction

Explore 4.1k Reviews and Ratings
Project Engineer
32.8k salaries
unlock blur

₹1.8 L/yr - ₹8.2 L/yr

Senior Software Engineer
23.1k salaries
unlock blur

₹5.8 L/yr - ₹23 L/yr

Senior Associate
21.3k salaries
unlock blur

₹0.9 L/yr - ₹5.5 L/yr

Senior Project Engineer
20.4k salaries
unlock blur

₹5 L/yr - ₹19.5 L/yr

Technical Lead
18.7k salaries
unlock blur

₹8.3 L/yr - ₹36.5 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