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

System Engineer Specialist

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

Interview preparation journey

expand-icon
Preparation
Duration: 5 months
Topics: C++, OOPS, Data Structures, Python, SDLC, Project Development
Tip
Tip

Tip 1 : Must do Hands-on practice before appearing for the process
Tip 2 : Must be clear with basic concepts of Programming.

Application process
Where: Campus
Eligibility: 6 CGPA, No backlogs
Resume Tip
Resume tip

Tip 1 : Resume should be crisp and to the point, do not add unnecessary details
Tip 2 : Must highlight your achievements clearly

Interview rounds

01
Round
Easy
Online Coding Interview
Duration60 Minutes
Interview date15 Oct 2015
Coding problem1

there were 30 MCQs and 1 coding question

1. System Design Question

Create a registration page for a travel application.

Problem approach

1. I created an array where registration details will be stored. This contains Phone number as the unique field for every participant.
2. If a user selects register, I collect user details and phone number, then I checked if the phone number exists in my array or not. If yes, I redirect the user to "login page" saying the "user has already registered". If no, I would process the registration and add the details in my array
3. If a user selects login, I collect phone number and password, then I checked if the phone number exists in my array or not. If yes, I I would redirect the user to "Home" Page. If no, I would ask them to register first.

02
Round
Easy
Face to Face
Duration30 Minutes
Interview date16 Oct 2015
Coding problem1

This was a 30 min round revolving around my profile, the minor project I did, the bottlenecks I had while working on my minor project, and followed by a puzzle problem

1. Delete Kth node From End

Moderate
15m average time
95% success
0/80
Asked in companies
SquadstackExpedia GroupAmazon

You have been given a singly Linked List of 'N' nodes with integer data and an integer 'K'.


Your task is to remove the 'K'th node from the end of the given Linked List and return the head of the modified linked list.


Example:
Input : 1 -> 2 -> 3 -> 4 -> 'NULL'  and  'K' = 2
Output: 1 -> 2 -> 4 -> 'NULL'
Explanation:
After removing the second node from the end, the linked list become 1 -> 2 -> 4 -> 'NULL'.

altImage


Problem approach

Traverse the list and find the length M.
Again traverse the linked list from the start till we reach the (M − N)th node.
Now we delete the (M - N + 1)th node and return the head pointer. Before deleting the node, we need to relink the next pointer of the (M - N)th node to the (M − N + 2)th node.

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 Specialist
3 rounds | 3 problems
Interviewed by Infosys private limited
5520 views
0 comments
0 upvotes
System Engineer Specialist
2 rounds | 4 problems
Interviewed by Infosys private limited
1453 views
0 comments
0 upvotes
System Engineer Specialist
3 rounds | 5 problems
Interviewed by Infosys private limited
1273 views
0 comments
0 upvotes
System Engineer Specialist
1 rounds | 3 problems
Interviewed by Infosys private limited
1500 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
System Engineer Specialist
3 rounds | 9 problems
Interviewed by Tata Consultancy Services (TCS)
1280 views
0 comments
0 upvotes
company logo
System Engineer Specialist
4 rounds | 7 problems
Interviewed by Oracle
0 views
0 comments
0 upvotes
company logo
System Engineer Specialist
3 rounds | 5 problems
Interviewed by HCL Technologies
1234 views
0 comments
0 upvotes