Premium Employer

i

This company page is being actively managed by SHL Team. If you also belong to the team, you can get access from here

SHL Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

SHL Interview Questions and Answers

Updated 1 Feb 2025
Popular Designations

11 Interview questions

A Senior Product Manager was asked 12mo ago
Q. How do you prioritize requirements?
Ans. 

I prioritize requirements based on business impact, customer needs, technical feasibility, and resource availability.

  • Evaluate each requirement based on its impact on business goals

  • Consider customer needs and feedback to prioritize features

  • Assess technical feasibility and resource availability for implementation

  • Use frameworks like MoSCoW method or Kano model for prioritization

  • Regularly review and adjust priorities ...

View all Senior Product Manager interview questions
A Technical Support Executive was asked
Q. Are you able to troubleshoot hardware and software, and do you have good knowledge of computers and networking?
Ans. 

Yes, I have good knowledge in troubleshooting both hardware and software issues as well as computer and networking.

  • I have experience in diagnosing and resolving hardware issues such as faulty RAM, hard drives, and power supplies.

  • I am proficient in troubleshooting software problems including operating system errors, driver issues, and software conflicts.

  • I have a strong understanding of networking concepts such as T...

View all Technical Support Executive interview questions
🔥 Asked by recruiter 2 times
A Software Developer was asked
Q. Given a doubly linked list where each node has two pointers: one pointing to the next node (like in a singly linked list) and another (arbitrary pointer) that can point to any node in the list. Write a prog...
Ans. 

Program to create a copy of a doubly linked list with an arbit pointer.

  • Traverse the original list and create a new node for each node in the list.

  • Store the mapping of original node to the new node in a hash table.

  • Traverse the original list again and set the next and arbit pointers of the new nodes.

  • Return the head of the new list.

View all Software Developer interview questions
A Software Developer was asked
Q. Write a program to determine if a number is prime using recursion.
Ans. 

A recursive function to check if a number is prime or not.

  • Create a function that takes a number as input.

  • Check if the number is less than 2, return false.

  • Check if the number is 2, return true.

  • Check if the number is divisible by any number less than it, return false.

  • If none of the above conditions are met, call the function recursively with the number minus 1.

View all Software Developer interview questions
A Software Developer was asked
Q. How can you prevent a man-in-the-middle attack over an insecure communication line without using encryption?
Ans. 

It is not possible to stop man in the middle attack over an insecure communication line without using any kind of encryption.

  • Without encryption, the communication line is inherently insecure and vulnerable to man-in-the-middle attacks.

  • One possible solution is to use a secure communication line, such as a VPN or a dedicated private network.

  • Another solution is to use digital signatures to verify the authenticity of ...

View all Software Developer interview questions
🔥 Asked by recruiter 2 times
A Software Developer was asked
Q. Implement the functionality for 1000 students taking an online test with a timer. Calculate the test start time and automatically stop the test when it ends. Handle scenarios like power failures, ensuring t...
Ans. 

Implement functionality for online test with timer and handle power failure scenarios

  • Create a timer function to track the time

  • Store the start time and end time of the test

  • Implement a backup system to save progress in case of power failure

  • Use a database to store test data and progress

  • Handle edge cases like internet connectivity issues

View all Software Developer interview questions
A Software Developer was asked
Q. Given the head of a singly linked list, reverse the list, and return the reversed list.
Ans. 

To reverse a linked list, we need to traverse the list and change the direction of the pointers.

  • Create three pointers: prev, curr, and next

  • Initialize prev to null, curr to head of the linked list, and next to null

  • Traverse the list and change the direction of the pointers: next = curr.next; curr.next = prev; prev = curr; curr = next;

  • Set the new head of the linked list to prev

View all Software Developer interview questions
Are these interview questions helpful?
A Software Developer was asked
Q. What is the difference between HTTP and HTTPS?
Ans. 

HTTP is unsecured while HTTPS is secured with SSL/TLS encryption.

  • HTTP stands for Hypertext Transfer Protocol while HTTPS stands for Hypertext Transfer Protocol Secure.

  • HTTP operates on port 80 while HTTPS operates on port 443.

  • HTTP is unencrypted while HTTPS is encrypted with SSL/TLS.

  • HTTPS provides authentication and data integrity while HTTP does not.

  • HTTPS is used for secure online transactions such as online banki...

View all Software Developer interview questions
A Software Developer was asked
Q. How can you stop a man-in-the-middle attack over an insecure communication line without using any kind of encryption?
Ans. 

It is not possible to stop man-in-the-middle attacks over an insecure communication line without encryption.

  • Encryption is the most effective way to prevent man-in-the-middle attacks.

  • Without encryption, an attacker can intercept and modify the communication.

  • Using encryption ensures that the data remains confidential and tamper-proof.

  • Other security measures like authentication and secure protocols can complement enc...

🔥 Asked by recruiter 2 times
A Software Developer was asked
Q. Heap memory and stack memory? Local variables are stored where? What is memory tables?
Ans. 

Heap and stack memory are two types of memory allocation in a program. Local variables are stored in stack memory. Memory tables are used to track memory allocation.

  • Heap memory is used for dynamic memory allocation, while stack memory is used for static memory allocation.

  • Local variables are stored in stack memory and are only accessible within the scope of the function they are declared in.

  • Memory tables are used t...

View all Software Developer interview questions

SHL Interview Experiences

15 interviews found

Interview Questionnaire 

8 Questions

  • Q1. Given a doubly linked list with one pointer of each node pointing to the next node just like in a singly linked list. The second pointer(arbit pointer) however can point to any node in the list and not jus...
  • Ans. 

    Program to create a copy of a doubly linked list with an arbit pointer.

    • Traverse the original list and create a new node for each node in the list.

    • Store the mapping of original node to the new node in a hash table.

    • Traverse the original list again and set the next and arbit pointers of the new nodes.

    • Return the head of the new list.

  • Answered by AI
  • Q2. Implement funcionality of 1000 of students giving a online test and timer is running. You have to calculate th etime when test is tarted and auto-matically stop the test when test is ended. Handle the scen...
  • Ans. 

    Implement functionality for online test with timer and handle power failure scenarios

    • Create a timer function to track the time

    • Store the start time and end time of the test

    • Implement a backup system to save progress in case of power failure

    • Use a database to store test data and progress

    • Handle edge cases like internet connectivity issues

  • Answered by AI
  • Q3. WAP of prime number using reursion?
  • Ans. 

    A recursive function to check if a number is prime or not.

    • Create a function that takes a number as input.

    • Check if the number is less than 2, return false.

    • Check if the number is 2, return true.

    • Check if the number is divisible by any number less than it, return false.

    • If none of the above conditions are met, call the function recursively with the number minus 1.

  • Answered by AI
  • Q4. Reverse a linked list?
  • Ans. 

    To reverse a linked list, we need to traverse the list and change the direction of the pointers.

    • Create three pointers: prev, curr, and next

    • Initialize prev to null, curr to head of the linked list, and next to null

    • Traverse the list and change the direction of the pointers: next = curr.next; curr.next = prev; prev = curr; curr = next;

    • Set the new head of the linked list to prev

  • Answered by AI
  • Q5. Some sql related questions – not very tough : some inner joins and self join based?
  • Q6. How can you stop man in the middle attack over an insecure communication line without using any kind of encryption ?
  • Ans. 

    It is not possible to stop man in the middle attack over an insecure communication line without using any kind of encryption.

    • Without encryption, the communication line is inherently insecure and vulnerable to man-in-the-middle attacks.

    • One possible solution is to use a secure communication line, such as a VPN or a dedicated private network.

    • Another solution is to use digital signatures to verify the authenticity of the c...

  • Answered by AI
  • Q7. What is the difference between http and https?
  • Ans. 

    HTTP is unsecured while HTTPS is secured with SSL/TLS encryption.

    • HTTP stands for Hypertext Transfer Protocol while HTTPS stands for Hypertext Transfer Protocol Secure.

    • HTTP operates on port 80 while HTTPS operates on port 443.

    • HTTP is unencrypted while HTTPS is encrypted with SSL/TLS.

    • HTTPS provides authentication and data integrity while HTTP does not.

    • HTTPS is used for secure online transactions such as online banking, e...

  • Answered by AI
  • Q8. Heap memory and stack memory? Local variables are stored where? What is memory tables?
  • Ans. 

    Heap and stack memory are two types of memory allocation in a program. Local variables are stored in stack memory. Memory tables are used to track memory allocation.

    • Heap memory is used for dynamic memory allocation, while stack memory is used for static memory allocation.

    • Local variables are stored in stack memory and are only accessible within the scope of the function they are declared in.

    • Memory tables are used to kee...

  • Answered by AI

Interview Preparation Tips

Round: Technical Interview
Experience: Finally, I got offer from Aspiring Minds after 15 days of negotiation.

Skills: data structure, Algorithm
College Name: na

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test was online test

Round 2 - HR 

(1 Question)

  • Q1. HR round was introductory round
Round 3 - One-on-one 

(1 Question)

  • Q1. One -on-one was with hiring manager
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. How do you prioritize requirements?
  • Ans. 

    I prioritize requirements based on business impact, customer needs, technical feasibility, and resource availability.

    • Evaluate each requirement based on its impact on business goals

    • Consider customer needs and feedback to prioritize features

    • Assess technical feasibility and resource availability for implementation

    • Use frameworks like MoSCoW method or Kano model for prioritization

    • Regularly review and adjust priorities based...

  • Answered by AI
  • Q2. Best product experience you have got till date?
  • Ans. 

    The best product experience I've had was with the Apple iPhone, which seamlessly integrates hardware and software for user satisfaction.

    • Intuitive user interface: The iPhone's design allows for easy navigation, making it accessible for all age groups.

    • Ecosystem integration: The seamless connection with other Apple products, like the Apple Watch and MacBook, enhances usability.

    • Regular updates: Consistent software updates ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview and just 1 major question regarding prioritization. Rest were about past experience
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Behavioral question will be asked mostly scenario based

Round 2 - Case Study 

Behavioral question asked basically scenerio based

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. Tell current job responsibilities and expectations.
  • Ans. 

    As an Assistant Manager, my current job responsibilities include overseeing daily operations, managing staff, ensuring customer satisfaction, and implementing company policies.

    • Overseeing daily operations of the department or team

    • Managing and supervising staff members

    • Ensuring customer satisfaction and resolving any issues or complaints

    • Implementing company policies and procedures

    • Monitoring and analyzing performance metri...

  • Answered by AI
  • Q2. Sell yourself and why should take you?
  • Ans. 

    I am a highly motivated and experienced professional with strong leadership skills and a proven track record of success.

    • I have a solid background in management, with X years of experience in a similar role.

    • I have a strong ability to motivate and inspire a team, leading to increased productivity and customer satisfaction.

    • I am skilled in problem-solving and decision-making, always finding effective solutions to challenge...

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell current job responsibilities and expectations.
  • Ans. 

    As an Assistant Manager, my current job responsibilities include overseeing daily operations, managing staff, ensuring customer satisfaction, and implementing company policies.

    • Oversee daily operations of the department or team

    • Manage and supervise staff, including hiring, training, and performance evaluations

    • Ensure customer satisfaction by addressing complaints and resolving issues

    • Implement company policies and procedur...

  • Answered by AI
  • Q2. Sell me yourself and why should I take you?
  • Ans. 

    Experienced and motivated Assistant Manager with a proven track record of success in driving team performance and achieving business goals.

    • Strong leadership skills and ability to motivate and inspire team members

    • Excellent problem-solving and decision-making abilities

    • Proven track record of achieving sales targets and improving customer satisfaction

    • Effective communication and interpersonal skills

    • Ability to adapt to chang...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - First go through your resume then job description.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Moderate , easy and basic questions

Round 2 - Coding Test 

Debugging problem , language is your choice

Interview Preparation Tips

Interview preparation tips for other job seekers - It's just amcat
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Oct 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Manual and api database testing agile
Round 3 - HR 

(1 Question)

  • Q1. Expected and benefits
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. What are you working currently?
  • Q2. Are you able to troubleshoot the hardware and software or have good knowledge in computer and Networking?
  • Ans. 

    Yes, I have good knowledge in troubleshooting both hardware and software issues as well as computer and networking.

    • I have experience in diagnosing and resolving hardware issues such as faulty RAM, hard drives, and power supplies.

    • I am proficient in troubleshooting software problems including operating system errors, driver issues, and software conflicts.

    • I have a strong understanding of networking concepts such as TCP/IP...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try hard and never give up and never loose hope on what you are working or studying.

Skills evaluated in this interview

I applied via Indeed and was interviewed in Mar 2022. There were 5 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 - One-on-one 

(1 Question)

  • Q1. Had an interview with company AVP assessing my ability and role fitment
Round 3 - One-on-one 

(1 Question)

  • Q1. Had an interview with commercial director again assessing my cabality and job fitment
Round 4 - Aptitude Test 

Appeared in one pschyomentric test varifying scientifically how good am i in various aspects of job

Round 5 - One-on-one 

(1 Question)

  • Q1. Had a discussion with MD and ceo for almost 45 minutes testing my reach and undersranding on my business domain

Interview Preparation Tips

Interview preparation tips for other job seekers - Shl is a global brand and they follow standard procedure to hire. You will enjoy the entire process here.

Data Engineer Interview Questions & Answers

user image Preetanshu Shukla

posted on 17 Aug 2022

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 - Technical 

(2 Questions)

  • Q1. Spark scala questions
  • Q2. Sql queries normal joins

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn spark scala .
Glue questions are asked.
Sql is mandatory.

I applied via Approached by company and was interviewed in Aug 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Normal easy leetcode question you want i can share u all the possible question they can ask or for other companies also

Every company focus on DS algo. Prepare array, string, and dynamic programming question

Round 2 - Coding Test 

That will be on technology specific like angular, react

Round 3 - Behavioral 

(1 Question)

  • Q1. They will ask you general question like problem you faced during your work and soln to solve that problem

Interview Preparation Tips

Topics to prepare for SHL India Front end Developer interview:
  • Array
  • String
  • Ds algo
Interview preparation tips for other job seekers - Imp thing is ds algo if you able to code or explain the logic

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about SHL?
Ask anonymously on communities.

SHL Interview FAQs

How many rounds are there in SHL interview?
SHL interview process usually has 2-3 rounds. The most common rounds in the SHL interview process are One-on-one Round, Resume Shortlist and Aptitude Test.
How to prepare for SHL interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at SHL. The most common topics and skills that interviewers at SHL expect are HTML, JIRA, Recruitment, AWS and Communication Skills.
What are the top questions asked in SHL interview?

Some of the top questions asked at the SHL interview -

  1. Given a doubly linked list with one pointer of each node pointing to the next n...read more
  2. Implement funcionality of 1000 of students giving a online test and timer is ru...read more
  3. How can you stop man in the middle attack over an insecure communication line w...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 9 interview experiences

Difficulty level

Easy 50%
Hard 50%

Duration

Less than 2 weeks 100%
View more
Join SHL Transforming Workplaces Around the World

SHL Reviews and Ratings

based on 244 reviews

3.5/5

Rating in categories

3.1

Skill development

3.3

Work-life balance

3.4

Salary

3.2

Job security

3.4

Company culture

2.8

Promotions

3.2

Work satisfaction

Explore 244 Reviews and Ratings
Senior Software Engineer

Gurgaon / Gurugram

4-6 Yrs

₹ 18.5-25 LPA

Qa Engineer

Gurgaon / Gurugram

3-5 Yrs

₹ 10.6-11 LPA

Qa Lead

Gurgaon / Gurugram

6-8 Yrs

Not Disclosed

Explore more jobs
Software Engineer
95 salaries
unlock blur

₹6 L/yr - ₹22 L/yr

Associate Software Engineer
58 salaries
unlock blur

₹6.7 L/yr - ₹13 L/yr

QA Engineer
44 salaries
unlock blur

₹9.3 L/yr - ₹15.5 L/yr

Senior Software Engineer
44 salaries
unlock blur

₹10.5 L/yr - ₹34.5 L/yr

Manager
34 salaries
unlock blur

₹5.7 L/yr - ₹19.5 L/yr

Explore more salaries
Compare SHL with

Financial Software & Systems

3.8
Compare

Ramco Systems

3.9
Compare

IBS Software Services

3.6
Compare

Nucleus Software Exports

3.5
Compare
write
Share an Interview