Wipro pvt interview experience Real time questions & tips from candidates to crack your interview

Project Engineer

Wipro pvt
upvote
share-icon
3 rounds | 6 Coding problems

Interview preparation journey

expand-icon
Journey
I practiced Data Structures and algorithms which really helped me a lot in clearing all the interview rounds. I used to participate in the various competitive coding contest on codeforces, codechef and leetcode which helped me in solving problems in the given problem.
Application story
Wipro hires through:- On Campus Drives(official site) Off Campus Drives-Wipro NLTH (official site) common profiles that Wipro hires for are:- 1.Project Engineer 2.Wipro Turbo
Why selected/rejected for the role?
Was good in programming fundamentals and i was been preparing for this about 3 months, have prepared many coding on hackkerrank and hacc=kerearth, solve many aptitude and logical on many online platforms as much as you can, try with wipro frequently asked question, prep insta free materials are awesome you can try all there
Preparation
Duration: 3. Months
Topics: Data Structures , Java , Python , ML , DBMs
Tip
Tip

Tip 1 : Firstly pic any coding language and learn all basic concepts
Tip 2 : Then start learning diff Data Structures and practise at least 50 questions on each data structure with learnt coding language.
Tip 3 : Also prepare DBMS , OS and OOPs concepts for placement preparation.

Application process
Where: Referral
Eligibility: No Active backlog and more than 70 %
Resume Tip
Resume tip

Tip 1: Mention only skills which you really have 
Tip 2: Clearly mention projects which you have done

Interview rounds

01
Round
Easy
Online Coding Test
Duration180 min
Interview date24 Dec 2020
Coding problem2

Coding Questions, Conceptual and Code Analysis

1. Sort 0 1 2

Easy
22m average time
0/40
Asked in companies
Expedia GroupWalmartHCL Technologies

You have been given an integer array/list(ARR) of size 'N'. It only contains 0s, 1s and 2s. Write a solution to sort this array/list.

Note :
Try to solve the problem in 'Single Scan'. ' Single Scan' refers to iterating over the array/list just once or to put it in other words, you will be visiting each element in the array/list just once.
Try solving now

2. Count Even Odd

Moderate
20m average time
90% success
0/80
Asked in companies
BarclaysTeradataCapegemini Consulting India Private Limited

You are given a string of lowercase characters. A magic number M is the summation of the count of characters that occupy even positions in English alphabets and have even frequency, and the count of characters that occupy odd positions in English alphabets and have an odd frequency.

You have to return “EVEN” if M is even, otherwise return “ODD”.

For example:

If we are given a string ‘aabb’.Then we can see the frequency of a=2 and b=2. The position of ‘a’ in alphabets is 1 and the position of ‘b’ is 2. So ‘a’ has an even frequency but its position is odd, so it will not contribute to M. As ‘b’ has an even frequency and its position is also even, so M=1. Now M =1 which is odd, so we have to return “ODD”.
Problem approach

int ans = 0;
for(auto ele : arr){
if(ele%2==0) ans++;
}
print(ans);

Try solving now
02
Round
Easy
Video Call
Duration60 mins
Interview date26 Dec 2020
Coding problem3

Basic Introduction, Discussion on projects, coding question and puzzle

1. Merge Two Sorted Arrays

Moderate
15m average time
85% success
0/80
Asked in companies
HSBCHikeAmazon

Ninja has been given two sorted integer arrays/lists ‘ARR1’ and ‘ARR2’ of size ‘M’ and ‘N’. Ninja has to merge these sorted arrays/lists into ‘ARR1’ as one sorted array. You may have to assume that ‘ARR1’ has a size equal to ‘M’ + ‘N’ such that ‘ARR1’ has enough space to add all the elements of ‘ARR2’ in ‘ARR1’.

For example:

‘ARR1’ = [3 6 9 0 0]
‘ARR2’ = [4 10]
After merging the ‘ARR1’ and ‘ARR2’ in ‘ARR1’. 
‘ARR1’ = [3 4 6 9 10]
Try solving now

2. SQL Question

Write the steps to create, update and drop a view in SQL.

Problem approach

CREATE VIEW View_Name AS
SELECT Column1, Column2, Column3, ..., ColumnN
FROM Table_Name
WHERE Condition;

3. Puzzle

You are given 9 coins. One of them is biased, having a light weight than others and a weighing scale. detect the biased coin in minimum moves

03
Round
Easy
HR Round
Duration20 mins
Interview date27 Dec 2020
Coding problem1

just asked basic hr questions

1. Basic Hr Questions

1. Introduction
2. Strength and Weakness
3. Discussion on projects mention in the resume

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

How do you remove whitespace from the start of a string?

Choose another skill to practice
Similar interview experiences
Project Engineer
2 rounds | 6 problems
Interviewed by Wipro pvt
989 views
0 comments
0 upvotes
Project Engineer
3 rounds | 4 problems
Interviewed by Wipro pvt
1139 views
0 comments
0 upvotes
Project Engineer
3 rounds | 4 problems
Interviewed by Wipro pvt
1382 views
0 comments
0 upvotes
Project Engineer
3 rounds | 4 problems
Interviewed by Wipro pvt
1202 views
1 comments
0 upvotes
Companies with similar interview experiences
company logo
Project Engineer
2 rounds | 4 problems
Interviewed by Amdocs
1255 views
0 comments
0 upvotes