Upload Button Icon Add office photos

Filter interviews by

PERSOLKELLY IT Associate Interview Questions and Answers

Updated 19 May 2022

PERSOLKELLY IT Associate Interview Experiences

1 interview found

IT Associate Interview Questions & Answers

user image Anonymous

posted on 19 May 2022

I applied via Naukri.com and was interviewed in Nov 2021. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. About Your experience
Round 3 - Technical 

(1 Question)

  • Q1. Eligibility criteria for job role
Round 4 - One-on-one 

(1 Question)

  • Q1. Laptop Familiar or not

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on your communication & concept should be clear which mention in your resume ,
Present Yourself as a expertise person .

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Referral and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Given a list of integer find the longest increase sequence

Round 2 - One-on-one 

(2 Questions)

  • Q1. Given a list of integer find the first non repeating integer using stream API of Java 8.
  • Ans. 

    Find the first non-repeating integer in a list using Java 8 stream API.

    • Use Java 8 stream API to group integers by count

    • Filter out integers with count greater than 1

    • Return the first non-repeating integer

  • Answered by AI
  • Q2. Questions on core java like how internationally string works, hashmap etc And questions on database like what is indexing How to optimize SQL queries etc
Round 3 - One-on-one 

(3 Questions)

  • Q1. Given a Map of fruits with there price as a key value pair respectively, find the fruit whose price is maximum using Java 8 Stream API.
  • Ans. 

    Using Java 8 Stream API to find the fruit with maximum price in a Map of fruits.

    • Use entrySet() method to get a stream of key-value pairs from the Map.

    • Use max() method with Comparator.comparing() to find the entry with maximum price.

    • Extract the key (fruit) from the entry with maximum price.

  • Answered by AI
  • Q2. Write a program to check whether the parenthesis are properly balanced or not, means for every opening brace these should be a closing brace present.
  • Ans. 

    Program to check if parenthesis are properly balanced

    • Use a stack data structure to keep track of opening parenthesis

    • Iterate through the input string and push opening parenthesis onto the stack

    • When a closing parenthesis is encountered, pop from the stack and check if it matches the corresponding opening parenthesis

    • If stack is empty at the end and all parenthesis are matched, then the input has properly balanced parenthe

  • Answered by AI
  • Q3. Questions on core Java, Spring Boot, JPA, and Microservices you should have strong foundation in these topics questions asked like 1) what is API gateway 2) how 2 services communicate with eachother 3) ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Be well prepared with practical coding examples. And you should have a very good understanding of foundational concepts. Give mock interviews and practice common coding problem.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Easy question on arrays
  • Q2. Easy question on arrays and trees

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy level dsa..is enough

I applied via LinkedIn and was interviewed in Sep 2022. There were 3 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude questions, quantitative and qualitative questions

Round 2 - Coding Test 

1 medium coding question. Preferably write in Java. Add commands to explain your code along with time and space complexity

Round 3 - One-on-one 

(2 Questions)

  • Q1. Interview round where ask about general DSA questions, SQL along with practical questions.
  • Q2. A variant of bubble sort
  • Ans. 

    Cocktail sort is a variant of bubble sort that sorts in both directions.

    • Also known as bidirectional bubble sort or shaker sort.

    • It starts with the first element and compares it with the next one, swapping if necessary.

    • Then it moves to the last element and compares it with the previous one, swapping if necessary.

    • It continues until no more swaps are needed.

    • It is more efficient than bubble sort for large lists with many ou

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good to have knowledge about DSA.
Writing in Java is more preferable.

Skills evaluated in this interview

I was interviewed in May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 50 minutes
Round difficulty - Medium

It was virtual 1st round with aptitude and computer science related questions and the other was the programming question for which they were given 30 min to solve and available languages are C,C++,Java and Python.

  • Q1. 

    Ninja and Alternating Largest Problem Statement

    Ninja is given a sequence of numbers and needs to rearrange them so that every second element is greater than its neighbors on both sides.

    Example:

    Input:
    ...
  • Ans. 

    The task is to rearrange the given array such that every second element is greater than its left and right element.

    • Read the number of test cases

    • For each test case, read the number of elements in the array and the array elements

    • Iterate through the array and swap elements at odd indices with their adjacent elements if necessary

    • Check if the rearranged array satisfies the conditions and print 1 if it does, else print 0

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Medium

It was around 1PM when this round started. It was taken by 2 developers working in the company. Initially I was a bit nervous but both ther interviewers are flexible. It went well with some discussions and questions.

  • Q1. 

    Longest Common Prefix After Rotation

    You are given two strings 'A' and 'B'. While string 'A' is constant, you may apply any number of left shift operations to string 'B'.

    Explanation:

    Your task is to calcu...

  • Ans. 

    The question asks to find the minimum number of left shift operations required to obtain the longest common prefix of two given strings.

    • Perform left shift operations on string B to find the longest common prefix with string A

    • Count the number of left shift operations required to obtain the longest common prefix

    • Return the minimum number of left shift operations for each test case

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

This was the final and technical round. It happened in between 7-7.30 pm. This interview was taken by senior member in the company.

  • Q1. 

    Sub Sort Problem Statement

    You are given an integer array ARR. Determine the length of the shortest contiguous subarray which, when sorted in ascending order, results in the entire array being sorted in a...

  • Ans. 

    The question asks to find the length of the shortest contiguous subarray that needs to be sorted in order to sort the whole array.

    • Iterate through the array and find the first element that is out of order from the left side.

    • Iterate through the array and find the first element that is out of order from the right side.

    • Find the minimum and maximum element within the subarray from the above steps.

    • Expand the subarray from bo...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from B V Raju Institute of Technology. I applied for the job as Associate Software Engineer in HyderabadEligibility criteriaAbove 9 CGPAZeMoSo Technologies interview preparation:Topics to prepare for the interview - Algorithms and Data Structures, DBMS, OS, Puzzles, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Practise programming questions on daily basis.
Tip 2 : Do not jump into code directly. Brainstorm ideas and arrive at a soltuion.
Tip 3 : Learn OOPS along with real world scenarios and also dbms, os and cn.

Application resume tips for other job seekers

Tip 1 : Keep it on a Page and Think like a employer when preparing resume.
Tip 2 : Your resume isn’t a list of everything you’ve ever done. Carefully curate the experiences that best capture your skills and problem-solving abilities. 
Tip 3 : Include projects and highlight your achievements

Final outcome of the interviewSelected

Skills evaluated in this interview

I was interviewed in Jan 2022.

Round 1 - Technical 

(1 Question)

  • Q1. Implent Oops concept of Java through code
  • Ans. 

    Java OOPs concepts can be implemented using classes, objects, inheritance, polymorphism, and encapsulation.

    • Create classes with attributes and methods

    • Instantiate objects from classes

    • Use inheritance to create subclasses

    • Implement polymorphism through method overriding

    • Encapsulate data using access modifiers

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't join Zemoso Technologies because there is no job security.
Also, the employees are treated properly.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Why Cognizant ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and learn the requirements

PERSOLKELLY Interview FAQs

How many rounds are there in PERSOLKELLY IT Associate interview?
PERSOLKELLY interview process usually has 4 rounds. The most common rounds in the PERSOLKELLY interview process are Resume Shortlist, HR and Technical.

Tell us how to improve this page.

Interview Questions from Similar Companies

Quess Interview Questions
3.9
 • 393 Interviews
Randstad Interview Questions
3.8
 • 258 Interviews
Team Lease Interview Questions
3.9
 • 198 Interviews
GAO Tek Interview Questions
4.5
 • 138 Interviews
TransUnion Interview Questions
4.0
 • 88 Interviews
View all
Consultant
39 salaries
unlock blur

₹3 L/yr - ₹6.1 L/yr

Senior Consultant
26 salaries
unlock blur

₹4 L/yr - ₹9.5 L/yr

HR Consultant
13 salaries
unlock blur

₹4 L/yr - ₹5.2 L/yr

Lead Consultant
11 salaries
unlock blur

₹7.5 L/yr - ₹10.1 L/yr

Sales Executive
10 salaries
unlock blur

₹1 L/yr - ₹3.1 L/yr

Explore more salaries
Compare PERSOLKELLY with

Randstad

3.8
Compare

Team Lease

3.9
Compare

Quess

3.9
Compare

ManpowerGroup

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview