AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Engaged Employer

i

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

Datamatics Global Services Verified Tick

Compare button icon Compare button icon Compare
3.4

based on 2.2k Reviews

Play video Play video Video summary
  • About
  • Reviews
    2.2k
  • Salaries
    11.5k
  • Interviews
    174
  • Jobs
    82
  • Benefits
    201
  • Photos
    5

Filter interviews by

Datamatics Global Services Interview Questions and Answers

Updated 6 Jul 2025
Popular Designations

83 Interview questions

An Accounts Receivable Executive was asked 1mo ago
Q. What are the shortcuts for Excel?
Ans. 

Excel shortcuts enhance productivity by speeding up navigation and data manipulation tasks.

  • Ctrl + C: Copy selected cells. Example: Highlight a range and press Ctrl + C to copy.

  • Ctrl + V: Paste copied cells. Example: Use Ctrl + V to paste data into a new location.

  • Ctrl + Z: Undo the last action. Example: If you accidentally delete data, Ctrl + Z restores it.

  • Ctrl + S: Save the current workbook. Example: Pressing Ctrl ...

View all Accounts Receivable Executive interview questions
A Talent Acquisition Specialist was asked 1mo ago
Q. Which portals do you use?
Ans. 

I utilize various job portals to source candidates effectively, ensuring a diverse talent pool for recruitment.

  • LinkedIn: Great for professional networking and sourcing passive candidates.

  • Indeed: A widely used job board for posting vacancies and searching resumes.

  • Glassdoor: Useful for employer branding and attracting candidates through company reviews.

  • Monster: Offers a large database of resumes and job postings.

  • Car...

View all Talent Acquisition Specialist interview questions
An Executive was asked 2mo ago
Q. What is the method for calculating taxable income?
Ans. 

Taxable income is calculated by subtracting allowable deductions from total income.

  • Start with total income, which includes wages, interest, dividends, and other earnings.

  • Subtract allowable deductions such as retirement contributions, mortgage interest, and medical expenses.

  • Consider standard deductions or itemized deductions, whichever is higher.

  • Example: If total income is $100,000 and deductions are $20,000, taxab...

View all Executive interview questions
An Executive was asked 2mo ago
Q. What is the difference between a credit and a deduction?
Ans. 

Credits reduce tax liability, while deductions lower taxable income, impacting overall tax owed.

  • A credit directly reduces the amount of tax owed (e.g., a $1,000 tax credit reduces tax liability by $1,000).

  • A deduction lowers taxable income, which may reduce tax owed indirectly (e.g., a $1,000 deduction lowers taxable income by $1,000).

  • Credits can be refundable or non-refundable; refundable credits can result in a r...

View all Executive interview questions
An Executive was asked 2mo ago
Q. What is the difference between above-the-line and below-the-line deductions?
Ans. 

Above-the-line deductions reduce taxable income, while below-the-line deductions reduce tax liability after calculating tax owed.

  • Above-the-line deductions are subtracted from gross income to determine adjusted gross income (AGI).

  • Examples of above-the-line deductions include student loan interest, retirement plan contributions, and educator expenses.

  • Below-the-line deductions, also known as itemized deductions, are ...

View all Executive interview questions
An Executive was asked 2mo ago
Q. What is the difference between standard deductions and itemized deductions?
Ans. 

Standard deductions are fixed amounts reducing taxable income, while itemized deductions are specific expenses that can be deducted.

  • Standard deductions are set amounts based on filing status (e.g., $12,550 for single filers in 2021).

  • Itemized deductions include specific expenses like mortgage interest, medical expenses, and charitable contributions.

  • Taxpayers can choose between standard and itemized deductions, opti...

View all Executive interview questions
An Executive was asked 2mo ago
Q. What is a 1040 tax form?
Ans. 

The 1040 tax form is the standard IRS form used by individuals to file their annual income tax returns in the United States.

  • Used by U.S. taxpayers to report income, deductions, and credits.

  • Includes various schedules for additional income types, like Schedule A for itemized deductions.

  • Filing options: e-file or paper form submission.

  • Example: A single filer with a salary of $50,000 would report this income on the 104...

View all Executive interview questions
Are these interview questions helpful?
An Associate Consultant was asked 3mo ago
Q. What are the different types of testing methods used in software development?
Ans. 

Software testing methods ensure quality and functionality through various techniques like unit, integration, and user acceptance testing.

  • Unit Testing: Tests individual components for correctness (e.g., testing a function in isolation).

  • Integration Testing: Evaluates the interaction between integrated components (e.g., testing a database connection).

  • System Testing: Validates the complete and integrated software prod...

View all Associate Consultant interview questions
An Associate Consultant was asked 3mo ago
Q. What is the syntax for an UPDATE query in SQL?
Ans. 

The UPDATE query in SQL modifies existing records in a table based on specified conditions.

  • Basic syntax: UPDATE table_name SET column1 = value1, column2 = value2 WHERE condition;

  • Example: UPDATE Employees SET salary = 50000 WHERE employee_id = 1;

  • You can update multiple columns: UPDATE Products SET price = 20, stock = 100 WHERE product_id = 10;

  • Always use a WHERE clause to avoid updating all records unintentionally.

View all Associate Consultant interview questions
A Technical Lead was asked 3mo ago
Q. How would you merge two arrays?
Ans. 

Merging two arrays involves combining their elements into a single array, maintaining order and uniqueness.

  • Use the spread operator in JavaScript: `const merged = [...array1, ...array2];`

  • In Python, use the `+` operator: `merged = array1 + array2`.

  • To remove duplicates, convert to a set: `merged = list(set(array1 + array2))` in Python.

  • For sorted arrays, consider merging in a way that maintains order, similar to the m...

View all Technical Lead interview questions
1 2 3 4 5 6 7

Datamatics Global Services Interview Experiences

174 interviews found

Market Research Analyst Interview Questions & Answers

user image Anonymous

posted on 26 Dec 2024

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

I applied via Naukri.com and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

I applied through naukri and i got call from hr , the first was Aptitute Round, Basic Aptitude Questions are there and some Programing MCQ is there.

Round 2 - Technical 

(2 Questions)

  • Q1. Write a program for Palindrome String and Number, and Explain the whole logic of that program.
  • Ans. 

    Program to check if a given string or number is a palindrome.

    • Create a function to check if a given string is a palindrome by comparing characters from start and end.

    • For numbers, convert to string and then apply the same logic as for strings.

    • Examples: 'radar' is a palindrome string, 121 is a palindrome number.

  • Answered by AI
    Add your answer
  • Q2. And Reasoning questions are there the interviewr the Questions are, if there is 8 ball with similar weight and one ball is lighter than rest , if you want to find defected ball how you found , if you can ...
  • Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself , and about the role , and who take your technical interview , and about family background ,why you want to join that role beacause i am from IT background I am not selected after hr...
  • Add your answer
Anonymous

Senior Consultant Interview Questions & Answers

user image Anonymous

posted on 23 Jan 2025

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - HR 

(3 Questions)

  • Q1. Unprofessional HR asks any random thing but are themselves don't know anything
  • Add your answer
  • Q2. Whatever HR says is false so read ambition box and Google reviews of both Bangalore and Mumbai office to know the reality
  • Add your answer
  • Q3. This review is to help other candidates make decision before interviewing at Datamatics
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Highly unprofessional HR. Don't join this company, they are scam. Whatever HR say is false , they don't have any communication ethics. They think they are very smart , but read all google reviews and ambition box. It's very poorly rated , if you are interviewing for this company it's waste of your time and expectations. Never saw so any company so unprofessional after being interviewed at multiple places. Complete waste of time and effort. If you are reading this before giving interview at this company, I hope this helps you and other candidates. Don't keep any hopes. Read all google reviews , and you will understand it is total scam they are conducting.
Anonymous

Lead Consultant Interview Questions & Answers

user image Anonymous

posted on 6 Jul 2025

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

I appeared for an interview before Jul 2024, where I was asked the following questions.

  • Q1. Depends mostly on experience
  • Add your answer
  • Q2. Are you willing to work with a new technology stack?
  • Ans. 

    Absolutely! Embracing new technology stacks is essential for growth and innovation in today's fast-paced environment.

    • I thrive on learning and adapting to new technologies, as seen when I transitioned from Java to Python for a recent project.

    • Staying updated with industry trends is crucial; I regularly attend workshops and webinars to familiarize myself with emerging tools.

    • In my previous role, I successfully led a team i...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Gain valuable exposure to the technology stack.
Anonymous

Team Lead Operations Interview Questions & Answers

user image Anonymous

posted on 3 Jun 2025

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
  • Q1. What all projects you have handled?
  • Ans. 

    I have managed diverse projects focusing on operational efficiency, team leadership, and process improvement across various sectors.

    • Led a project to streamline supply chain operations, reducing lead time by 20%.

    • Implemented a new inventory management system that improved accuracy by 30%.

    • Managed a cross-functional team to enhance customer service processes, resulting in a 15% increase in customer satisfaction scores.

    • Over...

  • Answered by AI
    Add your answer
  • Q2. How many people you can manage in your team for better operational work?
  • Ans. 

    Effective team size varies; typically, 5-10 members ensure optimal communication and productivity in operations.

    • Smaller teams (5-7 members) allow for better communication and quicker decision-making.

    • Larger teams (8-10 members) can bring diverse skills but may require more structured management.

    • For example, in a previous role, I managed a team of 6, which led to a 20% increase in project efficiency.

    • Regular check-ins and...

  • Answered by AI
    Add your answer
  • Q3. Any achievement in terms of quality during previous tenure?
  • Ans. 

    Implemented a quality assurance program that reduced errors by 30% and improved team efficiency significantly.

    • Developed a comprehensive quality assurance checklist that was used in daily operations, leading to a 25% reduction in errors.

    • Conducted regular training sessions for team members on quality standards, resulting in a 15% increase in compliance with protocols.

    • Introduced a feedback loop with clients to gather insi...

  • Answered by AI
    Add your answer
  • Q4. List of skills required to be a good team leader according to you?
  • Ans. 

    A good team leader possesses strong communication, empathy, decision-making, and motivational skills to guide their team effectively.

    • Effective Communication: Clearly articulating goals and expectations to ensure everyone is on the same page.

    • Empathy: Understanding team members' perspectives and challenges, fostering a supportive environment.

    • Decision-Making: Analyzing situations and making informed choices quickly, espec...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep yourself up to date with industry trends and AI driven data.
Anonymous

ETL Developer Interview Questions & Answers

user image Anonymous

posted on 4 Dec 2024

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

(2 Questions)

  • Q1. Minimum 14 character required
  • Add your answer
  • Q2. Maximum 1400 character required
  • Add your answer
Anonymous

Senior Executive Operations Interview Questions & Answers

user image Anonymous

posted on 3 Oct 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain your current Job role.
  • Ans. 

    Oversee daily operations, manage staff, ensure efficiency and productivity.

    • Manage and coordinate daily operations

    • Supervise staff and provide guidance

    • Implement strategies to improve efficiency and productivity

    • Monitor performance and make adjustments as needed

  • Answered by AI
    Add your answer
Round 2 - One-on-one 

(1 Question)

  • Q1. Explain your current Job Role
  • Ans. 

    I oversee daily operations, manage staff, ensure efficiency, and implement strategies to improve productivity.

    • Manage a team of employees to ensure smooth operations

    • Develop and implement strategies to improve efficiency

    • Monitor performance metrics and make adjustments as needed

  • Answered by AI
    Add your answer
Anonymous

Data Entry Executive Interview Questions & Answers

user image Anonymous

posted on 8 Feb 2025

Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. What's your expectation salary
  • Ans. 

    My expectation salary is based on my experience, skills, and the industry standard.

    • I am looking for a competitive salary that reflects my qualifications and experience.

    • I have researched the average salary range for Data Entry Executives in this industry.

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

    • I am more focused on finding the right opportunity for growth and development rather than jus...

  • Answered by AI
    Add your answer
  • Q2. What yours experience
  • Ans. 

    I have 3 years of experience in data entry, with proficiency in MS Excel and attention to detail.

    • 3 years of experience in data entry

    • Proficient in MS Excel

    • Attention to detail

    • Handled large volumes of data accurately

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company
Good salary
Good timeing
Anonymous

Security Officer Interview Questions & Answers

user image Anonymous

posted on 11 Nov 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is confidentiality??
  • Ans. 

    Confidentiality is the protection of sensitive information from being disclosed to unauthorized individuals or entities.

    • Confidentiality ensures that sensitive information is only accessed by authorized personnel.

    • It is crucial in maintaining trust and privacy in various fields such as healthcare, legal, and security.

    • Examples include protecting patient medical records, safeguarding classified government information, and ...

  • Answered by AI
    Add your answer
  • Q2. What is integrity??
  • Ans. 

    Integrity is the quality of being honest and having strong moral principles.

    • Integrity involves being truthful and transparent in all actions and decisions.

    • It means doing the right thing even when no one is watching.

    • Integrity also includes keeping promises and commitments.

    • Having integrity builds trust and credibility with others.

    • Examples: refusing to engage in unethical behavior, admitting mistakes and taking responsibi...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - go
Anonymous

Data Engineer Interview Questions & Answers

user image Anonymous

posted on 7 May 2024

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(8 Questions)

  • Q1. Python Coding Question 1: Make a list with all datatypes objects in it.
  • Ans. 

    Create a list containing all Python data types.

    • Use the following data types: int, float, complex, str, list, tuple, dict, set, bool, bytes, bytearray, memoryview, None

    • Example: ['int', 'float', 'complex', 'str', 'list', 'tuple', 'dict', 'set', 'bool', 'bytes', 'bytearray', 'memoryview', 'None']

  • Answered by AI
    Add your answer
  • Q2. Python Coding Question 2: Extract a character from the string present in the list.
  • Ans. 

    Extract a character from a string in a list of strings.

    • Iterate through the list of strings

    • Use indexing to extract the desired character from each string

    • Handle cases where the index is out of range

    • Return the extracted characters as a new list

  • Answered by AI
    Add your answer
  • Q3. Python Coding Question 3: Make a dictionary with Name and Age having 4 records.
  • Ans. 

    Create a dictionary with Name and Age for 4 records in Python.

    • Use curly braces {} to create a dictionary.

    • Separate key-value pairs with a colon :

    • Separate each record with a comma ,

  • Answered by AI
    Add your answer
  • Q4. Python Coding Question 4: Make a string and write code to return the output with the reverse string.
  • Ans. 

    This code snippet demonstrates how to reverse a string in Python using slicing.

    • Use slicing to reverse a string: `reversed_string = original_string[::-1]`.

    • Example: For `original_string = 'hello'`, the output will be `olleh`.

    • You can also use the `reversed()` function combined with `join()`: `''.join(reversed(original_string))`.

    • Example: For `original_string = 'world'`, the output will be `dlrow`.

  • Answered by AI
    Add your answer
  • Q5. Python Coding Question 5: Write a function to check if the string is Palindrome. Check the function with a Palindrome.
  • Ans. 

    Function to check if a string is a palindrome.

    • Create a function that takes a string as input.

    • Reverse the string and compare it with the original string.

    • Return true if they are the same, false otherwise.

    • Example: 'racecar' is a palindrome.

  • Answered by AI
    Add your answer
  • Q6. SQL Coding Question 1: Write an SQL query to extract the data from employees table, extract day of joining, month of joining, year of joining from the "Date Of Joining".
  • Ans. 

    Extract day, month, and year from the 'Date Of Joining' in the employees table using SQL.

    • Use the SQL functions DAY(), MONTH(), and YEAR() to extract respective components.

    • Example: SELECT DAY(Date_Of_Joining) AS Joining_Day FROM employees;

    • Combine the functions in a single query to get all components: SELECT DAY(Date_Of_Joining) AS Joining_Day, MONTH(Date_Of_Joining) AS Joining_Month, YEAR(Date_Of_Joining) AS Joining_Yea...

  • Answered by AI
    Add your answer
  • Q7. What is Data normalization and standardization?
  • Ans. 

    Data normalization is the process of organizing data in a database efficiently, while data standardization is the process of ensuring consistency and uniformity in data.

    • Data normalization involves organizing data into tables and columns to reduce redundancy and improve data integrity.

    • Data standardization involves ensuring that data is consistent and uniform across the database.

    • Normalization helps in reducing data redun...

  • Answered by AI
    Add your answer
  • Q8. Statistics/Probability Question: 4 ball of each colors(Red, Green, Blue) are present in the box. After drawing 3 ball randomly from the box, what is the probability of getting all 3 ball having the same co...
  • Ans. 

    The probability of drawing 3 balls of the same color from a box containing 4 balls of each color (Red, Green, Blue).

    • Calculate the total number of ways to draw 3 balls out of 12 balls

    • Calculate the number of ways to draw 3 balls of the same color

    • Divide the number of favorable outcomes by the total number of outcomes to get the probability

  • Answered by AI
    Add your answer

Skills evaluated in this interview

Anonymous

Accounts Receivable Executive Interview Questions & Answers

user image Anonymous

posted on 23 Apr 2025

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Salary regarding
  • Add your answer
  • Q2. Your company budget is to provide salary 5 LPA
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Your company has salary will be provided to account Receivables 5 LPA ,but mentioned is 8 lac ,so please proper mention on salary budget.
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Datamatics Global Services?
Ask anonymously on communities.
More about working at Datamatics Global Services
  • HQ - Mumbai, Maharashtra, India
  • IT Services & Consulting
  • 5k-10k Employees (India)
  • Public
  • Financial Services

Datamatics Global Services Interview FAQs

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

Some of the top questions asked at the Datamatics Global Services interview -

  1. Statistics/Probability Question: 4 ball of each colors(Red, Green, Blue) are pr...read more
  2. When defect is deffered as a tester what you will...read more
  3. 1. What do you mean by bank reconciliation? 2. Journal entry for provision for...read more
What are the most common questions asked in Datamatics Global Services HR round?

The most common HR questions asked in Datamatics Global Services interview are -

  1. What is your family backgrou...read more
  2. What are your salary expectatio...read more
  3. Share details of your previous j...read more
How long is the Datamatics Global Services interview process?

The duration of Datamatics Global Services interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Datamatics Global Services Interviews By Designations

  • Datamatics Global Services Consultant Interview Questions
  • Datamatics Global Services Trainee Interview Questions
  • Datamatics Global Services Associate Consultant Interview Questions
  • Datamatics Global Services Executive Interview Questions
  • Datamatics Global Services Accountant Interview Questions
  • Datamatics Global Services Senior Consultant Interview Questions
  • Datamatics Global Services Financial Analyst Interview Questions
  • Datamatics Global Services Accounts Receivable Executive Interview Questions
  • Show more
  • Datamatics Global Services Finance Executive Interview Questions
  • Datamatics Global Services Back Office Executive Interview Questions

Interview Questions for Popular Designations

  • Consultant Interview Questions
  • Trainee Interview Questions
  • Associate Consultant Interview Questions
  • Executive Interview Questions
  • Senior Consultant Interview Questions
  • Accountant Interview Questions
  • Financial Analyst Interview Questions
  • Accounts Receivable Executive Interview Questions
  • Show more
  • Associate Interview Questions
  • Senior Engineer Interview Questions

Overall Interview Experience Rating

4/5

based on 142 interview experiences

Difficulty level

Easy 37%
Moderate 59%
Hard 4%

Duration

Less than 2 weeks 82%
2-4 weeks 9%
4-6 weeks 6%
More than 8 weeks 3%
View more

Interview Questions from Similar Companies

DXC Technology
DXC Technology Interview Questions
3.7
 • 839 Interviews
Nagarro
Nagarro Interview Questions
4.0
 • 793 Interviews
Sutherland Global Services
Sutherland Global Services Interview Questions
3.5
 • 698 Interviews
Optum Global Solutions
Optum Global Solutions Interview Questions
4.0
 • 679 Interviews
NTT Data
NTT Data Interview Questions
3.8
 • 660 Interviews
 Publicis Sapient
Publicis Sapient Interview Questions
3.5
 • 645 Interviews
GlobalLogic
GlobalLogic Interview Questions
3.6
 • 628 Interviews
Virtusa Consulting Services
Virtusa Consulting Services Interview Questions
3.7
 • 617 Interviews
EPAM Systems
EPAM Systems Interview Questions
3.7
 • 569 Interviews
 UST
UST Interview Questions
3.8
 • 544 Interviews
View all

Datamatics Global Services Reviews and Ratings

based on 2.2k reviews

3.4/5

Rating in categories

3.3

Skill development

3.3

Work-life balance

2.9

Salary

3.3

Job security

3.3

Company culture

2.8

Promotions

3.2

Work satisfaction

Explore 2.2k Reviews and Ratings
Jobs at Datamatics Global Services
Datamatics Global Services
Qualtrics Technical Consultant

Mumbai

3-8 Yrs

₹ 5-12 LPA

Datamatics Global Services
Immediate opening For Executive @ Datamatics, Madurai

Madurai

1-4 Yrs

Not Disclosed

Datamatics Global Services
Asp.Net Developer with Sharepoint

Nashik,

Bangalore / Bengaluru

+1

7-12 Yrs

Not Disclosed

Explore more jobs
Datamatics Global Services Salaries in India
Consultant
784 salaries
unlock blur

₹4.1 L/yr - ₹22.1 L/yr

Associate Consultant
635 salaries
unlock blur

₹5.6 L/yr - ₹13.5 L/yr

Executive
614 salaries
unlock blur

₹1.5 L/yr - ₹4.1 L/yr

Executive Accountant
335 salaries
unlock blur

₹1.5 L/yr - ₹4.6 L/yr

Senior Executive
334 salaries
unlock blur

₹2.5 L/yr - ₹8.2 L/yr

Explore more salaries
Compare Datamatics Global Services with
DXC Technology

DXC Technology

3.6
Compare
Sutherland Global Services

Sutherland Global Services

3.5
Compare
Optum Global Solutions

Optum Global Solutions

4.0
Compare
Virtusa Consulting Services

Virtusa Consulting Services

3.7
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Datamatics Global Services Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter