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

System Engineer

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

Interview preparation journey

expand-icon
Journey
It was an on-campus placement drive. First, you should have more than 60% in all subjects. The test consisted of Aptitude, Puzzles, Pseudo code, and an Essay. After clearing that, you would attend the interview. In the interview, I was tested on core DBMS concepts such as joins and keys.
Application story
After taking the test, they released the results at midnight. Our interview was scheduled for the next day, and we received our offers the same day after the interview.
Why selected/rejected for the role?
I believe I was selected because I demonstrated a strong balance of technical knowledge, problem-solving skills, and clear communication. My preparation in DSA, Java fundamentals, and SQL helped me excel in the technical rounds, while my adaptability and eagerness to learn aligned with Infosys' expectations.
Preparation
Duration: 3 months
Topics: DSA Questions, SQL Queries, OOP Concepts
Tip
Tip

Tip 1: Practice at least 200 coding questions.
Tip 2: Solve as many SQL queries as possible.
Tip 3: Improve and refine your communication skills.

Application process
Where: Campus
Eligibility: Must have more than 60% in both school and college. (Salary Package: 3.6 LPA)
Resume Tip
Resume tip

Tip 1: Include strong, well-documented projects.
Tip 2: Ensure proficiency in SQL.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration120 minutes
Interview date6 Nov 2024
Coding problem2

1. Reverse and Add Palindrome

Moderate
0/80

You are given a non-negative integer N. Your task is to apply the "reverse and add" process to find a resulting palindrome.

The process is as follows:

1)Take the number N.


2)Reverse its digits to create a new number, reversed_N.


3)Add the two numbers together: sum = N + reversed_N.


4)If sum is a palindrome, the process stops, and sum is the result.


5)If sum is not a palindrome, it becomes the new N, and the process repeats from step 1.


You must also handle two failure conditions:

  • If the process takes more than 1,000 additions to find a palindrome, it is considered a failure.

  • If at any step, the sum becomes greater than 4,294,967,295, the process also fails.

  • If the process fails, you should indicate that a palindrome does not exist under these conditions.


    Try solving now

    2. Combination Sum

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

    You are given an array 'ARR' of 'N' distinct positive integers. You are also given a non-negative integer 'B'.


    Your task is to return all unique combinations in the array whose sum equals 'B'. A number can be chosen any number of times from the array 'ARR'.


    Elements in each combination must be in non-decreasing order.


    For example:
    Let the array 'ARR' be [1, 2, 3] and 'B' = 5. Then all possible valid combinations are-
    
    (1, 1, 1, 1, 1)
    (1, 1, 1, 2)
    (1, 1, 3)
    (1, 2, 2)
    (2, 3)
    
    Try solving now
    02
    Round
    Medium
    Face to Face
    Duration60 minutes
    Interview date7 Nov 2024
    Coding problem3

    Technical + HR Round

    1. SQL Queries

    Write a SQL Query to find the second-largest salary from the salary table.

    2. SQL Joins

    Write SQL queries for each type of join: Left Join, Right Join, Inner Join, and Full Outer Join.

    3. Two Sum

    Easy
    10m average time
    90% success
    0/40
    Asked in companies
    AmazonSAP LabsTata Consultancy Services (TCS)

    You are given an array of integers 'ARR' of length 'N' and an integer Target. Your task is to return all pairs of elements such that they add up to Target.

    Note:

    We cannot use the element at a given index twice.
    

    Follow Up:

    Try to do this problem in O(N) time complexity. 
    
    Try solving now

    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
    4 rounds | 13 problems
    Interviewed by Infosys private limited
    1199 views
    0 comments
    0 upvotes
    System Engineer
    3 rounds | 3 problems
    Interviewed by Infosys private limited
    2677 views
    0 comments
    0 upvotes
    System Engineer
    2 rounds | 3 problems
    Interviewed by Infosys private limited
    0 views
    0 comments
    0 upvotes
    System Engineer
    2 rounds | 5 problems
    Interviewed by Infosys private limited
    1084 views
    0 comments
    0 upvotes
    Companies with similar interview experiences
    company logo
    System Engineer
    2 rounds | 2 problems
    Interviewed by Cognizant
    4965 views
    5 comments
    0 upvotes
    company logo
    System Engineer
    3 rounds | 3 problems
    Interviewed by Tata Consultancy Services (TCS)
    2463 views
    0 comments
    0 upvotes
    company logo
    System Engineer
    2 rounds | 1 problems
    Interviewed by Tata Consultancy Services (TCS)
    2038 views
    0 comments
    0 upvotes