Upload Button Icon Add office photos
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 1.9k Reviews

Filter interviews by

Datamatics Global Services ETL Developer Interview Questions and Answers

Updated 4 Dec 2024

Interview questions from similar companies

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

(1 Question)

  • Q1. Explain SSIS and ite use cases
  • Ans. 

    SSIS is a Microsoft tool used for ETL processes in data integration and data warehousing.

    • SSIS stands for SQL Server Integration Services

    • It is used for extracting, transforming, and loading data from various sources to destinations

    • SSIS can be used for automating workflows, data cleansing, and data migration tasks

    • It provides a visual interface for designing data flow tasks and control flow tasks

    • Example: Using SSIS to ext...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Question Answer
  • Q2. Basic SQL , SNWOFLAKE AND ETL Concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be Strong with Basics
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Run time polymorphism code
  • Q2. Linked list code
  • Q3. Deep copy shallow copy differences
  • Ans. 

    Deep copy creates a new copy of an object with its own unique memory space, while shallow copy creates a new object that references the same memory locations as the original object.

    • Deep copy duplicates all nested objects, while shallow copy only duplicates the references to nested objects.

    • Deep copy ensures that changes to the copied object do not affect the original object, while shallow copy may lead to unintended sid...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. More deep questions about polymorphism code
  • Q2. Code for interchange of strings without strcpy
  • Ans. 

    Use a loop to swap characters of two strings without using strcpy function.

    • Create two arrays of characters to store the strings

    • Use a loop to iterate through each character of the strings and swap them

    • Ensure to handle cases where strings have different lengths

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - please prepare oops concept and data structure well because its easy for first round but for second round its too difficult - the interviewer was so irritating and asked very stupid wuestions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(13 Questions)

  • Q1. What are Types of joins
  • Ans. 

    Types of joins in SQL are Inner Join, Left Join, Right Join, and Full Join.

    • Inner Join: Returns rows when there is a match in both tables.

    • Left Join: Returns all rows from the left table and the matched rows from the right table.

    • Right Join: Returns all rows from the right table and the matched rows from the left table.

    • Full Join: Returns rows when there is a match in one of the tables.

  • Answered by AI
  • Q2. Difference between groupby and having clause
  • Ans. 

    GROUP BY is used to group rows that have the same values into summary rows, while HAVING is used to filter groups based on a specified condition.

    • GROUP BY is used with aggregate functions to group the result set by one or more columns.

    • HAVING is used to filter groups based on a specified condition after the GROUP BY clause.

    • GROUP BY is used before the HAVING clause in a query.

    • Example: SELECT department, COUNT(*) FROM empl

  • Answered by AI
  • Q3. What are DML commands
  • Ans. 

    DML commands are Data Manipulation Language commands used to manage data in a database.

    • DML commands include INSERT, UPDATE, DELETE, and SELECT.

    • INSERT is used to add new rows of data into a table.

    • UPDATE is used to modify existing data in a table.

    • DELETE is used to remove rows of data from a table.

    • SELECT is used to retrieve data from a database.

  • Answered by AI
  • Q4. Difference between Primary key and Unique key
  • Ans. 

    Primary key uniquely identifies each record in a table, while Unique key allows only one instance of a value in a column.

    • Primary key does not allow NULL values, while Unique key allows one NULL value.

    • Primary key automatically creates a clustered index, while Unique key creates a non-clustered index by default.

    • Primary key can be referenced by foreign keys, while Unique key cannot be referenced by foreign keys.

  • Answered by AI
  • Q5. What are Index and types of index
  • Ans. 

    Indexes are data structures that improve the speed of data retrieval operations in a database.

    • Indexes are used to quickly locate data without having to search every row in a database table.

    • Types of indexes include clustered, non-clustered, unique, and composite indexes.

    • Clustered indexes determine the physical order of data in a table, while non-clustered indexes store a separate copy of the indexed columns.

    • Unique index...

  • Answered by AI
  • Q6. What is execution plan
  • Ans. 

    Execution plan is a roadmap that SQL Server uses to execute a query, showing the steps taken to retrieve data.

    • Execution plan is generated by the query optimizer to determine the most efficient way to execute a query.

    • It shows the order in which tables are accessed, joins are performed, and filters are applied.

    • Execution plan can be viewed using tools like SQL Server Management Studio or by using the EXPLAIN statement in

  • Answered by AI
  • Q7. Explain about your Project ? challenges faced
  • Q8. Write a sql query depart wise max salary
  • Ans. 

    SQL query to retrieve the maximum salary for each department

    • Use the MAX() function to find the maximum salary

    • Group the results by department using the GROUP BY clause

    • Join the employee table with the department table to get the department information

  • Answered by AI
  • Q9. Given a table TEAM with only one column teamname, write a sql query where each team play with each other , no duplicate match
  • Q10. Provide o/p for innerjoin, left join, right join, cross join on a(1,1,1,2,2,3) b(1,1,2,4)
  • Ans. 

    Different types of SQL joins with given data sets a and b.

    • Inner join: Returns rows where there is a match in both tables (1,1)

    • Left join: Returns all rows from the left table and the matched rows from the right table (1,1,1,2,2)

    • Right join: Returns all rows from the right table and the matched rows from the left table (1,1,2,4)

    • Cross join: Returns the Cartesian product of the two tables (1,1,1,1,1,2,1,4,1,1,2,1,2,2,1,4,2,...

  • Answered by AI
  • Q11. Row_number, rank, dense_rank with example
  • Ans. 

    row_number, rank, dense_rank are window functions in SQL used to assign a unique number to each row based on specified criteria.

    • row_number() assigns a unique sequential integer starting from 1 to each row in the result set

    • rank() assigns a unique rank to each row based on the specified ordering criteria, with gaps in ranking for ties

    • dense_rank() assigns a unique rank to each row based on the specified ordering criteria,

  • Answered by AI
  • Q12. What is trigger
  • Ans. 

    A trigger is a special type of stored procedure that automatically executes when certain events occur in a database.

    • Triggers can be used to enforce business rules, maintain referential integrity, and automate repetitive tasks.

    • Examples of trigger events include INSERT, UPDATE, and DELETE operations on a table.

    • Triggers can be defined to execute before or after the triggering event.

  • Answered by AI
  • Q13. Diffrenc between function and store procedure
  • Ans. 

    Functions return a value, while stored procedures do not. Functions can be used in SELECT statements, stored procedures cannot.

    • Functions return a single value, while stored procedures can return multiple values or none at all.

    • Functions can be used in SELECT statements to return a value, while stored procedures cannot be used in this way.

    • Functions can be called from within stored procedures, but stored procedures cannot

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is the difference between volatile and atomic variables?
  • Q2. How can caching be implemented?
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 8 interview rounds.

Round 1 - Assignment 

Database Management system SQL and PlSQL

Round 2 - Assignment 

Database Base Management system SQL and PlSQL

Round 3 - Aptitude Test 

Database Management system

Round 4 - Aptitude Test 

Database Management system

Round 5 - Group Discussion 

Database Management system

Round 6 - Assignment 

Database Management system

Round 7 - Case Study 

Database Base Management system

Round 8 - HR 

(5 Questions)

  • Q1. Database Management system
  • Q2. SQL and PlSQL Mango Data And Manu Database Management system
  • Q3. C Language and C++Language and Java
  • Q4. Data Analysis and Data entry
  • Q5. DBMS C,C++ Java Data Entry Ms Excel Ms Word Ms PP

Interview Preparation Tips

Interview preparation tips for other job seekers - Database Management system SQL and PlSQL and C Language and C++Language and Java And Web design and Web Developer
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant

Round 1 - Technical 

(1 Question)

  • Q1. Ask for basic dot net questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic core java, reasoning,english

Round 2 - Coding Test 

Dsa question of arrays

Round 3 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills

    • Team player with excellent communication skills

  • Answered by AI
  • Q2. Stacks and queues
  • Q3. Time complexity

Interview Preparation Tips

Topics to prepare for Nagarro Software Developer interview:
  • java
  • dsa
  • arrays
  • stacks
  • queue
  • dbms
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Query Builder, Workflow, Scheduler
  • Q2. Sling Model, Servlet, OSGi , Component, Template
Round 2 - HR 

(2 Questions)

  • Q1. Core Values, weakness
  • Q2. How do you handle pressure
  • Ans. 

    I handle pressure by staying organized, prioritizing tasks, and taking breaks when needed.

    • I prioritize tasks based on deadlines and importance

    • I break down complex tasks into smaller, manageable steps

    • I communicate with team members and managers about workload and deadlines

    • I practice stress-relief techniques such as deep breathing or taking short walks

  • Answered by AI

Datamatics Global Services Interview FAQs

How many rounds are there in Datamatics Global Services ETL Developer interview?
Datamatics Global Services interview process usually has 1 rounds. The most common rounds in the Datamatics Global Services interview process are Technical.
How to prepare for Datamatics Global Services ETL Developer 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 ETL, Hadoop, Informatica, Python and AWS.
What are the top questions asked in Datamatics Global Services ETL Developer interview?

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

  1. Maximum 1400 character requi...read more
  2. Minimum 14 character requi...read more

Tell us how to improve this page.

Datamatics Global Services ETL Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Datamatics Global Services ETL Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Consultant
786 salaries
unlock blur

₹6 L/yr - ₹25 L/yr

Associate Consultant
663 salaries
unlock blur

₹3.7 L/yr - ₹15.1 L/yr

Executive
607 salaries
unlock blur

₹1 L/yr - ₹4.5 L/yr

Executive Accountant
315 salaries
unlock blur

₹1.1 L/yr - ₹4.2 L/yr

Senior Executive
296 salaries
unlock blur

₹1.2 L/yr - ₹8.1 L/yr

Explore more salaries
Compare Datamatics Global Services with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

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