Infosys private limited interview experience Real time questions & tips from candidates to crack your interview

Operations Executive

Infosys private limited
upvote
share-icon
2 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 2 months
Topics: Oops, C, DSA, Java, Pointers, Flowcharts
Tip
Tip

Tip 1 : Practice atleast 3 hours everyday
Tip 2 : Practice 20 question a day. 
Tip 3 : Do as many projects

Application process
Where: Other
Eligibility: 6 Cgpa
Resume Tip
Resume tip

Tip 1 : Do not put false things on resume
Tip 2 : Never tell lie in interview

Interview rounds

01
Round
Medium
Online Coding Interview
Duration80 minutes
Interview date21 Nov 2021
Coding problem2

Timing is noon
Good environment

1. Power of Two

Easy
15m average time
85% success
0/40
Asked in companies
McAfeeAmazonQualcomm

You have been given an integer 'N'.


Your task is to return true if it is a power of two. Otherwise, return false.


An integer 'N' is a power of two, if it can be expressed as 2 ^ 'K' where 'K' is an integer.


For example:
'N' = 4,
4 can be represented as 2^2. So, 4 is the power of two, and hence true is our answer.
Try solving now

2. Sum Tree

Moderate
29m average time
0/80
Asked in companies
AmazonOracleOYO

For a given binary tree, convert it to its sum tree. That is, replace every node data with sum of its immediate children, keeping leaf nodes 0. Finally, return its preorder.

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

alt text

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. 
 In the input, each value of the sequence will be present on a separate line.
Try solving now
02
Round
Easy
HR Round
Duration19 minutes
Interview date28 Jan 2022
Coding problem2

Very smooth

1. OOPS Question

What is objective of Oops ?


 

2. Basic HR Questions

How do you handle pressure?

Willing to relocate?

Here's your problem of the day

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

Skill covered: Programming

To make an AI less repetitive in a long paragraph, you should increase:

Choose another skill to practice
Similar interview experiences
System Engineer Specialist
2 rounds | 4 problems
Interviewed by Infosys private limited
1453 views
0 comments
0 upvotes
SDE - 1
3 rounds | 5 problems
Interviewed by Infosys private limited
1224 views
0 comments
0 upvotes
Software Engineer
3 rounds | 3 problems
Interviewed by Infosys private limited
1174 views
0 comments
0 upvotes
Operations Executive
2 rounds | 5 problems
Interviewed by Infosys private limited
967 views
0 comments
0 upvotes