Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by APT Research Private Limited Team. If you also belong to the team, you can get access from here

APT Research Private Limited Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

APT Research Private Limited Data Analytics Interview Questions, Process, and Tips

Updated 6 Jan 2022

APT Research Private Limited Data Analytics Interview Experiences

1 interview found

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 Minutes
Round difficulty - Medium

The round was of 90 minutes.
The first section had 3 coding questions. (leetcode mediums)
The second section had problems based on probability and linear algebra and general mathematics.
The third section had MCQs based on some puzzles and cs fundamentals.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    Given an array and a target sum, find pairs of elements that add up to the target sum.

    • Iterate through the array and for each element, check if the complement (target sum - current element) exists in a hash set.

    • If the complement exists, add the pair to the result list.

    • Sort the result list based on the first element of each pair, and then the second element if the first elements are equal.

  • Answered by AI
  • Q2. 

    Rotting Oranges Problem Statement

    You are given a grid containing oranges where each cell of the grid can contain one of the three integer values:

    • 0 - representing an empty cell
    • 1 - representing a fre...
  • Ans. 

    Find the minimum time required to rot all fresh oranges in a grid.

    • Iterate through the grid to find rotten oranges and their adjacent fresh oranges.

    • Use BFS or DFS to simulate the rotting process and track the time taken.

    • Return the minimum time taken to rot all fresh oranges or -1 if not possible.

  • Answered by AI
  • Q3. 

    Longest Common Prefix Problem Statement

    You are given an array ‘ARR’ consisting of ‘N’ strings. Your task is to find the longest common prefix among all these strings. If there is no common prefix, you ha...

  • Ans. 

    Find the longest common prefix among an array of strings.

    • Iterate through the characters of the first string and compare with corresponding characters of other strings.

    • Stop when a mismatch is found or when reaching the end of the shortest string.

    • Return the prefix found so far as the longest common prefix.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

This round started with a brief discussion about my projects and previous internship(about 15 mins).
Then it was followed by 2 coding questions(10-12 mins for the first question and 15 mins for the second question).
The interviewer asked me if I had any questions. I asked 2-3 questions about the projects we will be working on the what exactly the company does.

  • Q1. 

    K-th Largest Number in a BST

    Given a binary search tree (BST) consisting of integers and containing 'N' nodes, your task is to find and return the K-th largest element in this BST.

    If there is no K-th la...

  • Ans. 

    Find the K-th largest element in a binary search tree.

    • Perform an in-order traversal of the BST to get elements in ascending order

    • Return the (N-K)th element from the end of the in-order traversal

    • Handle cases where K is out of bounds or no K-th largest element exists

  • Answered by AI
  • Q2. 

    Peak Element Finder

    For a given array of integers arr, identify the peak element. A peak element is an element that is greater than its neighboring elements. Specifically, if arr[i] is the peak, then both...

  • Ans. 

    Find the peak element in an array of integers.

    • Iterate through the array and check if the current element is greater than its neighbors.

    • Handle edge cases where the first or last element can be a peak.

    • Return the peak element found.

  • Answered by AI
Round 3 - Video Call 

(2 Questions)

Round duration - 70 Minutes
Round difficulty - Easy

It was a mix of HR+technical round. A senior person from the company took my interview. He first asked me about my interests and why I want to join this company and about my future goals. He then asked my favourite topic, and I said graphs. Then we had a good discussion on graphs and the different concepts and popular algorithms. Then he asked 2 coding questions, one related to graphs and one related to backtracking.
After this, we had a brief discussion of some of my ML projects.

  • Q1. 

    Evaluate Division Problem Statement

    Given an array of pairs of strings equations representing a fraction and an array of real numbers values. Each element in equations denotes a fraction with the first st...

  • Ans. 

    Evaluate division problem statement with given fractions and values to calculate the value of a given fraction.

    • Use a graph data structure to represent the fractions and values.

    • Perform depth-first search (DFS) to find the value of the given fraction.

    • Multiply the values of the fractions along the path from numerator to denominator to get the final result.

  • Answered by AI
  • Q2. 

    Lexicographically Smallest Array Problem Statement

    You are given an array ARR of 'N' integers and a positive integer 'K'.

    Your task is to determine the lexicographically smallest array that can be obtain...

  • Ans. 

    The task is to determine the lexicographically smallest array that can be obtained by performing at most 'K' swaps of consecutive elements.

    • Iterate through the array and swap elements to make the array lexicographically smallest.

    • Keep track of the number of swaps made and stop when the limit 'K' is reached.

    • Use a sorting algorithm to find the lexicographically smallest array after at most 'K' swaps.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaAbove 8 cgpaA.P.T. PORTFOLIO PVT. LTD. interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, OOPS, DBMS, Machine LearningTime required to prepare for the interview - 12 MonthsInterview preparation tips for other job seekers

Tip 1 : Start early and practice problems regularly.
Tip 2 : Give at least one contest in a week and upsolve the problems after the contest is over.
Tip 3 : For Machine Learning/ Data Science Roles, have a clear understanding of the basics like Linear Algebra, Probability.

Application resume tips for other job seekers

Tip 1 : It is good to have an internship or some projects in your resume.
Tip 2 : Don't put some high-level ml algorithms in your resume unless you know the theory behind those algorithms.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

I applied via Company Website and was interviewed in Oct 2022. There were 3 interview rounds.

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 

Maths,verbal reasoning.
Like percentage,wages, proportional problems

Round 3 - Group Discussion 

Particular topic on political party

Interview Preparation Tips

Interview preparation tips for other job seekers - This is the best platform for surviving ,to be happy

Interview Questionnaire 

1 Question

  • Q1. Basic Questions of Oops and MVC
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Same as posted in advice

Interview Preparation Tips

Interview preparation tips for other job seekers - JavaScript-based interview.
In-depth questions around JS topics such as promises, polyfills, output questions, event loops, web APIs, context, closures, and this.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

1 hour 10 mins, MERN Stack, Face to Face. Mongodb, medium DSA Question, callback, eventloop, NodeJS asynchronous working

Interview Preparation Tips

Interview preparation tips for other job seekers - you should have prior experience in coding
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sort array and questions on project
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Talk about sales and marketing experience And ask how to handle Custmer problem
  • Q2. How to handle a team
Round 3 - Group Discussion 

Target and motivation and how increase company revenue

Interview Preparation Tips

Interview preparation tips for other job seekers - Good for working period and i earn lot of money and enjoy my work

Interview Questionnaire 

2 Questions

  • Q1. How many sub broker can you transfer to IIFL Securities?
  • Ans. 

    The number of sub brokers that can be transferred to IIFL Securities depends on various factors such as their performance, compliance, and eligibility.

    • The number of sub brokers that can be transferred to IIFL Securities is not fixed.

    • It depends on the performance of the sub brokers.

    • It also depends on their compliance with the regulations.

    • Eligibility criteria such as minimum business volume may also apply.

    • The final decis...

  • Answered by AI
  • Q2. How much AUM you can transfer from your old company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't Join. They don't give time to settle a new joinee they just hire and fire
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Nov 2022. There were 5 interview rounds.

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 - One-on-one 

(1 Question)

  • Q1. Introduction to know the candidate
Round 3 - Assignment 

Adsignment based on JD

Round 4 - One-on-one 

(1 Question)

  • Q1. Final interview round to present case and other questions
Round 5 - HR 

(1 Question)

  • Q1. Questions on role and compensation

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on your resume and JD
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Numerical logical round with market related questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Call put strategies

Interview Preparation Tips

Interview preparation tips for other job seekers - Tough mathematical understanding of market is required

Tell us how to improve this page.

Interview Questions from Similar Companies

ICICI Securities Interview Questions
3.9
 • 159 Interviews
Angel One Interview Questions
4.0
 • 135 Interviews
Kotak Securities Interview Questions
3.6
 • 116 Interviews
HDFC Securities Interview Questions
3.6
 • 104 Interviews
Sharekhan Interview Questions
3.9
 • 81 Interviews
Axis Direct Interview Questions
3.8
 • 76 Interviews
Edelweiss Interview Questions
3.9
 • 58 Interviews
IIFL Securities Interview Questions
3.6
 • 19 Interviews
View all
Devops Engineer
14 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Production Support Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive Accountant
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Accounts Executive
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare APT Research Private Limited with

ICICI Securities

3.9
Compare

HDFC Securities

3.6
Compare

Kotak Securities

3.6
Compare

Axis Direct

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