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 Technical Consultant Interview Questions and Answers

Updated 24 Feb 2025

Sutherland Global Services Technical Consultant Interview Experiences

2 interviews found

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

I was interviewed before Feb 2024.

Round 1 - Group Discussion 

Mainly Related with English Proficiency You'll be given a topic and asked to elaborate

Round 2 - Technical 

(2 Questions)

  • Q1. Explain Windows RT
  • Ans. 

    Windows RT is a discontinued operating system for ARM-based devices.

    • Developed by Microsoft for tablets and PCs

    • Limited to apps from Windows Store

    • Does not support traditional desktop applications

    • Discontinued in 2015

  • Answered by AI
  • Q2. Explain about Windows 8.1 (Was Newly Released at that time)
  • Ans. 

    Windows 8.1 is the updated version of Windows 8, with improvements in user interface, features, and performance.

    • Introduced Start button for easier navigation

    • Improved multitasking capabilities with split-screen view

    • Enhanced search functionality with Bing integration

    • Updated apps and better customization options

    • Increased security features like built-in antivirus software

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It will be based on your computer knowledge

I was interviewed in Jan 2017.

Interview Questionnaire 

2 Questions

  • Q1. Tell something about yourself
  • Q2. Your job responsibilities

Interview Preparation Tips

Round: Technical + HR Interview
Experience: Description of my self & my previous company
Tips: Be alert what you say

Technical Consultant Interview Questions Asked at Other Companies

asked in Mastek
Q1. Oops C and java difference Query for selecting all columns from a ... read more
Q2. What are the real time applications of spring concept in java?
asked in HCLTech
Q3. What is difference between family ipv6 route-target and default-r ... read more
asked in PwC
Q4. If I give you a new tool can you cope with it
asked in HCLTech
Q5. Why we received sngl collisions error on port what's the issue an ... read more

What people are saying about Sutherland Global Services

View All
a sme
1w
How much can we ask for a SME role with 8 years of experience in Healthcare??
Got a question about Sutherland Global Services?
Ask anonymously on communities.

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company

Round 1 - Technical 

(4 Questions)

  • Q1. Tell me about your framework
  • Ans. 

    My framework is a comprehensive set of tools, libraries, and best practices that I use to streamline the development process and ensure high-quality deliverables.

    • Utilizes design patterns such as MVC for structuring code

    • Includes libraries for common tasks like data manipulation and networking

    • Emphasizes unit testing and continuous integration for code quality

    • Integrates with popular tools like Git for version control

    • Suppo...

  • Answered by AI
  • Q2. Type of selenium waits
  • Ans. 

    Types of Selenium waits include implicit, explicit, and fluent waits.

    • Implicit wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit wait: Waits for a certain condition to occur before proceeding further.

    • Fluent wait: Waits for a condition to be true with a defined polling frequency.

    • Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

  • Answered by AI
  • Q3. Xpath and CSS difference
  • Ans. 

    XPath is used to navigate through XML documents, while CSS is used to style HTML elements.

    • XPath is more powerful and flexible for navigating XML documents

    • CSS is more commonly used for styling HTML elements

    • XPath uses path expressions to select nodes in an XML document

    • CSS uses selectors to target specific HTML elements

  • Answered by AI
  • Q4. Coding to check list

Interview Preparation Tips

Interview preparation tips for other job seekers - Share whatever you know. dont create fake answers

Skills evaluated in this interview

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

Basic English and General aptitude questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed before Nov 2023.

Round 1 - Technical 

(3 Questions)

  • Q1. SImple salesforce question
  • Q2. They will give 2 coding question
  • Q3. NAAAAAAaaaaaaaaaaaa
Round 2 - HR 

(2 Questions)

  • Q1. Simple introduction
  • Q2. Salary discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Delete vs Drop in sql?
  • Ans. 

    DELETE is used to remove rows from a table while keeping the table structure intact. DROP is used to remove an entire table from the database.

    • DELETE is a DML (Data Manipulation Language) command, while DROP is a DDL (Data Definition Language) command.

    • DELETE can be rolled back, while DROP cannot be rolled back.

    • Example: DELETE FROM table_name WHERE condition; DROP TABLE table_name;

  • Answered by AI
  • Q2. Autocalender, duicate vs refrence in power bi
  • Ans. 

    Autocalender creates a date table automatically, while duplicate creates a copy of a table and reference creates a linked table in Power BI.

    • Autocalender automatically generates a date table based on the data in your model.

    • Duplicate creates a copy of a table with the same data and structure.

    • Reference creates a linked table that shares the same data as the original table.

    • Autocalender is useful for quickly creating date t...

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Job Portal and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Is live data is life cycle aware. If it's aware what does ViewModel do?
  • Ans. 

    Yes

    • LiveData is lifecycle aware and can be used to observe changes in data.

    • ViewModel provides a way to store and manage UI-related data across configuration changes.

    • ViewModel can hold LiveData objects to provide data to the UI.

    • LiveData and ViewModel work together to ensure data consistency and prevent memory leaks.

  • Answered by AI
  • Q2. How does viewmodel survive when activity is destroyed on configuration?
  • Ans. 

    The ViewModel survives configuration changes by being retained by the system.

    • ViewModels are designed to survive configuration changes like screen rotations or language changes.

    • When an activity is destroyed and recreated, the ViewModel is not destroyed and retains its data.

    • The ViewModel is associated with the activity's lifecycle and is retained until the activity is finished.

    • The retained ViewModel instance can be acces...

  • Answered by AI
  • Q3. Advantage of mvp over mvc.
  • Ans. 

    MVP offers better separation of concerns and easier unit testing compared to MVC.

    • MVP separates the presentation layer from the business logic, making it easier to maintain and modify the codebase.

    • MVP allows for easier unit testing as the presenter can be tested independently from the view.

    • MVP provides better decoupling between components, enabling easier code reuse and scalability.

    • MVP promotes a clear separation of con...

  • Answered by AI
  • Q4. How does SSL pinning works?
  • Ans. 

    SSL pinning is a security technique that ensures a client only communicates with a server using a pre-defined public key.

    • SSL pinning involves hardcoding the server's public key in the client's code or configuration.

    • During the SSL handshake, the client checks if the server's public key matches the pinned key.

    • If the keys match, the connection is established; otherwise, it is rejected.

    • Pinning prevents man-in-the-middle at

  • Answered by AI
  • Q5. How do you achieve data security when saving data persistanly.
  • Ans. 

    Data security can be achieved through encryption, access controls, backups, and regular security audits.

    • Encrypt sensitive data using strong encryption algorithms.

    • Implement access controls to restrict unauthorized access to the data.

    • Regularly backup the data to prevent data loss.

    • Conduct regular security audits to identify and fix vulnerabilities.

    • Use secure protocols and communication channels for data transfer.

    • Implement...

  • Answered by AI
  • Q6. Where to save encription key?
  • Ans. 

    Encryption keys should be securely stored in a separate key management system.

    • Encryption keys should not be stored alongside the encrypted data.

    • Use a dedicated key management system (KMS) to store and manage encryption keys.

    • Implement strong access controls and authentication mechanisms for the KMS.

    • Consider using hardware security modules (HSMs) for added security.

    • Regularly rotate encryption keys to minimize the impact

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare your current implementation projected thoroughly.

Skills evaluated in this interview

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 - Aptitude Test 

Regular engineering basics and some logical questions

Round 3 - Technical 

(2 Questions)

  • Q1. Some technical questions related to BE
  • Q2. Micro controller and Mocro processor working
  • Ans. 

    Microcontrollers are integrated circuits that contain a processor core, memory, and programmable input/output peripherals, while microprocessors are just the processor core.

    • Microcontrollers are used in embedded systems and have all components on a single chip.

    • Microprocessors require external components like memory and peripherals to function.

    • Examples of microcontrollers include Arduino, PIC, and Raspberry Pi.

    • Examples o...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. About yourself, future plans, about the company that you want to jojn

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jul 2023. There were 4 interview rounds.

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

(2 Questions)

  • Q1. Related to profiles
  • Q2. Related to job profile
Round 3 - HR 

(1 Question)

  • Q1. Salary and type of job
Round 4 - HR 

(1 Question)

  • Q1. Related your past experience
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Nov 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

There will be ask 30 MCQ's in 30 minutes when I was attend for Aptitude test
It was conducted virtual

Round 3 - Coding Test 

There will be 2 coding questions asked we have to complete one of it .If we practice well very easy to clear .

Round 4 - Technical 

(7 Questions)

  • Q1. In my case Technical & HR both conducted in same time it starts with introduction and later some behavioural questions and after that some basic Technical questions.
  • Q2. 1.Tell me about yourself ?
  • Ans. 

    I am a highly motivated individual with a passion for technology and problem-solving.

    • I have a degree in Computer Science and have completed several internships in the tech industry.

    • I am proficient in programming languages such as Java and Python.

    • I enjoy working in a team environment and collaborating to find innovative solutions.

    • In my free time, I enjoy tinkering with new technologies and building personal projects.

    • I a...

  • Answered by AI
  • Q3. 2.What are your strengths & weakness?
  • Ans. 

    My strengths include problem-solving, adaptability, and teamwork. My weakness is public speaking.

    • Strengths: problem-solving (e.g. finding solutions to complex technical issues), adaptability (e.g. quickly adjusting to new technologies or work environments), teamwork (e.g. collaborating effectively with colleagues)

    • Weakness: public speaking (e.g. nervousness when presenting to large groups)

  • Answered by AI
  • Q4. 3.What are Constructors?
  • Ans. 

    Constructors are special methods used to initialize objects in a class.

    • Constructors have the same name as the class they belong to.

    • They are called automatically when an object is created.

    • They can be used to set default values for object properties.

    • Constructors can be overloaded to accept different parameters.

    • Example: public class Car { public Car() { //default constructor } public Car(String make) { //overloaded constr

  • Answered by AI
  • Q5. 4 .Write a program on floating numbers in java?
  • Ans. 

    A program on floating numbers in Java.

    • Declare a variable with float or double data type.

    • Perform arithmetic operations on floating point numbers.

    • Use formatting options to display floating point numbers.

    • Be aware of precision and rounding errors.

  • Answered by AI
  • Q6. 5.What are your hobbies?
  • Ans. 

    I enjoy reading, hiking, and playing board games.

    • Reading: I love getting lost in a good book, especially science fiction and fantasy.

    • Hiking: I enjoy exploring new trails and challenging myself physically.

    • Board games: I like playing strategy games with friends and family, such as Settlers of Catan and Ticket to Ride.

  • Answered by AI
  • Q7. 6.Anything else you want to ask ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Just prepare all basic concepts and practice some simple codes they will select you .
All the best .

Skills evaluated in this interview

Sutherland Global Services Interview FAQs

How many rounds are there in Sutherland Global Services Technical Consultant interview?
Sutherland Global Services interview process usually has 2 rounds. The most common rounds in the Sutherland Global Services interview process are Group Discussion and Technical.
How to prepare for Sutherland Global Services Technical Consultant 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 Payroll, Cloud, HRMS, Oracle and SAAS.
What are the top questions asked in Sutherland Global Services Technical Consultant interview?

Some of the top questions asked at the Sutherland Global Services Technical Consultant interview -

  1. Explain about Windows 8.1 (Was Newly Released at that ti...read more
  2. Explain Windows...read more

Tell us how to improve this page.

Sutherland Global Services Technical Consultant Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Sutherland Global Services We are a digital transformation company. We make digital 𝐡𝐮𝐦𝐚𝐧™
Sutherland Global Services Technical Consultant Salary
based on 37 salaries
₹1.4 L/yr - ₹5.2 L/yr
73% less than the average Technical Consultant Salary in India
View more details

Sutherland Global Services Technical Consultant Reviews and Ratings

based on 23 reviews

4.0/5

Rating in categories

3.3

Skill development

3.9

Work-life balance

3.1

Salary

3.0

Job security

3.9

Company culture

3.2

Promotions

3.9

Work satisfaction

Explore 23 Reviews and Ratings
Associate
2.3k salaries
unlock blur

₹1.1 L/yr - ₹7.4 L/yr

Senior Associate
1.8k salaries
unlock blur

₹1.8 L/yr - ₹7.8 L/yr

Customer Service Associate
1.6k salaries
unlock blur

₹1 L/yr - ₹5.5 L/yr

Associate Manager
846 salaries
unlock blur

₹3.3 L/yr - ₹13.8 L/yr

Customer Service Executive
672 salaries
unlock blur

₹1.2 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