Add office photos
Engaged Employer

FactSet

3.9
based on 1.4k Reviews
Video summary
Filter interviews by

20+ Axel Polymers Interview Questions and Answers

Updated 22 Mar 2025
Popular Designations

Q1. Design Database schema for supermarket (Reliance Fresh) taking care of all the factors about details of discounts and offers to customers. -puzzle as follows: __ __ __ __ __ __ __ __ __ __ 0 1 2 3 4 5 6 7 8 9 F...

read more
Ans.

Design a database schema for a supermarket with discounts and offers. Solve a puzzle to fill numbers in a blank grid.

  • Create tables for customers, products, discounts, and offers

  • Use foreign keys to link tables

  • Include columns for discount type, amount, and validity period

  • Use a trigger to update discounts and offers based on customer purchase history

  • Puzzle solution: 9 8 7 6 5 4 3 2 1 0

Add your answer

Q2. Given an array and a number k, find all pairs of numbers in array whose sum is least near to k

Ans.

Find pairs of numbers in array whose sum is least near to k

  • Sort the array in ascending order

  • Use two pointers approach to find the pair closest to k

  • Keep track of the minimum difference between k and the sum of pairs

  • Return all pairs with the minimum difference

Add your answer

Q3. Given a matrix of characters and a string, find the first index of string in matrix. String can be horizontally, vertically, diagonally present in any direction. Eg: s t d i h string: dog d t o j w c x g p q an...

read more
Ans.

Given a matrix of characters and a string, find the first index of string in matrix. String can be horizontally, vertically, diagonally present in any direction.

  • Iterate through each character in the matrix and check if it matches the first character of the string.

  • If it matches, check if the remaining characters of the string are present in the same direction.

  • Repeat the above step for all possible directions.

  • Return the index of the first character of the string if found, else ...read more

Add your answer

Q4. -print the element that is common in all rows of a matrix Eg: 2 3 7 1 7 8 ans is 7. 6 9 7

Ans.

Find the common element in all rows of a matrix.

  • Iterate through each element of the first row and check if it exists in all other rows.

  • If an element is found in all rows, return it.

  • If no common element is found, return null or a message indicating the same.

Add your answer
Discover Axel Polymers interview dos and don'ts from real experiences

Q5. How to find intersecting point of two linked lists. (most efficient way)

Ans.

To find intersecting point of two linked lists, use two pointers and traverse both lists simultaneously.

  • Use two pointers, one for each linked list, and traverse both lists simultaneously

  • If one pointer reaches the end of a list, redirect it to the head of the other list

  • When both pointers point to the same node, that is the intersecting point

Add your answer

Q6. Cost of Debt or Cost of Equity - which is higher?

Add your answer
Are these interview questions helpful?

Q7. Find median of two sorted arrays. O(logM + logN)

Ans.

Find median of two sorted arrays in O(logM + logN) time complexity.

  • Use binary search to find the partition point in both arrays.

  • Calculate the left and right elements of the partition in both arrays.

  • If the left elements are smaller than the right elements, we have found the median.

  • If not, adjust the partition point accordingly and repeat the process.

  • If the total number of elements is odd, median is the max of left elements.

  • If the total number of elements is even, median is the...read more

Add your answer

Q8. Why Share Capital is shown on the liability side of the Balance Sheet?

Ans.

Share capital is shown on the liability side of the Balance Sheet because it represents the funds raised from shareholders, which are owed back to them.

  • Share capital represents the amount of money that shareholders have invested in the company.

  • It is considered a liability because the company has an obligation to repay this amount to shareholders if the company is liquidated.

  • Share capital is typically shown under the 'Shareholders' Equity' section of the Balance Sheet.

  • It is im...read more

Add your answer
Share interview questions and help millions of jobseekers 🌟

Q9. How is RSI (one of the technical indicators) derives its value

Ans.

RSI is calculated based on the average gain and loss over a specified period of time.

  • RSI is calculated using the formula: RSI = 100 - (100 / (1 + RS)), where RS = Average Gain / Average Loss

  • Typically, RSI is calculated over a 14-day period, but this can be adjusted based on the trader's preference

  • RSI values range from 0 to 100, with readings above 70 indicating overbought conditions and readings below 30 indicating oversold conditions

Add your answer

Q10. Zig-zag traversal of binary tree

Ans.

Zig-zag traversal of binary tree is a traversal technique where nodes are visited in a zig-zag pattern.

  • Start from the root node and traverse the first level from left to right.

  • For the second level, traverse from right to left.

  • Continue this pattern for all levels of the tree.

  • Use a stack or queue to keep track of the nodes to be visited.

  • Example: For a binary tree with root node 1, the zig-zag traversal would be 1 3 2 4 5 6 7.

Add your answer

Q11. What do you know about PEG Ratio?

Ans.

PEG Ratio is a valuation metric that takes into account a company's growth rate in addition to its P/E ratio.

  • PEG Ratio is calculated by dividing the P/E ratio by the annual earnings growth rate.

  • A PEG Ratio of 1 is considered fair value, below 1 may indicate undervaluation, and above 1 may indicate overvaluation.

  • It helps investors assess whether a stock is overvalued or undervalued based on its growth prospects.

  • For example, if a company has a P/E ratio of 20 and an annual earn...read more

Add your answer

Q12. What do you mean by P/E Ratio?

Ans.

P/E Ratio is a financial metric used to evaluate a company's stock price relative to its earnings per share.

  • P/E Ratio stands for Price-to-Earnings Ratio.

  • It is calculated by dividing the current market price of a stock by its earnings per share (EPS).

  • A high P/E Ratio may indicate that a stock is overvalued, while a low P/E Ratio may suggest undervaluation.

  • Investors use P/E Ratio to assess the attractiveness of a stock's valuation.

  • For example, if a company's stock is trading at...read more

Add your answer

Q13. What Is fund Accounting

Ans.

Fund accounting is a specialized form of accounting used by non-profit organizations and government agencies to track and manage funds separately for specific purposes.

  • Fund accounting involves tracking and reporting on funds designated for specific purposes or projects.

  • Each fund has its own set of financial records to ensure transparency and accountability.

  • It is commonly used by non-profit organizations, government agencies, and investment companies.

  • Examples include tracking ...read more

Add your answer

Q14. What is Capital market

Ans.

Capital market is a financial market where long-term debt or equity-backed securities are bought and sold.

  • Capital market is where companies and governments raise long-term funds through the issuance of stocks and bonds.

  • Investors buy these securities in the hope of earning a return on their investment.

  • Examples of capital market participants include stock exchanges, investment banks, and institutional investors.

Add your answer

Q15. Difference between FDI and FII

Add your answer

Q16. work of an investment banker

Add your answer

Q17. What is bonds and benefits

Add your answer

Q18. Diff between Nasdaq and DJIA

Add your answer

Q19. What is fixed income

Add your answer

Q20. What are green bonds

Ans.

Green bonds are fixed-income securities designed to fund projects that have positive environmental or climate benefits.

  • Green bonds are issued by governments, municipalities, or corporations to finance projects such as renewable energy, energy efficiency, clean transportation, and sustainable water management.

  • Investors who purchase green bonds are supporting environmentally friendly initiatives while earning a return on their investment.

  • The green bond market has been growing r...read more

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at Axel Polymers

based on 172 interviews
Interview experience
4.3
Good
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

3.9
 • 414 Interview Questions
4.2
 • 188 Interview Questions
4.0
 • 179 Interview Questions
4.2
 • 155 Interview Questions
4.5
 • 138 Interview Questions
View all
Top FactSet Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
75 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter