Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by A.P.T. Portfolio Team. If you also belong to the team, you can get access from here

A.P.T. Portfolio Verified Tick

Compare button icon Compare button icon Compare
3.0

based on 14 Reviews

Filter interviews by

A.P.T. Portfolio Interview Questions, Process, and Tips

Updated 7 Nov 2024

Top A.P.T. Portfolio Interview Questions and Answers

View all 9 questions

A.P.T. Portfolio Interview Experiences

Popular Designations

7 interviews found

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

2 coding questions based on DSA.

Round 2 - Technical 

(2 Questions)

  • Q1. Easy coding problem.
  • Q2. Medium coding problem.

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (169)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Nov 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 Hour test comprising of CP questions. Basic leetcode

Round 2 - Technical 

(1 Question)

  • Q1. How to make a fair game out of an unfair die that shows heads with a prob p
  • Ans. 

    To make a fair game out of an unfair die showing heads with probability p, we can introduce a penalty for rolling heads.

    • Introduce a penalty for rolling heads, such as losing a point or skipping a turn.

    • Adjust the game rules to account for the unfair die, ensuring that the penalty balances out the advantage of rolling heads.

    • Consider incorporating strategic elements or decision-making to mitigate the impact of the unfair

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well from general quant resources and have a good CP foundation

Quantitative Researcher Interview Questions asked at other Companies

Q1. Clarification about what CPI stands(Is it the same as Grade Point Average?)
View answer (1)

Trade Analyst Interview Questions & Answers

user image Anonymous

posted on 10 Aug 2024

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

I applied via LinkedIn and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - HR 

(2 Questions)

  • Q1. Basic Introduction about yourself
  • Q2. We would like to hire you
  • Ans. 

    I am excited about the opportunity to contribute my skills and experience to your team.

    • I have a strong background in trade analysis, with experience in market research and forecasting.

    • I am proficient in data analysis tools such as Excel, Tableau, and SQL.

    • I have a proven track record of delivering actionable insights and recommendations to drive business growth.

    • I am a team player and thrive in a fast-paced, collaborativ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing , they will hire you if you have NISM certification already NISM 1,8 NCFM CMDM module

Trade Analyst Interview Questions asked at other Companies

Q1. What is option chain analysis how do you choose strick prices and how you calculate all greeks to know options premium.
View answer (2)

Data Analytics Interview Questions & Answers

user image CodingNinjas

posted on 6 Jan 2022

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

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to return the list of all pairs of elements such that each sum of elements of each pair eq...

  • Ans. Brute Force
    • Initialize a list to store our results.
    • For each element in the array 'ARR[i]', check if ('ARR[i]' + ‘ARR[j]’), equals to given sum or not, where ‘i’ < ‘j’ < ‘N’.
    • If the condition matches, add the pair('ARR[i]', ‘ARR[j]’) to the list. Sort the list of pairs as per the given output format and return this list.
    Space Complexity: O(1)Explanation:

    O(1).

     

    Constant extra space is required.

    Time Complexity: O...
  • Answered by CodingNinjas
  • Q2. Rotting Oranges

    You have been given a grid containing some oranges. Each cell of this grid has one of the three integers values:

  • Value 0 - representing an empty cell.
  • Value 1 - representing a fresh...
  • Ans. Naïve Solution

    The idea is very simple and naive. We will process the rotten oranges second by second. Each second, we rot all the fresh oranges that are adjacent to the already rotten oranges. The time by which there are no rotten oranges left to process will be our minimum time.

     

    In the first traversal of the grid, we will process all the cells with value 2 (rotten oranges). We will also mark their adjacent cells ...

  • Answered by CodingNinjas
  • Q3. Longest Common Prefix

    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 have to return an emp...

  • Ans. Iterative Scanning

    In this approach, we will iterate through each character of the first string and check if the same character exists in each string or not. We will maintain a variable longestPrefix to store the longest common prefix.

     

    We will traverse idx from 0 to the length of ARR[0] -1.

    1. We will iterate index from 1 to N-1 and check if ARR[index][idx] is equal to ARR[0][idx].
    2. If the condition is true for all strin...
  • Answered by CodingNinjas
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 BST

    You are given a binary search tree of integers with 'N' nodes. Your task is to return the K-th largest element of this BST.

    If there is no K-th largest element in the BST,...

  • Ans. Inorder Traversal

    We can store all the elements of the BST in ascending order in an array/list with the help of one inorder traversal. We can then return the K-th largest element from it.

     

    The algorithm will be-

    • In each recursive call, we will-
      • Recurse over the left subtree.
      • Insert the data associated with the current node in an array/list.
      • Recurse over the right subtree.
    • If the number of nodes is less than ‘K’ we return...
  • Answered by CodingNinjas
  • Q2. Find Peak Element

    Given an array of ‘n’ integers arr. Find the Peak element of the array. The peak element of an array is defined as that element which is greater than both of its neighbours. I.e if arr[i]...

  • Ans. Brute force approach
    • The key idea is to check if each element is a peak or not.
    • To do that we first check if one of the first or last element is peak.
    • For that, we simply check if the array is sorted in increasing or decreasing order.
    • Otherwise, we take a loop from index=1 and for each element, compare it to its left and right element to see if it is greater than both of them.
    • If it is, we have found the peak element and we...
  • Answered by CodingNinjas
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

    You are given an array of pairs of strings 'EQUATIONS', and an array of real numbers 'VALUES'. Each element of the 'EQUATIONS' array denotes a fraction where the f...

  • Ans. DFS based Approach

    The idea is to construct a weighted directed graph from the given equations. For each given equation, let’s make an edge from the numerator variable to the denominator variable with weight equal to the value of the equation and another edge from the denominator to the numerator with weight equal to the inverse of the value of the equation. After making the graph to solve any query, we will need to fin...

  • Answered by CodingNinjas
  • Q2. Lexicographically Smallest Array

    You have been given an array/list ARR consisting of ‘N’ integers. You are also given a positive integer ‘K’.

    Your task is to find the lexicographically smallest ARR that ...

  • Ans. Greedy Approach

    Looking at the problem, we observe that-

    • The lexicographically smallest ARR is obtained if the smallest element is present at the beginning i.e ARR[0], followed by the next smallest at index 1 (ARR[1]) and so on.
    • The number of swaps to move an element from index ‘i’ to index ‘j’ (where i > j) is i - j as we can swap only neighbouring elements.
    • The maximum swaps allowed are ‘K’.

     

    Keeping the above poi...

  • Answered by CodingNinjas

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

Top A.P.T. Portfolio Data Analytics Interview Questions and Answers

Q1. Pair SumYou are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to return the list of all pairs of elements such that each sum of elements of each pair equals 'S'. Note: Each pair should be sorted i.e the first val... read more
View answer (3)

Data Analytics Interview Questions asked at other Companies

Q1. Ways To Make Coin ChangeYou are given an infinite supply of coins of each of denominations D = {D0, D1, D2, D3, ...... Dn-1}. You need to figure out the total number of ways W, in which you can make a change for value V using coins of denom... read more
View answer (4)

A.P.T. Portfolio interview questions for popular designations

 Data Analytics

 (1)

 Data Center Engineer

 (1)

 Junior Data Analyst

 (1)

 Quantitative Researcher

 (1)

 Senior Software Engineer

 (1)

 Software Engineer

 (1)

 Trade Analyst

 (1)

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 

3 coding questions

Round 3 - One-on-one 

(1 Question)

  • Q1. Design a Time Series Database
  • Ans. 

    A time series database stores data points with timestamps for efficient retrieval and analysis.

    • Choose a suitable data model for the database

    • Use a time-based partitioning scheme for efficient data retrieval

    • Implement compression techniques to reduce storage requirements

    • Support for querying and analyzing time-based data

    • Ensure data consistency and durability

    • Consider scalability and high availability

    • Examples: InfluxDB, Time

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode prep will help. Do system design practice thoroughly.

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)

I applied via campus placement at Indian Institute of Technology (IIT), Chennai and was interviewed in Jul 2022. There were 2 interview rounds.

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

DSA based qns and with basic jee probability level questions

Interview Preparation Tips

Interview preparation tips for other job seekers - practice more to keep your track on part

Junior Data Analyst Interview Questions asked at other Companies

Q1. What is the main difference between data mining and data analysis?
View answer (4)

I applied via Naukri.com and was interviewed in Dec 2021. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic linux and windows server related questions
Round 2 - HR 

(1 Question)

  • Q1. Work experience and job profile and salary discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Answer confidentially and prepare linux and window os questions

Data Center Engineer Interview Questions asked at other Companies

Q1. What is hardware layer, software layer in OSI Layer?
View answer (1)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Oct 2024.

Round 1 - Aptitude Test 

Basic Financial Accounting concepts
Email Writing
Logical Reasoning

Round 2 - Technical 

(4 Questions)

  • Q1. What goes in the line items of Income Statement?
  • Ans. 

    Line items in an Income Statement include revenues, expenses, gains, and losses.

    • Revenue: Sales of goods or services

    • Cost of Goods Sold (COGS): Direct costs related to producing goods sold

    • Gross Profit: Revenue minus COGS

    • Operating Expenses: Costs related to running the business (e.g. salaries, rent)

    • Operating Income: Gross profit minus operating expenses

    • Interest Expense: Cost of borrowing money

    • Net Income: Total profit afte...

  • Answered by AI
  • Q2. What is Investment Banking?
  • Ans. 

    Investment banking involves providing financial advisory services to corporations, governments, and other institutions for raising capital, mergers and acquisitions, and other financial transactions.

    • Helps companies raise capital through issuing stocks or bonds

    • Assists in mergers and acquisitions by providing valuation and negotiation services

    • Provides financial advisory services for various transactions such as IPOs, deb...

  • Answered by AI
  • Q3. Explain the impact of share buyback on the 3 financial statements.
  • Ans. 

    Share buybacks impact financial statements by reducing outstanding shares, increasing EPS, and affecting cash flow.

    • Share buybacks reduce the number of outstanding shares on the balance sheet.

    • This can increase earnings per share (EPS) as the same amount of earnings is distributed among fewer shares.

    • On the income statement, share buybacks can lead to higher EPS and potentially higher stock prices.

    • Share buybacks can also ...

  • Answered by AI
  • Q4. Impact of bonus share issue on 3 financial statements.
  • Ans. 

    Bonus share issue impacts financial statements by increasing equity on balance sheet, reducing retained earnings, and affecting earnings per share.

    • Increase in equity on balance sheet due to additional shares issued at no cost

    • Reduction in retained earnings as company's profits are distributed among more shareholders

    • Impact on earnings per share as number of shares outstanding increases

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I was prepared for Valuations and Financial Modelling questions but the Accounting questions caught me off guard. Was even suggested by the recent hires to prepare well on the Relative Valuations which I did, but still not even one question was asked about finance, the whole interview revolved around Accounting, and 2 questions of the "impact on FS", which I found to be a difficult scenario, since I knew the basic stuff like what would be the impact of Purchase of Machinery/Debtors written off. But share buyback/bonus issue was a type of question which witnessed for the first time.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Learning environment
  • Q2. Approachable to seniors
  • Q3. Friendly culture
  • Q4. Best learning place
  • Ans. 

    The best learning place is through hands-on experience and continuous self-improvement.

    • Hands-on experience allows for practical application of knowledge

    • Continuous self-improvement through reading, courses, and mentorship

    • Learning from mistakes and seeking feedback for growth

    • Networking with industry professionals for new perspectives

  • Answered by AI
  • Q5. Process team working on daily basis for better solution. Best place for work
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Implement LRU cache
  • Q2. Some git Commands, SQL query,Kafka

A.P.T. Portfolio Interview FAQs

How many rounds are there in A.P.T. Portfolio interview?
A.P.T. Portfolio interview process usually has 2 rounds. The most common rounds in the A.P.T. Portfolio interview process are Coding Test, Technical and HR.
How to prepare for A.P.T. Portfolio 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 A.P.T. Portfolio. The most common topics and skills that interviewers at A.P.T. Portfolio expect are Linux, Accounting, Finance, Production Support and Scripting.
What are the top questions asked in A.P.T. Portfolio interview?

Some of the top questions asked at the A.P.T. Portfolio interview -

  1. How to make a fair game out of an unfair die that shows heads with a pro...read more
  2. Design a Time Series Datab...read more
  3. Basic linux and windows server related questi...read more

Tell us how to improve this page.

A.P.T. Portfolio Interview Process

based on 3 interviews in last 1 year

Interview experience

5
  
Excellent

People are getting interviews through

based on 4 A.P.T. Portfolio interviews
Job Portal
Campus Placement
Referral
50%
25%
25%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

ICICI Securities Interview Questions
3.9
 • 142 Interviews
Angel One Interview Questions
3.9
 • 126 Interviews
Kotak Securities Interview Questions
3.6
 • 110 Interviews
HDFC Securities Interview Questions
3.6
 • 99 Interviews
Axis Direct Interview Questions
3.9
 • 76 Interviews
Sharekhan Interview Questions
3.9
 • 76 Interviews
Edelweiss Interview Questions
3.9
 • 57 Interviews
IIFL Securities Interview Questions
3.7
 • 19 Interviews
View all

A.P.T. Portfolio Reviews and Ratings

based on 14 reviews

3.0/5

Rating in categories

3.4

Skill development

3.5

Work-Life balance

3.4

Salary & Benefits

3.1

Job Security

2.9

Company culture

2.9

Promotions/Appraisal

3.1

Work Satisfaction

Explore 14 Reviews and Ratings
Devops Engineer
11 salaries
unlock blur

₹8 L/yr - ₹22.5 L/yr

Software Engineer
9 salaries
unlock blur

₹13 L/yr - ₹22.7 L/yr

Production Support Engineer
7 salaries
unlock blur

₹25 L/yr - ₹42 L/yr

Senior Accounts Executive
5 salaries
unlock blur

₹12 L/yr - ₹25 L/yr

Executive Accountant
5 salaries
unlock blur

₹6.5 L/yr - ₹12 L/yr

Explore more salaries
Compare A.P.T. Portfolio with

ICICI Securities

3.9
Compare

HDFC Securities

3.6
Compare

Kotak Securities

3.6
Compare

Axis Direct

3.9
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview