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

Project Engineer

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

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: OOPS, Data Structures, React, Algorithms, Mysql, DBMS
Tip
Tip

Tip 1 : Make your own project
Tip 2 : For SQL practice you must internet sites
Tip 3 : Have a good knowledge of DSA

Application process
Where: Other
Eligibility: 60% in Graduation
Resume Tip
Resume tip

Tip 1 : Do not put false things on your resume.
Tip 2 : Have some good projects on your resume

Interview rounds

01
Round
Medium
Online Coding Interview
Duration120 minutes
Interview date24 Feb 2022
Coding problem2

The environment was good and it was a pure coding round

1. Arrange the Students

Easy
10m average time
90% success
0/40

There are ‘N’ students each having some amount of blue and black pens (including 0). All you have to do is to arrange them in such a way that students having fewer pens always come before the students having the greater number of pens. If two or more students having the same total number of pens then the one having more blue pens will come first.

For Example :
‘STUDENTS’ = [[2, 3], [5, 1], [1, 2], [4, 1]]
‘ANS’ = [[1, 2], [4, 1], [2, 3], [5, 1]]

Here, STUDENTS[i][0] and STUDENTS[i][1] represent the blue and black pens student ‘i’ have, respectively.
‘STUDENTS’ in terms of the total number of pens students have = [[5], [6], [3], [5]]
Arrange according to the requirement = [[3], [5], [5], [7]]. The fourth student will come before the first student as he has more blue pens.
Therefore, the final answer is [[1, 2], [4, 1], [2, 3], [5, 1]].
Try solving now

2. Sliding Maximum

Moderate
25m average time
85% success
0/80
Asked in companies
AmazonGeeksforGeeksIntuit

You are given an array 'ARR' of integers of length 'N' and a positive integer 'K'. You need to find the maximum elements for each and every contiguous subarray of size K of the array.

For example
'ARR' =  [3, 4, -1, 1, 5] and 'K' = 3
Output =  [4, 4, 5]

Since the maximum element of the first subarray of length three ([3, 4, -1]) is 4, the maximum element of the second subarray of length three ([4, -1, 1]) is also 4 and the maximum element of the last subarray of length three ([-1, 1, 5]) is 5, so you need to return [4, 4, 5]. 
Try solving now
02
Round
Medium
Online Coding Interview
Duration120 minutes
Interview date22 Feb 2022
Coding problem2

It was held in a good environment

1. Missing Numbers

Easy
28m average time
85% success
0/40
Asked in companies
AdobeOlaAmazon

given a set of four numbers that relate to each other in a certain way.
determine the missing number in the third set.
10 4 9 5 
8 5 15 3



7 6
? 2

Try solving now

2. Ninja And The Class Room

Easy
12m average time
89% success
0/40

Ninja has been asked to make the seating arrangement during the exam. Given an array ‘A’ of ‘N’ integers where ‘A[i] = 1’ means there is a student seated at the index ‘i’ and ‘A[i] = 0’ means that the place is currently unoccupied.

Provided no two students can seat adjacent to each other Ninjas has been asked to place extra ‘K’ students in the classroom.

Return 1 if the Ninja is able to place that extra ‘K’ student else return 0.

Example :
Input: ‘N’ = 7, ‘K’ = 2, ‘A’ = [1, 0, 0, 0, 1, 0, 0]
Output: 1

It is possible to place locations 2 and 6 (0-indexed) the updated array will be [1, 0, 1, 0, 1, 0, 1] Here no two students are adjacent to each other.
Try solving now

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