204 Infosys JD 2024
204 Infosys JD 2024
Infosys is a global leader in next-generation digital services and consulting. Our purpose is to amplify human potential
and create the next opportunity for people, businesses and communities. We enable more than 1,884 clients in more
than 50 countries to navigate their digital transformation. We do it by enabling the enterprise with an AI-powered core,
empowering the business with agile digital at scale, and our always-on learning agenda. Our team, of 3,28,000+
employees, makes this happen.
We have a signature strategy to help our employees move forward, by inspiring them to build technology solutions for
the future, making sure their career never stands still. We do this by navigating further together.
We are keen to partner with your institute for the Infosys Off-Campus Recruitment Program. We will be hiring
students from the 2024 batch for the niche technical role of Specialist Programmer through this program.
The compensation for the Specialist Programmer role is INR 9.5 lakhs per annum.
The first step will be a virtual online assessment and the shortlisted students will be required to undergo an in-person
interview to assess their technical and behavioural skills. Online assessment will be conducted in the first week of July.
Date for the online assessment will be communicated shortly.
• Branches:
1. Computer Science Engineering 2. Information Science & Engineering
3. Electronics and Communication Engineering 4. Information Technology
5. Electrical and Electronics Engineering 6. Mathematics and Computing
7. Electronics and Telecommunication Engineering
• Academic criteria: 60% in 10th and 12th ; 7CGPA or 70% in graduation and post-graduation (If applicable)
Interested students can apply using the application link mentioned below. Request you to circulate the same
across candidates from 2024 batches. Students need to apply latest by Friday, 21st June, 2024.
Kindly see the below ‘Important Instructions for Candidates’ and ‘Sample Questions Infosys’ you can adhere to
the process and prepare for the Infosys online assessment.
How to Apply: If meet the eligibility criteria and interested about this opportunity, please apply through the link
https://surveys.infosysapps.com/r/a/Infosys_SPhiring_24BATCH by June 21, 2024.
Sd/-
T & P Office
Page 1 of 1
IMPORTANT INSTRUCTIONS FOR CANDIDATES
PARTICIPATING IN THE INFOSYS RECRUITMENT PROCESS
1. It is mandatory that your original college ID card is available with you during the virtual interview.
2. Simple average includes marks obtained in all subjects/semesters/years including electives, optional subjects, additional
subjects, practical, and languages. We require you to calculate simple average marks as per the instructions below:
- To get Simple Average, aggregate percentages for Class 10, Class 12, Graduation, and Post-graduation, including all
languages, additional subjects, practical, and optional subjects. (Refer to the given illustration.)
- If your college follows a CGPA system, please ensure that the CGPA is calculated taking into account each course that you
have undertaken in the curriculum, including optional or additional subjects (if any).
- If you have done your Diploma after Class 10 and have joined directly as a lateral entrant into the second year of B.E./B.
Tech, please calculate the aggregate for all the three years of Diploma, including all languages/optional subjects/additional
subjects undertaken. Calculate the aggregate for Engineering from the second year (third semester) onwards to the final
semester, as applicable.
- If your school follows a grade system, please enter the simple average of marks equivalent to it.
Samples of Infosys Online Test
Sample Test 1
• While playing an RPG game, you were assigned to complete one of the hardest quests in this game.
There are n monsters you'll need to defeat in this quest. Each monster i is described with two integer
numbers - poweri and bonusi. To defeat this monster, you'll need at least poweri experience points. If
you try fighting this monster without having enough experience points, you lose immediately. You will
also gain bonusi experience points if you defeat this monster. You can defeat monsters in any order.
The quest turned out to be very hard - you try to defeat the monsters but keep losing repeatedly. Your
friend told you that this quest is impossible to complete. Knowing that, you're interested, what is the
maximum possible number of monsters you can defeat? (Question difficulty level: Hardest)
Input:
The first line contains an integer, n, denoting the number of monsters.
The next line contains an integer, e, denoting your initial experience.
Each line i of the n subsequent lines (where 0 ≤ i < n) contains an integer, power i, which represents
power of the corresponding monster.
Each line i of the n subsequent lines (where 0 ≤ i < n) contains an integer, bonusi, which represents
bonus for defeating the corresponding monster.
Sample cases:
Input Output Output description
2 2 Initial experience level is 123 points.
123
78 Defeat the first monster having power of 78 and bonus of 10.
130 Experience level is now 123+10=133.
10
0 Defeat the second monster.
Alex is very patient, so he managed to do this. Now you're wondering, how many different arrays are
written down on this paper?
Input:
The first line contains an integer, n, denoting the maximum possible value in the arrays.
The next line contains an integer, k, denoting the length of the arrays.
Sample cases:
Input Output Output description
2 2 The required length is 1, so there are only two possible arrays: [1]
1 and [2].
2 3 All possible arrays are [1, 1], [1, 2], [2, 2].
2 [2, 1] is invalid because 1 is not divisible by 2.
3 5 All possible arrays are [1, 1], [1, 2], [1, 3], [2, 2], [3, 3].
2
Sample Test 2
• Bitwise subsequence
You have an array A of N integers A1 A2 .. An. Find the longest increasing subsequence Ai1 Ai2 .. Ak
(1 <= k <= N) that satisfies the following condition:
For every adjacent pair of numbers of the chosen subsequence Ai[x] and Ai[x+1] (1 < x < k), the
expression( Ai[x] & Ai[x+1] ) * 2 < ( Ai[x] | Ai[x+1] ) is true
Note: '&' is the bitwise AND operation, ' | ' is the bit-wise OR operation
Input:
The first line contains an integer, N, denoting the number of elements in A.
Each line i of the N subsequent lines (where 0 ≤ i < N) contains an integer describing Ai.
Sample cases:
Input Output Output description
5 2 One possible subsequence is:
15 5 12
6
5
12
1
6 2 One possible subsequence is:
9 2 15
17
2
15
5
2
7 3 One possible subsequence is:
17 2 8 17
16
12
2
8
17
17
• Grid Path
Given a grid. Each cell of the grid contains a single integer value. These values are described by 2D
integer array a with N rows and 2 columns, where a[i][j] is the value in the cell located in row i,
column j.
Standing in (i; j), the player can move to any cell of the next row (i+1; j2) under the condition that
a[i+1][j2] > a[i][j]. In other words, the value in the next cell of the player's path should be strictly
greater than the value in the current cell of the player's path.
The player can't make any moves if he's already in the last row.
If the player starts in any cell of the first row (either (1; 1) or (1; 2)), what is the maximum possible
total sum of values in all cells he can visit on his path?
Input:
The first line contains an integer, n, denoting the number of rows in a.
The next line contains an integer, 2, denoting the number of columns in a.
Each line i of the n subsequent lines (where 0 ≤ i < n) contains 2 space separated integers each
describing the row a[i].
Sample cases:
Input Output Output description
2 6 Optimal path is (1;2)->(2;2).
12 The answer is 2+4=6.
34
2 8 No moves are possible from the first row. So start in (1; 2) and
78 collect just 8.
55
3 6 One of the optimal paths is (1;1)->(2;1)->(3;1).
11 The answer is 1+2+3=6.
22
33