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

Project Engineer

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

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: aptitude, oops, basics of c and c++, dbms, sql, easy coding questions
Tip
Tip

Tip 1 : focus on computer science subjects
Tip 2 : have a good knowledge of data structures ( algorithms are optional )
Tip 3 : prepare your resume well and one subject properly.

Application process
Where: Other
Eligibility: 60% above
Resume Tip
Resume tip

Tip 1 : having projects which you did yourself is good
Tip 2 : highlight technical skills

Interview rounds

01
Round
Easy
Online Coding Interview
Duration120 Minutes
Interview date8 Nov 2019
Coding problem2

I reached at around 10 am at the centre and the round got started at 11am after the id verification process. 
The management was pretty good and the process was very smooth. This round was all about aptitude and verbal ability questions. There were two coding questions in the last section.

1. Reverse The Array

Easy
15m average time
85% success
0/40
Asked in companies
GartnerInfo Edge India (Naukri.com)HCL Technologies

Given an array/list 'ARR' of integers and a position ‘M’. You have to reverse the array after that position.

Example:

We have an array ARR = {1, 2, 3, 4, 5, 6} and M = 3 , considering 0 
based indexing so the subarray {5, 6} will be reversed and our 
output array will be {1, 2, 3, 4, 6, 5}.
Problem approach

1) Initialize start and end indexes as start = 0, end = n-1 
2) In a loop, swap arr[start] with arr[end] and change start and end as follows : 
start = start +1, end = end – 1

Try solving now

2. Rotate array

Easy
25m average time
80% success
0/40
Asked in companies
Deutsche BankIBMSalesforce

Given an array 'arr' with 'n' elements, the task is to rotate the array to the left by 'k' steps, where 'k' is non-negative.


Example:
'arr '= [1,2,3,4,5]
'k' = 1  rotated array = [2,3,4,5,1]
'k' = 2  rotated array = [3,4,5,1,2]
'k' = 3  rotated array = [4,5,1,2,3] and so on.
Problem approach

After rotating d positions to the left, the first d elements become the last d elements of the array

1. First store the elements from index d to N-1 into the temp array.
2. Then store the first d elements of the original array into the temp array.
3. Copy back the elements of the temp array into the original array

Try solving now
02
Round
Easy
Face to Face
Duration20 mins
Interview date2 Feb 2020
Coding problem3

It was about 12pm when the interview got started and there were two f2f rounds and if you clear the technical f2f round you are immediately sent to hr round.

1. Output based Question

I was given an array and was asked to find the output If I sort the given array.

Problem approach

wrote directly the output of the question ie. sorted array.
 

2. Bubble Sort

Easy
10m average time
90% success
0/40
Asked in companies
Lenskart.comOptumWells Fargo

Bubble Sort is one of the sorting algorithms that works by repeatedly swapping the adjacent elements of the array if they are not in sorted order.

You are given an unsorted array consisting of N non-negative integers. Your task is to sort the array in non-decreasing order using the Bubble Sort algorithm.

For Example:
Bubble Sort implementation for the given array:  {6,2,8,4,10} is shown below :-

Alt test

Problem approach

since it was an array having all same values, it was already sorted but if we apply sorting algo to it the output will be the same as input.

Try solving now

3. Insertion In Doubly Linked List

Easy
15m average time
95% success
0/40
Asked in companies
Red HatMicrosoftAmazon

You are given a Doubly linked list, where every node in the linked list contains two pointers ‘next’ and ‘prev’ which point to the next node and previous node in the list respectively. All nodes have some positive integer value associated with them. Your task is to insert an integer value ‘VAL’ in the linked list at a given position ‘K’.

Note:

The position given will always be less than or equal to the length of the linked list.
Assume that the Indexing for the linked list starts from 0.
EXAMPLE:
Input :
‘K’ = 3, ‘VAL’ = 4
list = [1, 2, 3]
Output: [1, 2, 3, 4]

The ‘VAL’ = 4, is inserted at end of the above doubly linked list.
Problem approach

Tip 1: use oops to implement these type of problems
Tip 2: constructor should be fine
Tip 3: all basic functions of a doubly linked list should be implemented

Try solving now
03
Round
Easy
HR Round
Duration20 mins
Interview date2 Feb 2022
Coding problem3

It was just after clearing the technical round that I was sent to the hr round. They did not waste anyone's time and everything was very smooth with a friendly environment.

1. Basic HR question

started with my introduction.

Problem approach

Tip 1: include a few personal details ( city, qualifications)
Tip 2: include your achievements during college
Tip 3: conclude with stating one of your hobbies ( in my case it was guitar which I played almost four year in my college band) but don't emphasize too much on hobbies

2. Basic HR question

Tell three qualities about yourself

Problem approach

Tip 1: be honest 
Tip 2: have examples to backup what you say
Tip 3: don't explain if not asked to

3. Basic HR question

Have you improved as a person and if yes how?

Problem approach

Tip 1: relate your answer with your own experience of giving interviews
Tip 2: tell about rejections which helped you improve
Tip 3: I told her that attempting 4 technical interviews this is the first time I reached to a hr round so hence I have improved and learned from my mistakes.

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
990 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
1256 views
0 comments
0 upvotes