Tip 1 : You will not get any hard level question in Coding round, So prepare only Easy and Medium Level Questions
Tip 2 : Understand all of your college projects perfectly
Tip 3 : During Verbal Ability round, Sit in a quiet room and Speak clearly and Loudly
Tip 1 : Mention all of you coding platform or any Achievement in contests
Tip 2 : Push all of your projects on GitHub and mention the link below the project
This round was conducted during day time
→ Online Proctored



Consider following matrix:

The rectangle (1,1) to (3,3) is the rectangle with the maximum sum, i.e. 29.




Symbol Value
I 1
V 5
X 10
L 50
C 100
D 500
M 1000
2 is written as II in the roman numeral, just two one’s added together.
12 is written as XII, which is simply X(ten) + II(one+one).
The number 27 is written as XXVII, which is XX + V + II.
Roman numerals are usually written largest to smallest from left to right.
However, the numeral for four is not IIII. Instead, the number four is written as IV. Because the one is before the five we subtract it making four.
The same principle applies to the number nine, which is written as IX.
There are six instances where subtraction is used:
I can be placed before V (5) and X (10) to make 4 and 9.
X can be placed before L (50) and C (100) to make 40 and 90.
C can be placed before D (500) and M (1000) to make 400 and 900.
In this you can multiple while loops for each of Roman char and add that char in final result and simultaneously deleting the value from integer.
Afternoon
It was an Technical + non technical Interview
What is Data Abstraction?
What do you understand by Inheritance?
What are the key benefits that Inheritance gives us?
What is the difference between method overloading and method overriding?
Tip 1 : Just give an example after explaining each concept
Tip 2 : If you can, then write a small code for the same
Question related to project?
What your role in it?
Describe the project work flow?
Tip 1 : Answer all question confidently
Tip 2 : Understand what you and your team done in the project and remember the work flow of project


Consider array : 2 4 6.
Valid stack permutations are as follows:
2 4 6
push ‘2’
pop ‘2’
push ‘4’
pop ‘4’
push ‘6’
pop ‘6’
2 6 4
push ‘2’
pop ‘2’
push ‘4’
pop ‘6’
push ‘6’
pop ‘4’
4 2 6
push ‘2’
pop ‘4’
push ‘4’
pop ‘2’
push ‘6’
pop ‘6’
4 6 2
push ‘2’
pop ‘4’
push ‘4’
pop ‘6’
push ‘6’
pop ‘6’
6 4 2
push ‘2’
pop ‘4’
push ‘6’
pop ‘6’
push ‘4’
pop ‘6’
Now, If the other array is [2,4,6], [2,6,4], [4,2,6], [4,6,2], or [6,4,2] then the answer is “YES” otherwise “NO”.
Please note that the arrays will only contain unique elements.

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
To make an AI less repetitive in a long paragraph, you should increase: