Upload Button Icon Add office photos

Filter interviews by

WM Global Technology Services India Pvt.Ltd Interview Questions, Process, and Tips

Updated 1 Mar 2025

Top WM Global Technology Services India Pvt.Ltd Interview Questions and Answers

WM Global Technology Services India Pvt.Ltd Interview Experiences

Popular Designations

8 interviews found

Team Lead Interview Questions & Answers

user image abdul gafoor M N

posted on 27 Dec 2024

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

Coding test video interview,
LLD round
HLD round
Managerial round

Round 2 - One-on-one 

(1 Question)

  • Q1. Design cache lru
Round 3 - One-on-one 

(1 Question)

  • Q1. HLD on distributed cache

Team Lead Interview Questions asked at other Companies

Q1. write a java program to get maxing profit by buying and selling a share from a given set of values (they will change the question after you give solution, like if consider buying only once and selling once they will say to buying multiple t... read more
View answer (3)

Manager Interview Questions & Answers

user image Anonymous

posted on 1 Mar 2025

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected
Round 1 - Aptitude Test 

It is an aptitude test consisting of various types of questions with multiple answer options.

Round 2 - Technical 

(2 Questions)

  • Q1. Technical questions
  • Q2. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Internal referrals will be more beneficial.

Manager Interview Questions asked at other Companies

Q1. There is a chairman of a conglomerate. He has been on the post for 10 years, and is extremely dominating. He treats the various business heads like children, not letting them take any major decision. While the chairman has negatives, he bel... read more
View answer (2)

Software Engineer Interview Questions & Answers

user image Ayush Naithani

posted on 17 Dec 2024

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

(1 Question)

  • Q1. Design blocking queue
  • Ans. 

    Blocking queue is a data structure that supports operations such as enqueue and dequeue with the added feature of blocking when the queue is full or empty.

    • Use a mutex or semaphore to control access to the queue to ensure thread safety

    • Implement a condition variable to block threads when the queue is full or empty

    • Consider using a circular buffer to efficiently manage the queue's elements

  • Answered by AI

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (225)

Interview Questions & Answers

user image Boga Sandya Rani

posted on 26 Dec 2024

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 Nov 2024. There was 1 interview round.

Round 1 - Online interview 

(1 Question)

  • Q1. Questions related to Data Annotation and projects

WM Global Technology Services India Pvt.Ltd interview questions for popular designations

 Software Developer

 (2)

 Manager

 (1)

 Software Engineer

 (1)

 Senior Software Engineer

 (1)

 Team Lead

 (1)

 Software Engineer III

 (1)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 

(1 Question)

  • Q1. Swap strings in an array
  • Ans. 

    Swap two strings in an array

    • Identify the two strings to be swapped

    • Use a temporary variable to hold one of the strings

    • Assign the value of the second string to the first string

    • Assign the value of the temporary variable to the second string

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. What is different between functional and procedural programming language
  • Ans. 

    Functional programming focuses on computation through functions while procedural programming focuses on step-by-step instructions.

    • Functional programming is declarative while procedural programming is imperative

    • Functional programming avoids side effects while procedural programming allows them

    • Functional programming emphasizes immutability while procedural programming emphasizes mutability

    • Examples of functional programmi...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What is your salary expectation
  • Ans. 

    My salary expectation is in line with industry standards and commensurate with my experience and skills.

    • I have researched the market rates for this position and my qualifications

    • I am open to negotiation based on the overall compensation package

    • I am looking for a fair and competitive salary that reflects my value to the company

  • Answered by AI

Skills evaluated in this interview

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
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 before Feb 2023. There were 3 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Trapping Rainwater
Round 2 - One-on-one 

(2 Questions)

  • Q1. Multithreading in Java
  • Ans. 

    Multithreading in Java allows multiple threads to execute concurrently, improving performance and responsiveness.

    • Multithreading in Java is achieved by extending the Thread class or implementing the Runnable interface.

    • Threads share the same memory space, so synchronization is important to prevent data corruption.

    • Java provides synchronized keyword, locks, and concurrent data structures for thread safety.

    • Example: Creating...

  • Answered by AI
  • Q2. HLD of order processing system
  • Ans. 

    The High-Level Design (HLD) of an order processing system involves outlining the overall architecture and components of the system.

    • Identify the main components of the system such as order creation, order validation, order fulfillment, and order tracking.

    • Define the interactions between these components and how data flows between them.

    • Consider scalability, fault tolerance, and performance requirements in the design.

    • Inclu...

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

(1 Question)

  • Q1. Behavioral questions

Skills evaluated in this interview

Software Engineer III Interview Questions asked at other Companies

Q1. Find the highest floor, from where if an egg is dropped will not break. k floor building and n eggs are given.
View answer (2)

Jobs at WM Global Technology Services India Pvt.Ltd

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

I applied via Job Portal and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Coding Test 

60 min duration
hackerrank

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (43)
Interview experience
4
Good
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Dec 2021. 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 - Technical 

(2 Questions)

  • Q1. A brief about yourself and your career and past work experiences.
  • Q2. Technical expertise on the technology you are getting interviewed for.

Interview Preparation Tips

Interview preparation tips for other job seekers - Multiple technical rounds are conducted. This is followed by a director round and lastly a HR round.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Dec 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Program for pattern printing ,bubble sort
  • Ans. 

    Program to print a pattern and implement bubble sort on an array of strings.

    • For pattern printing, use nested loops to print the desired pattern.

    • For bubble sort, compare adjacent elements and swap if necessary.

    • Use a loop to iterate through the array until no more swaps are needed.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. In C# --> Abstraction, Interface , Abstract Method, Abstract Class, Polymorphisms, Encapsulation ,Inheritance, Serialization,
  • Ans. 

    C# concepts including abstraction, interface, abstract method, abstract class, polymorphism, encapsulation, inheritance, and serialization.

    • Abstraction: hiding implementation details

    • Interface: defining a contract for behavior

    • Abstract method: method without implementation

    • Abstract class: class with one or more abstract methods

    • Polymorphism: ability of objects to take on multiple forms

    • Encapsulation: bundling data and behavi...

  • Answered by AI

Skills evaluated in this interview

WM Global Technology Services India Pvt.Ltd Interview FAQs

How many rounds are there in WM Global Technology Services India Pvt.Ltd interview?
WM Global Technology Services India Pvt.Ltd interview process usually has 2-3 rounds. The most common rounds in the WM Global Technology Services India Pvt.Ltd interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for WM Global Technology Services India Pvt.Ltd 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 WM Global Technology Services India Pvt.Ltd. The most common topics and skills that interviewers at WM Global Technology Services India Pvt.Ltd expect are Java, Python, SQL, Javascript and Artificial Intelligence.
What are the top questions asked in WM Global Technology Services India Pvt.Ltd interview?

Some of the top questions asked at the WM Global Technology Services India Pvt.Ltd interview -

  1. What is different between functional and procedural programming langu...read more
  2. Multithreading in J...read more
  3. HLD of order processing sys...read more

Tell us how to improve this page.

WM Global Technology Services India Pvt.Ltd Interview Process

based on 12 interviews

Interview experience

4.3
  
Good
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.3k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.7
 • 5.7k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Genpact Interview Questions
3.8
 • 3.2k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
DXC Technology Interview Questions
3.7
 • 802 Interviews
Nagarro Interview Questions
4.0
 • 763 Interviews
NTT Data Interview Questions
3.8
 • 627 Interviews
View all

WM Global Technology Services India Pvt.Ltd Reviews and Ratings

based on 26 reviews

3.5/5

Rating in categories

3.4

Skill development

3.7

Work-life balance

3.7

Salary

3.5

Job security

3.3

Company culture

3.0

Promotions

2.9

Work satisfaction

Explore 26 Reviews and Ratings
Software Engineer III
13 salaries
unlock blur

₹24.5 L/yr - ₹40 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹28 L/yr - ₹58 L/yr

Software Support Engineer
6 salaries
unlock blur

₹6.5 L/yr - ₹22 L/yr

Software Engineer2
5 salaries
unlock blur

₹12.4 L/yr - ₹27 L/yr

Senior Analyst
5 salaries
unlock blur

₹9 L/yr - ₹22 L/yr

Explore more salaries
Compare WM Global Technology Services India Pvt.Ltd with

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare

Capgemini

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