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

System Engineer

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

Interview preparation journey

expand-icon
Preparation
Duration: 3 months
Topics: Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic Programming
Tip
Tip

Tip 1 : OOPS - You should be well versed with basic OOPS principles
Tip 2 : You should be confident and have profound knowledge about the projects you worked on
Tip 3 : Basic DB concepts like joins, normalisation

Application process
Where: Company Website
Eligibility: Above 6 CGPA
Resume Tip
Resume tip

Tip 1 : Have clean resume with projects mentioned separately 
Tip 2 : Internships should be mentioned if done

Interview rounds

01
Round
Easy
Video Call
Duration45 minutes
Interview date18 Aug 2021
Coding problem2

1. Sort Stack

Easy
20m average time
80% success
0/40
Asked in companies
MicrosoftIBMAdobe

You are given a stack ‘S’. Your task is to sort the sack recursively.


Note:
Looping through the stack is not allowed.
You need to return a stack that is sorted in descending order.


For example:
Given stack S = 1 3 2 
The output will be 3 2 1 since it is the sorted order.
Problem approach

You are given a stack ‘S’. Your task is to sort the sack recursively.

Try solving now

2. Good Nodes

Easy
15m average time
80% success
0/40
Asked in companies
MicrosoftOracleMorgan Stanley

You are given the root node of a binary tree consisting of ‘N’ nodes. Your task is to find the number of good nodes in the given binary tree.

A good node is defined as good if there are no nodes with a value greater than X’s value in the path from the root to X.

You are given a root node ‘ROOT’.Your task is to return the number of good nodes.

Example:
Elements are in the level order form. The input consists of values of nodes separated by a single space in a single line. In case a node is null, we take -1 in its place.

For example, the input for the tree depicted in the below image would be :

Example

1
2 3
4 -1 5 6
-1 7 -1 -1 -1 -1
-1 -1

Explanation :
Level 1 :
The root node of the tree is 1

Level 2 :
Left child of 1 = 2
Right child of 1 = 3

Level 3 :
Left child of 2 = 4
Right child of 2 = null (-1)
Left child of 3 = 5
Right child of 3 = 6

Level 4 :
Left child of 4 = null (-1)
Right child of 4 = 7
Left child of 5 = null (-1)
Right child of 5 = null (-1)
Left child of 6 = null (-1)
Right child of 6 = null (-1)

Level 5 :
Left child of 7 = null (-1)
Right child of 7 = null (-1)

The first not-null node (of the previous level) is treated as the parent of the first two nodes of the current level. 

The second not-null node (of the previous level) is treated as the parent node for the next two nodes of the current level and so on.

The input ends when all nodes at the last level are null (-1).
Note :
The above format was just to provide clarity on how the input is formed for a given tree. 

The sequence will be put together in a single line separated by a single space. Hence, for the above-depicted tree, the input will be given as:

1 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1
Problem approach

You are given the root node of a binary tree consisting of ‘N’ nodes. Your task is to find the number of good nodes in the given binary tree.
A good node is defined as good if there are no nodes with a value greater than X’s value in the path from the root to X.
You are given a root node ‘ROOT’.Your task is to return the number of good nodes.

Try solving now
02
Round
Easy
HR Round
Duration45 minutes
Interview date17 Aug 2021
Coding problem1

1. Basic HR Questions

Where do you see yourself in 5 years?

Why Wipro?

Problem approach

Tip 1 : Always speak truth 
Tip 2 : Be very clear about your future plans, strengths and weaknesses 
Tip 3 : Have clear idea about the projects you did.

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
System Engineer
2 rounds | 4 problems
Interviewed by Wipro pvt
2568 views
0 comments
0 upvotes
System Engineer
2 rounds | 4 problems
Interviewed by Wipro pvt
1220 views
0 comments
0 upvotes
System Engineer
2 rounds | 4 problems
Interviewed by Wipro pvt
1373 views
2 comments
0 upvotes
System Engineer
2 rounds | 3 problems
Interviewed by Wipro pvt
1798 views
2 comments
0 upvotes
Companies with similar interview experiences
company logo
System Engineer
2 rounds | 4 problems
Interviewed by HCL Technologies
1426 views
0 comments
0 upvotes
company logo
System Engineer
1 rounds | 3 problems
Interviewed by Microsoft
0 views
0 comments
0 upvotes
company logo
System Engineer
3 rounds | 6 problems
Interviewed by HCL Technologies
943 views
0 comments
0 upvotes