Upload Button Icon Add office photos

Decimal Point Analytics

Compare button icon Compare button icon Compare

Filter interviews by

Decimal Point Analytics Software Developer Intern Interview Questions and Answers

Updated 17 Oct 2024

Decimal Point Analytics Software Developer Intern Interview Experiences

2 interviews found

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

I applied via Campus Placement and was interviewed before Oct 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude questions

Round 2 - Coding Test 

One graph and one DP question

Round 3 - Technical 

(2 Questions)

  • Q1. Find the repeating element in the array
  • Ans. 

    Use a hashmap to find the repeating element in the array of strings

    • Iterate through the array and store each element in a hashmap with its frequency

    • Check for any element with frequency greater than 1, that is the repeating element

  • Answered by AI
  • Q2. Define four pillars of OOPS.
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation details and showing only the necessary features.

  • Answered by AI

Skills evaluated in this interview

I appeared for an interview in Dec 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

  • Q1. 

    Rahul and Minimum Subarray Challenge

    Rahul, who is passionate about programming, is learning about arrays and lists. He faces a challenging problem to determine the smallest subarray length in a given arr...

  • Ans. 

    The problem is to find the length of the smallest subarray in a given array with its sum greater than a given value.

    • Iterate through the array and keep track of the current subarray sum

    • If the current sum becomes greater than the given value, update the minimum subarray length

    • If the current sum becomes negative, reset the sum and start a new subarray

    • Return the minimum subarray length

  • Answered by AI
  • Q2. 

    Maximum of All Subarrays of Size k

    Given an array of 'N' non-negative integers and an integer 'K', your task is to find the maximum elements for each subarray of size 'K'.

    Input:

    The first line contains...
  • Ans. 

    The task is to find the maximum elements for each subarray of size K in a given array.

    • Iterate through the array and maintain a deque of indices of the maximum elements in the current window of size K.

    • For each new element, remove indices from the deque that are outside the current window.

    • Add the index of the new element to the deque, and print the maximum element of the window if the first index in the deque is outside ...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 20 Minutes
Round difficulty - Medium

This round was mostly resume-based. The interviewer asked about my projects and asked technical questions related to them. He then asked 1 DS question which was to detect whether the linked list is a circular linked list or not. He also asked me for a puzzle in the end.

  • Q1. 

    Circular Linked List Detection

    You are provided with the head of a linked list containing integers. Your task is to determine if the linked list is circular.

    Note:
    • A linked list is considered circula...
  • Ans. 

    The task is to determine whether a given linked list is circular or not.

    • A linked list is circular if the next pointer of the last node points to the first node.

    • An empty linked list is also considered circular.

    • Check if any node has its next pointer equal to NULL.

    • All the integers in the linked list are unique.

    • The next pointer of a node with i'th integer is linked to the node with data (i+1)'th integer.

  • Answered by AI
Round 3 - HR 

Round duration - 10 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in MumbaiEligibility criteria7.5 CGPA and aggregate of 160% in 10th and 12th boardsDecimal Point Analytics interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, MERN, DBMSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice DS & ALGO questions without any day off to help improve your problem solving.
Tip 2 : Get your CS fundamentals strong.

Application resume tips for other job seekers

Tip 1 : Have some projects on resume. 
Tip 2 : You should not fake things on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

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
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Round one was an online coding test where there were 5 sections :

1 - dsa - medium

2 - Java - Easy

3 - OOP - Easy

4 - Git - Easy

Round 2 - One-on-one 

(5 Questions)

  • Q1. 1 - where is bean annotation used in springboot ?... In class or method
  • Ans. 

    Bean annotation is used in Spring Boot on class or method to indicate that a method produces a bean to be managed by the Spring container.

    • Bean annotation is used on methods within a class to indicate that the method produces a bean to be managed by the Spring container.

    • It can also be used at the class level to indicate that the class itself is a Spring bean.

    • For example, @Bean annotation can be used on a method that cre...

  • Answered by AI
  • Q2. Which access modifier to restrict interface method access to only derived or implemented classes
  • Ans. 

    Protected access modifier restricts interface method access to only derived or implemented classes.

    • Use 'protected' access modifier to restrict access to only derived or implemented classes

    • Protected members are accessible within the same package or by subclasses

    • Example: 'protected void methodName() {}' in an interface

  • Answered by AI
  • Q3. How does one services interact with other in microservice
  • Ans. 

    Microservices interact with each other through APIs, messaging, or events.

    • Microservices communicate with each other through APIs, which can be synchronous or asynchronous.

    • Messaging systems like RabbitMQ or Kafka can be used for communication between microservices.

    • Events can be used for loosely coupled communication between microservices.

    • Service discovery mechanisms like Eureka or Consul help microservices locate and co...

  • Answered by AI
  • Q4. In an integer array where element represent stock price and index represent days how to detect the best day to buy and best day to sell in O(N)
  • Ans. 

    To detect the best day to buy and sell stock in an integer array representing stock prices and days in O(N).

    • Iterate through the array and keep track of the minimum price seen so far.

    • Calculate the profit by subtracting the current price from the minimum price.

    • Update the maximum profit and best buy/sell days accordingly.

    • Return the best buy and sell days to maximize profit.

  • Answered by AI
  • Q5. In an integer array find the next greatest number for all and display in O(N)
  • Ans. 

    Find the next greatest number for each integer in an array in O(N) time complexity.

    • Iterate through the array from right to left

    • Use a stack to keep track of potential next greatest numbers

    • Pop elements from the stack that are less than the current element and update their next greatest number to the current element

    • Push the current element onto the stack

    • Repeat until all elements have a next greatest number

  • Answered by AI

Skills evaluated in this interview

I applied via Referral and was interviewed in Aug 2021. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Find k min elements in given array.
  • Ans. 

    Find k min elements in given array.

    • Sort the array and return the first k elements.

    • Use a min heap of size k to find the k min elements.

    • Use quickselect algorithm to find the kth smallest element and return first k elements smaller than it.

  • Answered by AI
  • Q2. Find that given tree is BST or not.
  • Ans. 

    Check if a given tree is a Binary Search Tree (BST) or not.

    • Traverse the tree in-order and check if the elements are in ascending order.

    • Check if the maximum value in the left subtree is less than the root and the minimum value in the right subtree is greater than the root.

    • Use recursion to check if all subtrees are BSTs.

    • Time complexity: O(n), Space complexity: O(h) where h is the height of the tree.

  • Answered by AI
  • Q3. Find pair in BST with given sum
  • Ans. 

    Given a BST and a sum, find a pair of nodes whose values add up to the given sum.

    • Traverse the BST in-order and store the nodes in a list

    • Use two pointers approach to find the pair with the given sum

    • If the sum is less than the current pair, move the right pointer to the left

    • If the sum is greater than the current pair, move the left pointer to the right

    • If the sum is equal to the current pair, return the pair

    • Time complexit...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview was Focused on DS Algo mostly.
2 technical round ( DS Algo)
1 managerial round ( General past working experiences questions)

Skills evaluated in this interview

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

1st round was DSA round. Pretty easy

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
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

1 coding question, and basic MCQ

Are these interview questions helpful?

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.
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 - Coding Test 

Two easy questions two wasy questions two easy questions two easy questions

Round 3 - Technical 

(2 Questions)

  • Q1. Technical interviews was very easy techijcal interviews was very easy very easy very easy
  • Q2. Interviews was conducted in advance of a news conference in the United Kingdom and the European government on Tuesday

Interview Preparation Tips

Interview preparation tips for other job seekers - Ghar was the second man killed by an twowwywiwywuw The new rules would be similar y
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

Decimal Point Analytics Interview FAQs

How many rounds are there in Decimal Point Analytics Software Developer Intern interview?
Decimal Point Analytics interview process usually has 3 rounds. The most common rounds in the Decimal Point Analytics interview process are Aptitude Test, Coding Test and Technical.
What are the top questions asked in Decimal Point Analytics Software Developer Intern interview?

Some of the top questions asked at the Decimal Point Analytics Software Developer Intern interview -

  1. Find the repeating element in the ar...read more
  2. define four pillars of OO...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

Sigmoid Interview Questions
3.4
 • 62 Interviews
Merilytics Interview Questions
2.9
 • 51 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

Decimal Point Analytics Software Developer Intern Reviews and Ratings

based on 3 reviews

4.7/5

Rating in categories

4.7

Skill development

4.7

Work-life balance

3.6

Salary

4.7

Job security

4.7

Company culture

3.9

Promotions

5.0

Work satisfaction

Explore 3 Reviews and Ratings
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.7 L/yr - ₹11 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