Upload Button Icon Add office photos

Filter interviews by

Datamatics Group Python Developer Interview Questions and Answers

Updated 24 May 2022

Datamatics Group Python Developer Interview Experiences

1 interview found

I applied via Job Portal and was interviewed before May 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 - Aptitude Test 

3hr

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep cool And stop playing game . and it is a a vikad werq

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Basic python questions
  • Q2. SQL join query and update query
Round 2 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Other basic questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

Avg aptitude questions

Round 2 - Coding Test 

2 easy coding questions

Round 3 - Technical 

(2 Questions)

  • Q1. Array question in python
  • Q2. SQL query based on condition

I applied via LinkedIn and was interviewed in Jul 2022. There were 2 interview rounds.

Round 1 - Assignment 

Two to three rounds are there 1. Coding
2. L1
3. L2

Round 2 - Coding Test 

Test from normal question

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be prepared from basic.
Then focus on project explanation

Interview Questionnaire 

2 Questions

  • Q1. In technical interview asking Python related question as per there requirements
  • Q2. At the time of hr interview they 1st says to you join as a permanent basis but when you reach home then they can call you and says we are selected you as a contract basis you have to do contract of 6 month...
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Jun 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 - Technical 

(2 Questions)

  • Q1. Purely basic pythons
  • Q2. Coding test writing

Interview Preparation Tips

Interview preparation tips for other job seekers - Never go cognizant because they put in bench

I applied via Recruitment Consulltant and was interviewed in May 2022. There were 2 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 

(4 Questions)

  • Q1. Difference between tuple and list.
  • Ans. 

    Tuple is immutable and ordered while list is mutable and ordered.

    • Tuple uses () while list uses []

    • Tuple is faster than list for accessing elements

    • Tuple can be used as keys in dictionaries while list cannot

    • Tuple can be used in string formatting while list cannot

  • Answered by AI
  • Q2. What is decorator?why we are using decorator? Write a program for decorator?
  • Ans. 

    A decorator is a design pattern in Python that allows modifying the behavior of a function or class without changing its source code.

    • Decorators are functions that take another function as an argument and return a new function.

    • They are used to add functionality to an existing function or class.

    • They can be used to modify the behavior of a function, such as adding logging or timing functionality.

    • They can also be used to e...

  • Answered by AI
  • Q3. Give one recursion problem .
  • Ans. 

    One recursion problem is to find the factorial of a number.

    • The base case is when the number is 0 or 1.

    • The recursive case is to multiply the number with the factorial of (number-1).

    • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = ... = 5 * 4 * 3 * 2 * 1 = 120.

  • Answered by AI
  • Q4. Find second highest number from list without using inbuilt functions
  • Ans. 

    Find second highest number from list without using inbuilt functions

    • Sort the list in descending order

    • Return the second element of the sorted list

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident don't hesitate tell truth. Prepare for basic data structures and some algorithms as well

Skills evaluated in this interview

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

(1 Question)

  • Q1. Why python is used in reality
  • Ans. 

    Python is used in reality due to its simplicity, versatility, and wide range of applications.

    • Python is easy to learn and read, making it a popular choice for beginners.

    • It has a large standard library and many third-party modules, allowing for rapid development.

    • Python is used in web development, data analysis, machine learning, scientific computing, and more.

    • It is cross-platform and can run on various operating systems.

    • ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best for your python interview with flask framework.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Technical 

(1 Question)

  • Q1. Python fundamental need to be strong
Round 3 - HR 

(1 Question)

  • Q1. General - Related to salary, notice period, etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Simple, just make sure your basics are clear. Explain with example

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

10 Questions

  • Q1. Give your introduction.
  • Q2. What was you work/role in current company?
  • Q3. Have you done anything on python related developments.
  • Ans. 

    Yes, I have worked on various python projects including web development, data analysis and automation.

    • Developed a web application using Django framework

    • Automated data extraction and analysis using pandas library

    • Created a chatbot using Python and Dialogflow API

    • Implemented machine learning algorithms for predictive analysis

    • Integrated Python scripts with other technologies like AWS and Docker

  • Answered by AI
  • Q4. What is the difference between variable and object?
  • Ans. 

    Variables are names given to memory locations while objects are instances of a class with attributes and methods.

    • Variables are used to store values while objects are used to represent real-world entities.

    • Variables can be reassigned to different values while objects have a fixed identity.

    • Variables are created when they are assigned a value while objects are created using constructors.

    • Variables can be of different data t...

  • Answered by AI
  • Q5. Have you heard about init method?
  • Ans. 

    Yes, init method is a special method in Python classes used to initialize objects.

    • The init method is called automatically when an object is created from a class.

    • It is used to set initial values for object attributes.

    • The init method always takes the 'self' parameter as the first argument.

    • Example: def __init__(self, name, age): self.name = name; self.age = age

    • The init method can also be used to perform any other setup or

  • Answered by AI
  • Q6. What is inheritance and what are its types?
  • Ans. 

    Inheritance is a way to create a new class by inheriting properties and methods from an existing class.

    • It allows code reusability and saves time.

    • Types of inheritance are single, multiple, multilevel, and hierarchical.

    • Single inheritance involves inheriting properties and methods from a single parent class.

    • Multiple inheritance involves inheriting properties and methods from multiple parent classes.

    • Multilevel inheritance ...

  • Answered by AI
  • Q7. Have you heard about pickling and non pickling?
  • Ans. 

    Pickling is a way to serialize Python objects, while non-pickling refers to objects that cannot be pickled.

    • Pickling is used to convert Python objects into a byte stream that can be stored or transmitted.

    • Non-pickling objects are those that cannot be serialized using the pickle module.

    • Examples of non-pickling objects include file objects, network sockets, and database connections.

    • To make an object picklable, it must be a...

  • Answered by AI
  • Q8. What models you made in your ML projects(in my intro i told that I was working on datasets and making ML models)?
  • Ans. 

    I have made various ML models including regression, classification, and clustering models.

    • I have made regression models such as linear regression and polynomial regression to predict numerical values.

    • I have made classification models such as logistic regression, decision trees, and random forests to classify data into different categories.

    • I have made clustering models such as K-means clustering to group similar data po...

  • Answered by AI
  • Q9. Why you want to relocate to Bangalore?
  • Q10. Tell me the logic of program to reverse a given string word by word without using any built in function.
  • Ans. 

    The logic of the program is to reverse a given string word by word without using any built-in function.

    • Split the string into an array of words using whitespace as the delimiter.

    • Iterate through the array of words in reverse order.

    • Append each word to a new string, separated by a space.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - For virtual interviews, interviewer may ask you to share screen and will give any code and ask for output, make give any coding problem to be done in notepad, may also stick to theoretical questions only as in my case, so be well prepared with basic terminologies, syntax, concepts etc

Skills evaluated in this interview

Datamatics Group Interview FAQs

How many rounds are there in Datamatics Group Python Developer interview?
Datamatics Group interview process usually has 2 rounds. The most common rounds in the Datamatics Group interview process are Resume Shortlist and Aptitude Test.

Tell us how to improve this page.

People are getting interviews through

based on 1 Datamatics Group interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Executive Accountant
10 salaries
unlock blur

₹1.1 L/yr - ₹4.5 L/yr

Senior Consultant
8 salaries
unlock blur

₹9 L/yr - ₹19 L/yr

Executive
6 salaries
unlock blur

₹1.3 L/yr - ₹2.3 L/yr

Consultant
6 salaries
unlock blur

₹7.5 L/yr - ₹25.5 L/yr

Associate Consultant
5 salaries
unlock blur

₹10.1 L/yr - ₹16 L/yr

Explore more salaries
Compare Datamatics Group with

Cognizant

3.8
Compare

NTT Data Information Processing Services

4.0
Compare

Sutherland Global Services

3.7
Compare

Hexaware Technologies

3.6
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview