Open In App

Infytq Interview Experience 2021

Last Updated : 02 Feb, 2021
Improve
Improve
Like Article
Like
Save
Share
Report

Like every year, this year also, Infosys comes with their certification program by which we get an ample opportunity to work at a various post of Infosys like (SE SES PP), initially, their certification program is for SE role after getting SE, you will also got an opportunity to upgrade yourself in SES or PP 

First Round: So the first round is basically an MCQ round which was on 25 Feb 2021 for 2021 batch, in which there is two option you can choose JAVA or PYTHON and two compulsory sections of DBMS and Aptitude, I had selected python in which there was a 20 programming MCQ which is of easy to medium level, I had solved around 10 questions of python, and in DBMS I solved around 5-6 question, aptitude section was very easy, I have solved all 10 question  

On 28 Feb Infosys has declared the first-round result, and I was selected for 2nd round, which is an again MCQ + Coding round, for 2nd round if you got 65+ marks then you will be eligible for Infosys certification and also got a good opportunity to give a job interview for SE profile

Second Round: My 2nd round was on 6th March 2021, the pattern was basically a two coding question and 20 MCQ of PYTHON and DBMS(I have selected python so MCQ from python you can also choose java), weightage of the coding part is of 60% and MCQ part is of 40%  

The two coding questions are:

Password Generator.

Python3




def generatePassword(strArr):
    ans = ""
    for string in strArr:
        index = string.index(":")
        x = len(string[:index])
        z = sorted(string[index+1:], reverse = True)
        for i in z:
            if int(i) <= x:
                ans += string[int(i)-1]
                break
        else:
            ans += "X"
    return ans
  
  
strArr = [str(i) for i in input().split()]
result = generatePassword(strArr)
print(result)


The Longest Fibonacci series into an array

Python3




def LongestFibo(arr):
    n = len(arr)
    longFibo = []
    for i in range(n):
        for j in range(i+1,n):
            fibo = []
            first = arr[i]
            second = arr[j]
            fibo.append(first)
            fibo.append(second)
            for k in range(j+1,n):
                if (first + second)== arr[k]:
                    fibo.append(arr[k])
                    first = second
                    second = arr[k]
            if len(fibo) > len(longFibo):
                longFibo = fibo
  
    if len(longFibo) > 2:
        return longFibo
    else:
        return [-1]
  
arr = [int(i) for i in input().split()]
result = LongestFibo(arr)
print(*result)


I have solved both coding questions and also in the MCQ section I have attempted all the question(not sure how many rights) because there is no (-ve) marking, after 3-4 hrs 2nd round result declared, and I was selected, after this, I got a mail for HR interview

Third Round: So 3rd Round i.e HR round was on the same day i.e on 6th march 2021, HR round is so easy and it goes around 5 to10 minutes approx

  • They asked, just three question
  • Why do you want to join Infosys?
  • Who is the CEO and Founder of Infosys?
  • Which-which IT application do you use in your daily life?

After this interview was over, on 11th Sept 2021 by TPO I got to know that I have been selected, and on 8th Dec 2021 infytq has sent an offer letter for the SE role :)

Selection Ratio: From our college 7 out of 410 got a job through a certification program for up-gradation, there will be another coding round and interview for the next round.



Like Article
Suggest improvement
Previous
Next
Share your thoughts in the comments

Similar Reads