Premium Employer

i

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

Sutherland Global Services Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Sutherland Global Services CS Associate Interview Questions and Answers

Updated 9 May 2024

Sutherland Global Services CS Associate Interview Experiences

3 interviews found

CS Associate Interview Questions & Answers

user image Hafiz Rahman

posted on 10 Nov 2023

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Oct 2023. There were 2 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 - Telephonic Call 

(3 Questions)

  • Q1. 1. Introduce 2. Why this specific company 3. Why this job 4. Do you have pg or abroad plans
  • Ans. 

    I am a highly motivated and skilled CS professional with a passion for technology and problem-solving.

    • I have a strong background in computer science with experience in various programming languages such as Java, Python, and C++.

    • I am particularly interested in this company because of its innovative projects and reputation for fostering a collaborative work environment.

    • I believe this job aligns perfectly with my skills a...

  • Answered by AI
  • Q2. 1.why sutherland 2.do you have pg or abroad plans 3.why this job 4.introduce
  • Ans. 

    I chose Sutherland for its reputation in the industry, opportunities for growth, and positive work culture.

    • Sutherland has a strong reputation in the industry for providing quality services and solutions.

    • I believe Sutherland offers great opportunities for career growth and development.

    • I have heard positive feedback about the work culture at Sutherland, which aligns with my values and goals.

    • I am excited about the chance ...

  • Answered by AI
  • Q3. 1.introduce 2.why this job 3.why sutherland

Interview Preparation Tips

Topics to prepare for Sutherland Global Services CS Associate interview:
  • It was good
Interview preparation tips for other job seekers - Keep your resume a updated and attractive such as including more skills in communication technical leadership problem solving etc , work experience so that you can get more exposure and can develop a personality adapting the different environments in work space. Try to make more network connection.

CS Associate Interview Questions & Answers

user image Mohammed Riyaz

posted on 9 May 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Tell about yourself

CS Associate Interview Questions Asked at Other Companies

Q1. How can face challenges with customer
Q2. How can resolve customer issues
Q3. What you plan 5 years sown the line
asked in Delhivery
Q4. Flexible with travel or not

CS Associate Interview Questions & Answers

user image Anonymous

posted on 18 May 2022

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. My self's About the company Details about me

Interview Preparation Tips

Interview preparation tips for other job seekers - No everything is good to understand

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Medium level leet code questions and general system design questions

Round 2 - Technical 

(2 Questions)

  • Q1. System design fundamentals
  • Q2. Leet code dp question
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at J S S Academy of Technical Education, Bangalore and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Average to easy difficulty level.

Round 2 - Technical 

(3 Questions)

  • Q1. Java code of string manipulation
  • Ans. 

    String manipulation in Java involves various methods like substring, concat, replace, etc.

    • Use substring() to extract a part of the string

    • Use concat() to concatenate two strings

    • Use replace() to replace a specific character or substring in a string

  • Answered by AI
  • Q2. What is the Java code for various types of sorting algorithms?
  • Ans. 

    Various sorting algorithms in Java code

    • Bubble Sort: int[] arr = {5, 2, 8, 1, 3}; Arrays.sort(arr);

    • Selection Sort: int[] arr = {5, 2, 8, 1, 3}; Arrays.sort(arr);

    • Insertion Sort: int[] arr = {5, 2, 8, 1, 3}; Arrays.sort(arr);

    • Merge Sort: int[] arr = {5, 2, 8, 1, 3}; Arrays.sort(arr);

    • Quick Sort: int[] arr = {5, 2, 8, 1, 3}; Arrays.sort(arr);

  • Answered by AI
  • Q3. Sql query and topics related to joins.
Round 3 - HR 

(4 Questions)

  • Q1. About yourself and family
  • Q2. What do you know about the company?
  • Ans. 

    The company is a leading software development firm specializing in creating innovative solutions for various industries.

    • Specializes in creating innovative software solutions

    • Works with clients from various industries

    • Known for high-quality and reliable products

    • Has a strong team of software engineers and developers

  • Answered by AI
  • Q3. Can you provide examples of real-life scenarios where you handled conflicts with either a colleague or a manager?
  • Ans. 

    Handled conflicts by addressing issues directly, seeking compromise, and maintaining professionalism.

    • Addressed a disagreement with a colleague by scheduling a one-on-one meeting to discuss concerns and find common ground.

    • Resolved a conflict with a manager by actively listening to their perspective, providing feedback, and working together to find a solution.

    • Maintained professionalism during conflicts by staying calm, r...

  • Answered by AI
  • Q4. What actions would you take if your manager does not approve your product idea, and how would you attempt to persuade them?
  • Ans. 

    I would gather more data to support my idea, present a compelling case to my manager, and be open to feedback and compromise.

    • Gather data to support the idea, such as market research, user feedback, or cost-benefit analysis.

    • Prepare a well-structured presentation highlighting the potential benefits of the product idea.

    • Listen to the manager's concerns and feedback, and be open to making adjustments or compromises.

    • Seek sup...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident; they will strive to comfort you despite any feelings of hesitation and nervousness. A foundational understanding of Java or C++, along with knowledge of data structures and algorithms (DSA), will be extremely advantageous. You should illustrate your potential contributions while also recognizing your limitations. Foster a positive atmosphere.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Topics on electronics and C programming

Round 2 - Technical 

(4 Questions)

  • Q1. Questions on simple python programs and electronics basics
  • Q2. Question on simple linked list
  • Q3. Program for fibonacci seq
  • Ans. 

    Program to generate Fibonacci sequence

    • Start with two initial numbers, 0 and 1

    • Add the previous two numbers to get the next number in the sequence

    • Repeat this process to generate the Fibonacci sequence

    • Example: 0, 1, 1, 2, 3, 5, 8, 13, ...

  • Answered by AI
  • Q4. Questions on mosfets
Round 3 - HR 

(1 Question)

  • Q1. Why you would like to join the company, and other questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experience in the interview
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. All about angular framework and Typescript
  • Q2. Javascript precoded question
Round 2 - Technical 

(3 Questions)

  • Q1. In this round as well as Angular related question
  • Q2. Lifecycle hook of angular
  • Ans. 

    Lifecycle hooks in Angular are methods that allow you to tap into the lifecycle of a component or directive.

    • Lifecycle hooks include ngOnInit, ngOnChanges, ngDoCheck, ngOnDestroy, etc.

    • ngOnInit is used for initialization logic, ngOnChanges is used for reacting to input changes, ngOnDestroy is used for cleanup tasks, etc.

    • Example: ngOnInit() { console.log('Component initialized'); }

  • Answered by AI
  • Q3. Lazy loading concept

Skills evaluated in this interview

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

I applied via campus placement at Lovely Professional University (LPU) and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It contain 40 question which is very easy

Round 2 - Coding Test 

It contain 3 coding question

Round 3 - One-on-one 

(5 Questions)

  • Q1. Introduction About Your Self and About Project
  • Q2. Two dsa question of leetcode
  • Q3. Basics Concept on dsa
  • Q4. From which platform you do coding
  • Q5. Simple Simple Question

Interview Preparation Tips

Topics to prepare for Nagarro Associate Software Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Very good company
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a detail-oriented individual with a strong background in data analysis and process improvement.

    • I have a Bachelor's degree in Business Administration with a focus on operations management.

    • I have experience working as a data analyst, where I improved efficiency by streamlining processes.

    • I am proficient in Excel, SQL, and data visualization tools like Tableau.

    • I am a quick learner and enjoy taking on new challenges.

  • Answered by AI
  • Q2. Which is the most memorable day in your life?
  • Ans. 

    The day I graduated from college

    • Feeling of accomplishment after years of hard work

    • Celebrating with friends and family

    • Reflecting on the journey and looking forward to the future

  • Answered by AI
Round 2 - Versant 

(1 Question)

  • Q1. Voice based question through a software
Round 3 - Technical 

(4 Questions)

  • Q1. Tell me about yourself?
  • Ans. 

    I am a detail-oriented individual with a background in data analysis and strong problem-solving skills.

    • Graduated with a degree in Business Administration

    • Worked as a data analyst for XYZ Company

    • Proficient in Excel and data visualization tools

    • Strong analytical and problem-solving skills

    • Excellent attention to detail

  • Answered by AI
  • Q2. How was your last birthday?
  • Ans. 

    My last birthday was spent with close friends and family, enjoying a delicious meal and exchanging thoughtful gifts.

    • Celebrated with close friends and family

    • Enjoyed a delicious meal

    • Exchanged thoughtful gifts

  • Answered by AI
  • Q3. Are you comfortable with night shifts? Have you discussed this in your family?
  • Ans. 

    Yes, I am comfortable with night shifts and have discussed it with my family.

    • I am comfortable working night shifts as I have done so in previous roles.

    • I have discussed the possibility of working night shifts with my family and they are supportive.

    • I understand the importance of maintaining a healthy work-life balance even with night shifts.

  • Answered by AI
  • Q4. How was your day today? What did you observe throughout the day?
  • Ans. 

    My day was busy but productive. I observed a lot of teamwork and collaboration among colleagues.

    • Started the day with a team meeting to discuss goals and priorities

    • Worked on various tasks with different team members throughout the day

    • Witnessed effective communication and problem-solving skills in action

    • Noticed a positive and supportive work environment

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Well, preparing for an interview is not so easy because we do not have any idea of the questions we will be asked. Still, I would suggest that you research about the company first like, location, expertise or skills required if you're not a fresher. And if you're a fresher all you can do is practice some important questions that improves your communication and confidence.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Indeed and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Find largest and smallest from an array
  • Q2. Reverse an array
  • Q3. Print your name in reverse

Sutherland Global Services Interview FAQs

How many rounds are there in Sutherland Global Services CS Associate interview?
Sutherland Global Services interview process usually has 1-2 rounds. The most common rounds in the Sutherland Global Services interview process are HR, Resume Shortlist and Telephonic Call.
How to prepare for Sutherland Global Services CS Associate 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 Sutherland Global Services. The most common topics and skills that interviewers at Sutherland Global Services expect are voice process, Bpo Voice, Communication Skills, Customer Relationship and Customer Service.

Tell us how to improve this page.

Sutherland Global Services CS Associate Interview Process

based on 6 interviews

Interview experience

4.5
  
Good
View more
Join Sutherland Global Services We are a digital transformation company. We make digital 𝐡𝐮𝐦𝐚𝐧™

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
Teleperformance Interview Questions
3.9
 • 1.8k Interviews
View all
Sutherland Global Services CS Associate Salary
based on 481 salaries
₹1 L/yr - ₹5 L/yr
6% less than the average CS Associate Salary in India
View more details

Sutherland Global Services CS Associate Reviews and Ratings

based on 82 reviews

3.9/5

Rating in categories

3.5

Skill development

3.7

Work-life balance

3.4

Salary

3.3

Job security

3.8

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 82 Reviews and Ratings
Associate
2.3k salaries
unlock blur

₹1.1 L/yr - ₹6.7 L/yr

Senior Associate
1.8k salaries
unlock blur

₹1.9 L/yr - ₹8 L/yr

Customer Service Associate
1.6k salaries
unlock blur

₹1 L/yr - ₹5.5 L/yr

Associate Manager
993 salaries
unlock blur

₹4.5 L/yr - ₹14.1 L/yr

Process Associate
696 salaries
unlock blur

₹1.4 L/yr - ₹5 L/yr

Explore more salaries
Compare Sutherland Global Services with

Genpact

3.8
Compare

Concentrix Corporation

3.8
Compare

Teleperformance

3.9
Compare

Wipro

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