Upload Button Icon Add office photos

Decimal Technologies

Compare button icon Compare button icon Compare

Filter interviews by

Decimal Technologies Interview Questions and Answers

Updated 4 Jun 2025
Popular Designations

18 Interview questions

An Associate Software Engineer was asked 2w ago
Q. What is the internal structure and use of a hashmap?
Ans. 

A hashmap is a data structure that stores key-value pairs for efficient data retrieval using a hash function.

  • Uses an array to store data, where each index corresponds to a hash value of a key.

  • A hash function converts keys into array indices, allowing for O(1) average time complexity for lookups.

  • Handles collisions (when two keys hash to the same index) using techniques like chaining (linked lists) or open addressin...

View all Associate Software Engineer interview questions
An Associate Software Engineer was asked 2w ago
Q. What is Java?
Ans. 

Java is a high-level, object-oriented programming language designed for portability and ease of use across platforms.

  • Developed by Sun Microsystems in 1995, now owned by Oracle.

  • Java is platform-independent due to the Java Virtual Machine (JVM).

  • It follows the principle of 'Write Once, Run Anywhere' (WORA).

  • Java is widely used for web applications, mobile apps (Android), and enterprise software.

  • Example: A simple Java ...

View all Associate Software Engineer interview questions
A Graduate Trainee was asked 3mo ago
Q. Write a program to check whether a number is even.
Ans. 

An even number is an integer divisible by 2 without a remainder, such as -4, 0, 2, 4, etc.

  • An even number can be expressed as 2n, where n is an integer.

  • Examples of even numbers: -6, 0, 8, 14.

  • Even numbers end with 0, 2, 4, 6, or 8 in decimal representation.

  • The sum or difference of two even numbers is always even.

View all Graduate Trainee interview questions
A SQL Developer was asked 7mo ago
Q. What is a 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, perform data validation, or maintain referential integrity.

  • 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.

View all SQL Developer interview questions
A SQL Developer was asked 7mo ago
Q. What is the difference between a function and a stored procedure?
Ans. 

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

  • Functions return a value, stored procedures do not

  • Functions can be used in SELECT statements, stored procedures cannot

  • Functions must return a value, stored procedures may or may not

View all SQL Developer interview questions
A SQL Developer was asked 7mo ago
Q. Write a query to find the manager of the employee.
Ans. 

Use a self join to find the manager of the employee.

  • Join the employee table with itself on the manager_id and employee_id columns

  • Select the manager's details based on the employee's manager_id

View all SQL Developer interview questions
A SQL Developer was asked 7mo ago
Q. Write a stored procedure.
Ans. 

A stored procedure is a precompiled collection of SQL statements stored in the database.

  • Define the procedure using CREATE PROCEDURE syntax.

  • Use parameters to pass values into the procedure, e.g., CREATE PROCEDURE myProc(IN param1 INT).

  • Include SQL statements within the BEGIN...END block.

  • Use control flow statements like IF, WHILE for logic.

  • Call the procedure using CALL myProc(value);

View all SQL Developer interview questions
Are these interview questions helpful?
A HR Intern was asked 11mo ago
Q. How many positions have you closed?
Ans. 

The number of positions closed refers to the total number of job openings that have been filled by candidates.

  • The number of positions closed can be tracked through the recruitment process, from job posting to candidate selection.

  • This metric is important for evaluating the efficiency and effectiveness of the hiring process.

  • For example, if a company has closed 50 positions in a quarter, it indicates a high level of ...

View all HR Intern interview questions
A QA QC Engineer was asked
Q. Explain the module project.
Ans. 

moduleproject is a software component that performs a specific function within a larger project.

  • moduleproject is a self-contained unit of code that can be easily integrated into a larger software project

  • It helps in organizing code into manageable and reusable components

  • Examples include login module, payment module, and notification module

View all QA QC Engineer interview questions
A QA QC Engineer was asked
Q. Explain the concept of API.
Ans. 

API stands for Application Programming Interface, which allows different software applications to communicate with each other.

  • APIs define the methods for how different software components should interact

  • APIs can be used to access data or functionality from a remote server

  • Examples of APIs include Google Maps API, Twitter API, and Facebook Graph API

View all QA QC Engineer interview questions

Decimal Technologies Interview Experiences

32 interviews found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Nov 2024. There were 6 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Technical and process related
Round 2 - One-on-one 

(1 Question)

  • Q1. Technical and scenario based
Round 3 - One-on-one 

(1 Question)

  • Q1. Project and process related
Round 4 - Technical 

(1 Question)

  • Q1. With Solution architect
Round 5 - One-on-one 

(1 Question)

  • Q1. Manager round with complete SDLC
Round 6 - HR 

(1 Question)

  • Q1. HR round generic questions and salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on no code low code. Very unprofessional company.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(1 Question)

  • Q1. Intro after that basic Of .net, SQL table etc
Round 2 - Coding Test 

They ask many questions from SQL like joins and it's types, how to drop a column from table etc

SQL Developer Interview Questions & Answers

user image Anonymous

posted on 24 Nov 2024

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

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

Round 1 - One-on-one 

(5 Questions)

  • Q1. Difference between function and stored procedure.
  • Ans. 

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

    • Functions return a value, stored procedures do not

    • Functions can be used in SELECT statements, stored procedures cannot

    • Functions must return a value, stored procedures may or may not

  • Answered by AI
  • Q2. Write a query to find the manager of the employee.
  • Ans. 

    Use a self join to find the manager of the employee.

    • Join the employee table with itself on the manager_id and employee_id columns

    • Select the manager's details based on the employee's manager_id

  • Answered by AI
  • Q3. To write a stored procedure.
  • Ans. 

    A stored procedure is a precompiled collection of SQL statements stored in the database.

    • Define the procedure using CREATE PROCEDURE syntax.

    • Use parameters to pass values into the procedure, e.g., CREATE PROCEDURE myProc(IN param1 INT).

    • Include SQL statements within the BEGIN...END block.

    • Use control flow statements like IF, WHILE for logic.

    • Call the procedure using CALL myProc(value);

  • Answered by AI
  • Q4. 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, perform data validation, or maintain referential integrity.

    • 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
  • Q5. What do you know about JSON?

Skills evaluated in this interview

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

I applied via AmbitionBox

Round 1 - Coding Test 

Java, spring,springboot

Graduate Trainee Interview Questions & Answers

user image Shriya Pandey

posted on 24 Mar 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

  • Q1. Whether number is odd
  • Ans. 

    An odd number is an integer that cannot be divided evenly by 2, resulting in a remainder of 1.

    • Odd numbers include: 1, 3, 5, 7, 9, etc.

    • To check if a number is odd, divide it by 2 and check the remainder.

    • Example: 7 ÷ 2 = 3 remainder 1, so 7 is odd.

    • Negative odd numbers: -1, -3, -5, etc. are also considered odd.

  • Answered by AI
  • Q2. Whether number is even
  • Ans. 

    An even number is an integer divisible by 2 without a remainder, such as -4, 0, 2, 4, etc.

    • An even number can be expressed as 2n, where n is an integer.

    • Examples of even numbers: -6, 0, 8, 14.

    • Even numbers end with 0, 2, 4, 6, or 8 in decimal representation.

    • The sum or difference of two even numbers is always even.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Palindrome, reverse, prime number, hashmap, collection, array

Round 2 - Technical 

(2 Questions)

  • Q1. Sdlc vs STLC, bug life cycle, regression, sanity
  • Q2. Test strategy vs test plan
  • Ans. 

    Test strategy outlines the overall approach to testing, while test plan details the specific testing activities.

    • Test strategy is high-level and focuses on goals and objectives, while test plan is detailed and includes specific tasks and timelines.

    • Test strategy is created at the beginning of the project, while test plan is developed after the strategy is defined.

    • Test strategy is more generic and can be applied to multip...

  • Answered by AI

Skills evaluated in this interview

HR Intern Interview Questions & Answers

user image Anonymous

posted on 13 Jul 2024

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

(2 Questions)

  • Q1. Expertise in ATS
  • Ans. 

    Experience with Applicant Tracking Systems (ATS) is essential for HR Intern role.

    • Familiarity with popular ATS platforms such as Greenhouse, Lever, and iCIMS

    • Ability to post job listings, review resumes, and track candidate progress within ATS

    • Experience in customizing ATS workflows and generating reports for recruitment metrics

  • Answered by AI
  • Q2. Total Experience
Round 2 - One-on-one 

(2 Questions)

  • Q1. Number of position closed
  • Ans. 

    The number of positions closed refers to the total number of job openings that have been filled by candidates.

    • The number of positions closed can be tracked through the recruitment process, from job posting to candidate selection.

    • This metric is important for evaluating the efficiency and effectiveness of the hiring process.

    • For example, if a company has closed 50 positions in a quarter, it indicates a high level of recru...

  • Answered by AI
  • Q2. Proficiency in Excel
  • Ans. 

    Proficient in Excel with experience in creating complex formulas, pivot tables, and data analysis.

    • Experience in creating and manipulating spreadsheets

    • Ability to use functions and formulas effectively

    • Knowledge of pivot tables and data visualization techniques

    • Experience in data analysis and reporting

    • Familiarity with VLOOKUP, INDEX-MATCH, and conditional formatting

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Angular pipes, customization in angular
  • Q2. CDN, SSR, SSG questions
Round 2 - Coding Test 

Find duplicates in an array

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

(2 Questions)

  • Q1. Details of Kafka
  • Q2. Concurrency questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain about moduleproject
  • Ans. 

    moduleproject is a software component that performs a specific function within a larger project.

    • moduleproject is a self-contained unit of code that can be easily integrated into a larger software project

    • It helps in organizing code into manageable and reusable components

    • Examples include login module, payment module, and notification module

  • Answered by AI
  • Q2. Explain about api
  • Ans. 

    API stands for Application Programming Interface, which allows different software applications to communicate with each other.

    • APIs define the methods for how different software components should interact

    • APIs can be used to access data or functionality from a remote server

    • Examples of APIs include Google Maps API, Twitter API, and Facebook Graph API

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - preapre for interview

Skills evaluated in this interview

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about Decimal Technologies?
Ask anonymously on communities.

Decimal Technologies Interview FAQs

How many rounds are there in Decimal Technologies interview?
Decimal Technologies interview process usually has 2-3 rounds. The most common rounds in the Decimal Technologies interview process are Technical, One-on-one Round and HR.
How to prepare for Decimal Technologies 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 Decimal Technologies. The most common topics and skills that interviewers at Decimal Technologies expect are Java, AWS, Postgresql, Project Management and Python.
What are the top questions asked in Decimal Technologies interview?

Some of the top questions asked at the Decimal Technologies interview -

  1. How to call native methods in flutter ...read more
  2. What are the SQL command grou...read more
  3. What is the internal structure and use of a hashm...read more
What are the most common questions asked in Decimal Technologies HR round?

The most common HR questions asked in Decimal Technologies interview are -

  1. What are your salary expectatio...read more
  2. Tell me about yourse...read more
How long is the Decimal Technologies interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

3.8/5

based on 29 interview experiences

Difficulty level

Easy 33%
Moderate 67%

Duration

Less than 2 weeks 78%
2-4 weeks 17%
4-6 weeks 6%
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 50 Interviews
Ginesys Interview Questions
3.8
 • 47 Interviews
ZIGRAM Interview Questions
3.4
 • 39 Interviews
Fleetx.io Interview Questions
3.6
 • 29 Interviews
RGBSI Interview Questions
3.3
 • 27 Interviews
LambdaTest Interview Questions
4.5
 • 26 Interviews
Springworks Interview Questions
4.5
 • 23 Interviews
View all

Decimal Technologies Reviews and Ratings

based on 177 reviews

3.3/5

Rating in categories

3.0

Skill development

3.2

Work-life balance

2.7

Salary

3.1

Job security

3.3

Company culture

2.7

Promotions

2.8

Work satisfaction

Explore 177 Reviews and Ratings
Associate Software Engineer
127 salaries
unlock blur

₹3 L/yr - ₹9.4 L/yr

Software Engineer
89 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Software Developer
65 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Associate Software Developer
37 salaries
unlock blur

₹3 L/yr - ₹6 L/yr

Java Developer
35 salaries
unlock blur

₹3 L/yr - ₹8.5 L/yr

Explore more salaries
Compare Decimal Technologies with

Aurigo

4.7
Compare

Prime Focus Technologies

3.3
Compare

Peel-works

3.6
Compare

Yodlee

3.8
Compare
write
Share an Interview