Upload Button Icon Add office photos

Filter interviews by

Datamate Infosolutions Software Developer Interview Questions and Answers

Updated 11 Feb 2025

Datamate Infosolutions Software Developer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. What does the fresher startin salary
  • Q2. Does workfrom home available

Interview questions from similar companies

Software Developer Interview Questions & Answers

Sagacious IP user image 058 Abhilakshya Rajrah

posted on 9 Dec 2024

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

(3 Questions)

  • Q1. 2 sum in array
  • Ans. 

    The Two Sum problem involves finding two numbers in an array that add up to a given target value.

    • Iterate through the array and store the difference between the target and current element in a hashmap

    • Check if the current element exists in the hashmap, if yes return the indices

    • Time complexity can be reduced to O(n) using a hashmap

  • Answered by AI
  • Q2. Reverse a linked list
  • Ans. 

    Reverse a singly linked list and return the reversed list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers to keep track of the current, previous, and next nodes while reversing the list.

    • Update the head of the list to be the last node after reversing.

  • Answered by AI
  • Q3. In given time slots , find conflicting time slots
Round 2 - Technical 

(2 Questions)

  • Q1. Asked about projects
  • Q2. Longest palindrome
  • Ans. 

    Find the longest palindromic substring in a given string.

    • Iterate through each character in the string and expand around it to find palindromes

    • Use dynamic programming to optimize the solution

    • Consider both odd and even length palindromes

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Strecture of sql statement
  • Ans. 

    SQL statements are used to interact with databases by performing operations like querying, updating, and deleting data.

    • SQL statements are made up of keywords like SELECT, INSERT, UPDATE, DELETE, etc.

    • They are structured in a specific order, with clauses like WHERE, ORDER BY, GROUP BY, etc.

    • Tables are referenced using their names, and conditions are specified to filter data.

    • Joins can be used to combine data from multiple

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. DS and Algo questions based on DP and backtracking
  • Q2. Clone linked list with random pointers.
  • Ans. 

    Clone a linked list with random pointers.

    • Create a new node for each node in the original list.

    • Store the mapping between the original and cloned nodes in a hash table.

    • Traverse the original list again and set the random pointers in the cloned list using the hash table.

    • Return the head of the cloned list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Mostly DS and Algo rounds followed by design rounds. Sometimes there can be language specific questions.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. Find missing number from nth number array.
  • Ans. 

    Find missing number from nth number array.

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2

    • Subtract the sum of array from the sum of numbers from 1 to n to find the missing number

  • Answered by AI
  • Q3. Explain inheritance and it types
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.

    • Example: Class B inherits from Class A, so Class B can access

  • Answered by AI
  • Q4. Find 2nd max elements from aaray
  • Ans. 

    Find 2nd max element from array of strings

    • Sort the array in descending order

    • Skip the first element (max element)

    • Return the second element

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Sep 2024. There were 5 interview rounds.

Round 1 - Coding Test 

Easy Level DS Questions - 30 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Cloud Services related questions
  • Q2. ETL Based question
Round 3 - Coding Test 

A comprehensive coding test which included job role simulation.

Round 4 - Coding Test 

Advanced Cloud Services questions

Round 5 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a Senior Software Developer with 8 years of experience in full-stack development, specializing in Java and Angular.

    • 8 years of experience in full-stack development

    • Specialize in Java and Angular

    • Strong problem-solving skills

    • Experience working in agile environments

  • Answered by AI
  • Q2. Why did you leave your last organisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Remote work although partially supported, is highly discouraged.

Software Developer Interview Questions & Answers

Sagacious IP user image 058 Abhilakshya Rajrah

posted on 9 Dec 2024

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

(3 Questions)

  • Q1. 2 sum in array
  • Ans. 

    The Two Sum problem involves finding two numbers in an array that add up to a given target value.

    • Iterate through the array and store the difference between the target and current element in a hashmap

    • Check if the current element exists in the hashmap, if yes return the indices

    • Time complexity can be reduced to O(n) using a hashmap

  • Answered by AI
  • Q2. Reverse a linked list
  • Ans. 

    Reverse a singly linked list and return the reversed list.

    • Iterate through the linked list and reverse the pointers to point to the previous node instead of the next node.

    • Use three pointers to keep track of the current, previous, and next nodes while reversing the list.

    • Update the head of the list to be the last node after reversing.

  • Answered by AI
  • Q3. In given time slots , find conflicting time slots
Round 2 - Technical 

(2 Questions)

  • Q1. Asked about projects
  • Q2. Longest palindrome
  • Ans. 

    Find the longest palindromic substring in a given string.

    • Iterate through each character in the string and expand around it to find palindromes

    • Use dynamic programming to optimize the solution

    • Consider both odd and even length palindromes

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
-

I was interviewed in Nov 2022.

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 

Strong appitude knowledge is required.

Round 3 - Technical 

(1 Question)

  • Q1. String , arrays, oops

Interview Preparation Tips

Interview preparation tips for other job seekers - Have strong basic concepts.

I applied via Referral and was interviewed in Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. I am not allowed to reveal

Interview Preparation Tips

Interview preparation tips for other job seekers - I don't think I can reveal the questions but I can tell you that KLA has high standards in interview process.
Some tips for software engineer interview
1. Please prepare to do competitive programming like use leetcode algoexpert hacker rank
2. Some of the important areas are string problems dynamic programming stack based and tree based
3. There can be design round and interesting questions may be encountered

Interview Questionnaire 

2 Questions

  • Q1. Questions from C, Data structure, OS,Database
  • Q2. Technical + HR

Interview Preparation Tips

Round: Test
Experience: This round was simple.
It consist of 5 sections ..1.Aptitude (10 questions). 2.Operating System Basics and Unix Commands(16 questions) 3.Data Structure(9 questions) 4.Output C Questions(6 questions) 5.Programming questions out of 4 any 2 you can do.(2 questions from data structure and 2 from sorting)
Tips: If you know the basics of all these topics then you can easily clear this round.Try to score as more marks as possible because this score counts in the next round too.

Round: Technical Interview
Experience: Moderate
Tips: Be confident and don't get panic.If you don't know anything simply say no don't waste time.

Round: Technical Interview
Experience: Moderate

Skill Tips: Be Confident and keep calm.You must have the complete knowledge of the projects which you have written in your resume.
Skills: C, Data Structure, os, Database
College Name: VIT VELLORE

Datamate Infosolutions Interview FAQs

How many rounds are there in Datamate Infosolutions Software Developer interview?
Datamate Infosolutions interview process usually has 1 rounds. The most common rounds in the Datamate Infosolutions interview process are Technical.
How to prepare for Datamate Infosolutions Software 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 Datamate Infosolutions. The most common topics and skills that interviewers at Datamate Infosolutions expect are ASP.Net, Ajax, JQuery, LINQ and RDBMS.

Tell us how to improve this page.

Datamate Infosolutions Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Datamate Infosolutions Software Developer Salary
based on 5 salaries
₹1.8 L/yr - ₹2.4 L/yr
74% less than the average Software Developer Salary in India
View more details

Datamate Infosolutions Software Developer Reviews and Ratings

based on 2 reviews

4.9/5

Rating in categories

4.9

Skill development

4.9

Work-life balance

1.0

Salary

4.9

Job security

4.9

Company culture

3.0

Promotions

4.9

Work satisfaction

Explore 2 Reviews and Ratings
Software Engineer
16 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Softwaretest Engineer
7 salaries
unlock blur

₹1.7 L/yr - ₹3.8 L/yr

Implementation Engineer
7 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Software Developer
5 salaries
unlock blur

₹1.8 L/yr - ₹2.4 L/yr

Software Testing Engineer
4 salaries
unlock blur

₹1.7 L/yr - ₹3.8 L/yr

Explore more salaries
Compare Datamate Infosolutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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