Persistent Super Achiever Test 2024

Super Achiever Test Persistent for 2024

Persistent has announced its on-campus hiring for 2024 engineering graduates. This year hiring pattern of Persistent is totally different from what they have been following in the past. This year Persistent is offering 3 different roles and packages to the graduates of 2024. Based on the performance in the hiring exam students can get a package ranging from 5LPA to 9LPA

Persistent Super Achiever Test 2024

What is Persistent Super Achiever Test ?

Persistent has changed its hiring pattern for 2024 graduates. Super Achiever Test is a new section being introduced by Persistent. This is the final round of recruitment exam. Only those candidates who have cleared the first two rounds of the hiring i.e; Objective+Subjective Round and Advanced Coding Round are eligible for this round. Clearing this round will increase your package from 7.8 LPA to 9.3 LPA.

Persistent Super Achiever Test Pattern

What rounds are asked in Super Achiever Test ?

This section consists of 2 rounds.

  1. Super Achiever Test
  2. Drona Interview

Super Achiever Test – Persistent has not announced yet what exactly will be asked in this particular test, but based on our research we can tell you either this will be a coding round with advance coding topics like dynamic programming, multithreading, exceptional handling, greedy algorithms, etc. or it will be a after placement test, based on the training that you’ve under gone and then there will be an internal test, wherein you get a chance of increasing you offer and get a better role.

Drona Interview – After clearing the super achiever test round, you will be facing the final interview round i.e; Drona Interview, this is just another interview which will be based on the above round problem statement. Clearing this interview round will give you a package of 9.3 LPA.

Question 1: Longest Increasing Subsequence (LIC)

Given an integer array ‘A’, find the length of its Longest Increasing Subsequence(LIS). LIS is a sub-array of the given integer array where the elements are sorted in a monotonic/ strict increasing order.

You need to fill in a function that takes two inputs – integer ‘n’ and an integer array ‘A’ containing ‘n integers and returns the length of its LIS.

Input Specification:
input1: integer input ‘n'(1 <= input1 <= 1000)
input2: integer array ‘A’ input, containing ‘n’ integers.

Output Specification:
Return the length of its LIS.

Example1:
Input1: 3
Input2: (1,3,2)
Output: 2

Explanation:
(1.2) and (1.3) are the longest increasing subsequences of (1,3,2). The length of both LIS is 2.

Example 2:
input1:5
input2: (41, 18467,6334 26500, 19169)
Output: 3

Explanation:
(41,6334,26500), (41,18467 26500), etc are the longest increasing subsequences of (41, 18487,6334 ,26500,19169). In all of the cases, the length of LIS is 3.

Question 2: Arithmetic Progression(AP)

Given the second and the third terms of an AP (-106 <= a2, a3 <= 106), find the n’th (1 <= n <= 1000) term of the sequence.

Input Specification:
input1: Second element of series (Integer).
input2: Third element of series (Integer).
input3: Total number of elements in the series (Integer).

Output Specification:
Return the nth element of the series.

Example 1:
input1:1
input2: 2
input3: 4
Output: 3

Example 2:
input1: 5
Input: 8
Input3: 4
Output: 11

Question 3: Mr. Myers and the Exam

A mathematics question paper has a certain number of questions and each question is assigned some random maximum marks. Mr. Myers wants to edit the marks assigned to the questions such that.

  1. All questions in the paper should have distinct maximum marks
  2. The total marks of all the questions should be as low as possible.

Mr. Myers wants to achieve this by making minimal changes in the original format, assigning the question at least as much marks as it originally had. Find the minimum total marks that he can set the paper for

Input Specification:
input1: The number of questions in the paper
input2: The array representing the original marks assigned to every question

Output Specification:
The minimum total marks Mr. Myers can set the paper for

Example 1:
input1: 5
input2: {1,2,3,4,5)
Output: 15

Explanation:
As all the questions already have distinct marks he can set the paper as it is with minimum marks as 1+2+3+4+5 = 15

Example 2:
input1: 5
input2: {1,4,5,4,5)
Output: 23

Explanation:
Here the question 1 would have at least 1 mark, question 2 would have at least 4 marks question 3 would have at least 5 marks, so the new set of marks will have to be {1,4,5,6,7}, such that all the conditions are satisfied.

Question 4: Street Lights

One of the streets in your city has a total of L street lots. Each light covers the street from Xi to Y

Input Specification
Input1: L,i distance. Find the length of the street covered with light. denoting the number of street lights
Input2: An array of L * 2 elements. For each row i, (Xi, Yi) denote that the street light i covers the distance from Xi to Yi.

Output Specification:
Your function should return the length of the street covered with light.

Example 1:
Input1: 1
Input2: {(5, 10)}
Output: 5

Prime Course Trailer

Related Banners

Get PrepInsta Prime & get Access to all 200+ courses offered by PrepInsta in One Subscription