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

Project Engineer

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

Interview preparation journey

expand-icon
Preparation
Duration: 2 Months
Topics: Data Structures, Pointers, OOPS, Dynamic Programming, HTML, CSS
Tip
Tip

Tip 1 : Coding must be Intermediate+
Tip 2 : Must have good knowledge of DP.

Application process
Where: Campus
Eligibility: Above 6 CGPA
Resume Tip
Resume tip

Tip 1 : Write whatever you know, never fake it.
Tip 2 : Always mention atleast 1 project.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration90 Minutes
Interview date14 Aug 2020
Coding problem2

There were total 3 sections in exam:-
1. Aptitude (Logical Ability, Quantitative Ability, Verbal Ability) -> 48 minutes
2.Written Communication Test (Essay Writing) -> 20 minutes
3.Coding Test (2 Questions) – Candidates can choose any one of these programming languages for the online programming test: Java, C, C++, or Python. -> 60 minutes

1. Find Duplicates In Array

Easy
15m average time
90% success
0/40
Asked in companies
OYOIBMAcko

You are given an array/list 'ARR' consisting of N integers, which contains elements only in the range 0 to N - 1. Some of the elements may be repeated in 'ARR'. Your task is to find all such duplicate elements.

Note:
1. All the elements are in the range 0 to N - 1.
2. The elements may not be in sorted order.
3. You can return the duplicate elements in any order.
4. If there are no duplicates present then return an empty array.
Problem approach

I used simple XOR approach and got all the testcases passed.

Try solving now

2. Rat In A Maze

Easy
15m average time
85% success
0/40
Asked in companies
Samsung R&D InstituteDeutsche BankMakeMyTrip

You are given a starting position for a rat which is stuck in a maze at an initial point (0, 0) (the maze can be thought of as a 2-dimensional plane). The maze would be given in the form of a square matrix of order 'N' * 'N' where the cells with value 0 represent the maze’s blocked locations while value 1 is the open/available path that the rat can take to reach its destination. The rat's destination is at ('N' - 1, 'N' - 1). Your task is to find all the possible paths that the rat can take to reach from source to destination in the maze. The possible directions that it can take to move in the maze are 'U'(up) i.e. (x, y - 1) , 'D'(down) i.e. (x, y + 1) , 'L' (left) i.e. (x - 1, y), 'R' (right) i.e. (x + 1, y).

Note:
Here, sorted paths mean that the expected output should be in alphabetical order.
For Example:
Given a square matrix of size 4*4 (i.e. here 'N' = 4):
1 0 0 0
1 1 0 0
1 1 0 0
0 1 1 1 
Expected Output:
DDRDRR DRDDRR 
i.e. Path-1: DDRDRR and Path-2: DRDDRR

The rat can reach the destination at (3, 3) from (0, 0) by two paths, i.e. DRDDRR and DDRDRR when printed in sorted order, we get DDRDRR DRDDRR.
Problem approach

Used Backtracking and got all the test cases passed.

Try solving now
02
Round
Medium
Face to Face
Duration30 Minutes
Interview date20 Aug 2020
Coding problem1

It happened online and the duration was 30 minutes.
It was basic Technical Interview.

1. OS Question

They gave bank data. It was asked to Fetch all the employees that never had a loan.

Problem approach

Tip 1 : Read SQL queries also for interview.
Tip 2 : Only CRUD Operations are not enough.
Tip 3 : Try to solve, whether you know exact solution or not.

03
Round
Easy
HR Round
Duration30 Minutes
Interview date31 Aug 2020
Coding problem1

It was very basic round that was taken just to welcome all whoever selected as there was not even a single rejection after this round.
Interviewer was very nice.

1. Basic HR Questions

Tell Me about Yourself.
How would you rate yourself on a scale of 1 to 10 in Coding?
What is your biggest achievement so far?
Are you ready for relocation?

Problem approach

Tip 1 : Always have a best Yourself speech.
Tip 2 : Be in confidence.
Tip 3 : Always have a smile on face.

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
1201 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