Upload Button Icon Add office photos

Filter interviews by

Decimal Point Analytics Software Developer Intern Interview Questions, Process, and Tips

Updated 17 Oct 2024

Top Decimal Point Analytics Software Developer Intern Interview Questions and Answers

  • 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 smal ...read more
  • Q2. 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 lin ...read more
  • Q3. 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 ...read more

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

Software Developer Intern Interview Questions Asked at Other Companies

Q1. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Amazon
Q2. Fish Eater Problem Statement In a river where water flows from le ... read more
asked in Apple
Q3. Kevin and his Fruits Problem Statement Kevin has 'N' buckets, eac ... read more
asked in CommVault
Q4. Sliding Maximum Problem Statement Given an array of integers ARR ... read more
Q5. Reverse Words in a String: Problem Statement You are given a stri ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - HR 

(2 Questions)

  • Q1. Orientation skills
  • Q2. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - good experience
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

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Maximal rectangal
  • Q2. Loop in linked list
  • Ans. 

    Loop in linked list is a situation where a node points to a previous node in the list, creating an infinite loop.

    • Check for loops using Floyd's cycle detection algorithm

    • Use two pointers, one moving twice as fast as the other, to detect a loop

    • If the fast pointer catches up to the slow pointer, there is a loop

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Basic hr question regarding your project and all
  • Q2. He was more interested in what is my thinking pattern

Skills evaluated in this interview

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

Interview Questionnaire 

4 Questions

  • Q1. Basics of c# .net
  • Q2. MVC architecture
  • Q3. Join statements in sql
  • Ans. 

    Join statements are used in SQL to combine data from two or more tables based on a related column.

    • JOIN keyword is used to combine tables

    • Types of joins include INNER, LEFT, RIGHT, and FULL OUTER

    • ON keyword is used to specify the related column

    • Example: SELECT * FROM table1 JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q4. Azure functions

Interview Preparation Tips

Interview preparation tips for other job seekers - I was interviewed for software engineer position. The whole interview process was awesome and enjoyed it. There will be 2 technical rounds straight. The first will purely technical about your previous company projects and basic programming knowledge, communication. The approach I experienced was really good. Then I was informed by hr immediately that I selected for next round. Another technical round which has basic technical questions and some general questions. I felt most comfort with the person I interviewed by. Then final round was a HR round. In which salary discussion and company policies will be informed. The whole interview process was awesome and I got selected with full satisfaction. The one important thing, "they prefer immediate joiners" the most.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Simple Array Coding Question
Round 2 - Technical 

(2 Questions)

  • Q1. .Net MVC questions like Session Management, Dependency Injection.
  • Q2. OOPS concepts. Most of the questions were around Abstraction and Encapsulation
Round 3 - HR 

(1 Question)

  • Q1. Salary Disucssion and Date of Joining
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Related To MVC view bag,filters, routing etc
Round 2 - Behavioral 

(1 Question)

  • Q1. Personal details and little bit from technical

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't just go there.So much Micromanagement is there hr itself will tell you to learn kannada and you will easily crack the interview because they aren't asking anything just simple questions but when you will join they will want you to work on asp.net core and so much various things as a full stack developer.Worst experience i got here.Literally fully Micromanagement system is there .they will not going to see your efforts and if you broke your leg also they will not give a single day WFH they will just say you have to come or else you have to take LOP.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic on .net like oops, dapper, etc

I applied via Campus Placement and was interviewed in Sep 2022. There were 2 interview rounds.

Round 1 - Coding Test 

There were three questions and you have to do all if you want to get selected because at my time there seeing how many questions people attempted so attempt all the questions

Round 2 - Technical 

(2 Questions)

  • Q1. It was Technical one on one round and you have to give explanation of your codes first then they start asking you questions from OOPS,DBMS and all ... They basically check how much your basics are cleared.
  • Q2. What is Super ? Why Java is platform Independent? What is Multiple Inheritance? What is diamond Problem? What is Normalization? Sql Where condition Query? and many more..
  • Ans. 

    A list of technical questions for a Junior Software Developer position.

    • Super is a keyword in Java used to refer to the parent class.

    • Java is platform independent due to its bytecode being able to run on any platform with a JVM.

    • Multiple Inheritance is the ability for a class to inherit from multiple parent classes.

    • The diamond problem occurs when a class inherits from two classes that have a common ancestor, causing ambig...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for ICRA Analytics Junior Software Developer interview:
  • OOPS
  • DBMS
Interview preparation tips for other job seekers - Be confident give your explanation confidently and don't get afraid they are really nice.

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.

Decimal Point Analytics Software Developer Intern Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Sigmoid Interview Questions
3.3
 • 59 Interviews
Merilytics Interview Questions
3.0
 • 50 Interviews
ICRA Analytics Interview Questions
3.4
 • 39 Interviews
Dunnhumby Interview Questions
4.0
 • 29 Interviews
Royal Research Interview Questions
2.0
 • 26 Interviews
Everest Group Interview Questions
3.3
 • 25 Interviews
Coronis Health Interview Questions
3.7
 • 24 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
381 salaries
unlock blur

₹2 L/yr - ₹6 L/yr

Senior Research Analyst
210 salaries
unlock blur

₹3 L/yr - ₹7.7 L/yr

Software Development Engineer
68 salaries
unlock blur

₹4 L/yr - ₹12 L/yr

Business Analyst
60 salaries
unlock blur

₹4 L/yr - ₹13 L/yr

Senior Business Analyst
56 salaries
unlock blur

₹7 L/yr - ₹17.3 L/yr

Explore more salaries
Compare Decimal Point Analytics with

Markets and Markets

3.2
Compare

LogixHealth

3.5
Compare

Coronis Health

3.7
Compare

Quintessence Business Solutions & Services

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