Tip 1 : Never answer any question that you do not know, try to answer as precisely as you can
Tip 2 : Prepare your resume, they can any thing from that and you can't deny that you don't know
Tip 3 : Projects increase your chances so prepare atleast two
Tip 1 : Be honest, make sure what are you mentioning on it, one false information can leads to disqualification
Tip 2 : Projects are mandatory, basically it reflects your practical skills so focus on this part.
Tip 3 : Any experience like an internship would be appreciated.
This round consists of objective and hands-on questions that are needed to be answered within 3 hours. You have to score 65% or above in this round to be eligible for a job interview at Infosys.
Strings contain only lowercase English alphabets.
Let the array of strings be [“abcd”, “cbad”, “bdac”, “adcb”]. From the given array, strings “abcd”, “cbad”, and “adcb” can be transformed into one another by applying the given operations. But “bdac” cannot be transformed into any other string. Hence, there are only 2 unique strings in the array.
Substring with integer value ‘0’is not considered as special and check only for integers up to length ‘9’as beyond ‘9’integer can’t hold values.
For the string ‘1242’ we return ‘True’ as for substring:
‘12’ we can be defined as the product of two consecutive integers i.e ‘3’ and ‘4’.
‘2’ we can be defined as the product of two consecutive integers i.e ‘1’ and ‘2’.
‘42’ can be defined as the product of two consecutive integers i.e ‘6’ and ‘7’.
If the string passes the required condition we have to return ‘True’ else we have to return ‘False’.
This exam has 3 coding Questions – Easy( 50 points), Medium (75 points), Hard (100 points), total 225 points, and the points are assigned according to the number of test cases you pass
If you are given an array {1, 1, 0, 0, 1} then you will have to return the count of maximum one’s you can obtain by flipping anyone chosen sub-array at most once, so here you will clearly choose sub-array from the index 2 to 3 and then flip it's bits. So, the final array comes out to be {1, 1, 1, 1, 1} which contains five ones and so you will return 5.
1. Some bulbs can glow by multiple switches and some are not glowed by any switch.
2. If any of the switches that can glow a bulb is turned ‘ON’, then the corresponding bulb will glow.
Consider 3 switches with labels [3, 5, 7] and we need to find the 5th glowing bulb from the start after turning these 3 switches ON.
We can see that bulbs numbered 3, 6, 9, 15, 18 … will glow if the switch having label 3 is turned ON.
The bulbs numbered 5, 10, 15, 20 … will glow if the switch having label 5 is turned ON.
The bulbs numbered 7, 14, 21, 28 … will glow if the switch having label 7 is turned ON.
It implies that bulbs numbered 3, 5, 6, 7, 9, 10, 14, 15, 18, 20, 21… will glow when these three switches are turned ON.
The 5th glowing bulb from start is assigned integer 9. Thus, we should return 9.
Basic Introduction and detailed discussion on the projects, after that i was given some basic coding problems and after that some discussion on Oops and detailed discussion on Database,
Interviewer was cool and being supportive so overall it was a good experience.
What are your hobbies? or What are you passionate about?
What are your biggest achievements till date?
What are you most proud of?
Tip 1 : Be Confident
Tip 2 : Prepare your resume throughout
Tip 3 : Projects play so important role in your candidature
Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
Which operator is used for exponentiation in Python?