Upload Button Icon Add office photos

Decimal Point Analytics

Compare button icon Compare button icon Compare

Filter interviews by

Decimal Point Analytics Junior Developer Interview Questions and Answers for Freshers

Updated 28 Nov 2020

Decimal Point Analytics Junior Developer Interview Experiences for Freshers

1 interview found

I applied via Naukri.com and was interviewed before Nov 2019. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Basic SQL queries, Java oops concepts
  • Q2. What's your weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and be very honest while you answer

Top trending discussions

View All
Interview Tips & Stories
1w
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 Decimal Point Analytics?
Ask anonymously on communities.

Interview questions from similar companies

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

1st round was DSA round. Pretty easy

Junior Developer Interview Questions Asked at Other Companies for Fresher

asked in ICRA
Q1. Difference between truncate delete Ddl dml commands Primary key u ... read more
Q2. What is the code to determine whether a number is even or odd?
asked in KB INFOTECH
Q3. What is your experience in web development?
Q4. Tell us about your background and any programming languages you'v ... read more
Q5. What are the key concepts of Object-Oriented Programming (OOP)?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

First round was aptitude with coding round it was easy

Round 2 - Communication round 

(1 Question)

  • Q1. To check communication
Round 3 - Technical 

(1 Question)

  • Q1. Ask question based on datastructures

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare on Data structures and Algorithms

I applied via Company Website and was interviewed in May 2021. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. First round: 2 coding questions 1. Find minimum from sorted rotated array.
  • Q2. 2.relative sort leetcode....... second round: 1. Flower bed leetcode........2. find maximum subarray sum from an array

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers are really good and helpful. Just focus on the questions and try to discuss it with the interviewer. Third round is the managerial where they will discuss about your projects.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Valid parentheses
  • Ans. 

    Valid parentheses check ensures every opening bracket has a corresponding closing bracket in the correct order.

    • Use a stack to track opening parentheses. Example: '(()' -> push '(', push '(', pop ')' -> stack: ['(']

    • For each closing parenthesis, check if the stack is not empty and matches the last opened. Example: '()' -> valid.

    • An empty stack at the end indicates all parentheses were matched. Example: '(()())' -...

  • Answered by AI
  • Q2. Currying with arrow function
  • Ans. 

    Currying is a technique in functional programming where a function with multiple arguments is transformed into a sequence of nested functions, each taking a single argument.

    • Currying can be achieved using arrow functions in JavaScript.

    • Arrow functions automatically bind 'this' and do not have their own 'this' value.

    • Example: const add = a => b => a + b;

    • Example: const addFive = add(5); const result = addFive(3); // result ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. DFS related problem
  • Q2. Machine coding round

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on ds & algo

Skills evaluated in this interview

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

3 questions 3 sum linked list missing sum

Round 2 - HR 

(2 Questions)

  • Q1. System Design and hr principles
  • Ans. 

    System design involves creating a high-level architecture of a software system, while HR principles focus on managing people effectively.

    • System design involves identifying components, defining their interactions, and ensuring scalability and reliability.

    • HR principles include hiring the right talent, providing training and development opportunities, and fostering a positive work culture.

    • Both system design and HR princip...

  • Answered by AI
  • Q2. Projects discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

Skills evaluated in this interview

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

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

  • Q1. DSA Next Greater element 2 Cycle in Linked List and if cycle remove it Best time to buy and sell stocks Coin Change
  • Ans. 

    Key DSA problems: Next Greater Element, Cycle in Linked List, Stock Trading, and Coin Change.

    • Next Greater Element: Find the next greater number for each element in an array. Example: For [4, 5, 2, 10], result is [5, 10, 10, -1].

    • Cycle in Linked List: Detect and remove a cycle using Floyd's Tortoise and Hare algorithm. If a cycle exists, find the start and remove it.

    • Best Time to Buy and Sell Stocks: Maximize profit by fi...

  • Answered by AI
  • Q2. Pyspark Optimisation techniques Wide and Narrow Transportmations Application Master
  • Q3. SQL Top 3 salaries per department Total working hours for an employee
  • Ans. 

    Retrieve the top 3 salaries from each department and calculate total working hours for each employee using SQL queries.

    • Use the ROW_NUMBER() function to rank salaries within each department: SELECT *, ROW_NUMBER() OVER (PARTITION BY department_id ORDER BY salary DESC) AS rank FROM employees.

    • Filter the results to get only the top 3 salaries: WHERE rank <= 3.

    • To calculate total working hours, use SUM() function: SELECT ...

  • Answered by AI
Are these interview questions helpful?
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

It was an easy test. It consisted of MCQs and two coding qns. Prepare SQL well. It also had 2 programming question. Both were medium difficukty

Round 3 - One-on-one 

(1 Question)

  • Q1. It was mainly focussed on my projects. Be thorough with you resume. But it also depends on the interviewer.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in-depth Java and you should know what is on your resume. Medium level of DSA is enough.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Coding Test 

1 coding test having a DP question and some spark based questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Fibonacci using DP
  • Ans. 

    Fibonacci using Dynamic Programming

    • Use an array to store calculated Fibonacci numbers to avoid redundant calculations

    • Start with base cases of 0 and 1, then iterate to calculate subsequent Fibonacci numbers

    • Time complexity can be reduced from exponential to linear using DP

  • Answered by AI
  • Q2. SQL questions ( ranks and partition)
Round 3 - One-on-one 

(1 Question)

  • Q1. Design based questions

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
-
Result
No response

I appeared for an interview in Feb 2024.

Round 1 - Technical 

(5 Questions)

  • Q1. Data structures
  • Q2. Solid Principles
  • Q3. Single responsibility principle
  • Ans. 

    Single responsibility principle states that a class should have only one reason to change.

    • Each class should have only one responsibility

    • Helps in making code more maintainable and easier to understand

    • Promotes separation of concerns

    • Example: A class that handles user authentication should not also handle file management

  • Answered by AI
  • Q4. Javascript question
  • Q5. Object oriented concepts

Skills evaluated in this interview

Tell us how to improve this page.

Interview Questions from Similar Companies

Sigmoid Interview Questions
3.4
 • 62 Interviews
Merilytics Interview Questions
2.9
 • 50 Interviews
ICRA Analytics Interview Questions
3.3
 • 43 Interviews
Dunnhumby Interview Questions
4.0
 • 31 Interviews
Royal Research Interview Questions
2.0
 • 28 Interviews
Coronis Health Interview Questions
3.7
 • 26 Interviews
Everest Group Interview Questions
3.3
 • 25 Interviews
View all
Research Analyst
393 salaries
unlock blur

₹1.6 L/yr - ₹6 L/yr

Senior Research Analyst
210 salaries
unlock blur

₹2.7 L/yr - ₹8.5 L/yr

Software Development Engineer
72 salaries
unlock blur

₹4 L/yr - ₹12.4 L/yr

Business Analyst
62 salaries
unlock blur

₹2.8 L/yr - ₹11 L/yr

Data Scientist
58 salaries
unlock blur

₹6 L/yr - ₹22 L/yr

Explore more salaries
Compare Decimal Point Analytics with

Markets and Markets

3.1
Compare

Ascent Business Solutions

3.3
Compare

LogixHealth

3.5
Compare

Coronis Health

3.7
Compare
write
Share an Interview