Filter interviews by
Clear (1)
I applied via Referral
Top trending discussions
I applied via Campus Placement
I have experience in finance and accounting, with a focus on corporate finance.
Started my career as a financial analyst at XYZ company
Managed financial reporting and analysis for ABC corporation
Led a team of 5 analysts in developing financial models for a merger and acquisition deal
Currently working as a senior financial analyst at DEF corporation
Yes, I have experience in finance. I learned about finance through my education and work experience.
I have a Bachelor's degree in Finance from XYZ University
I have worked as a financial analyst at ABC Company for 2 years
I have experience in financial modeling, budgeting, and forecasting
I have also taken courses in accounting and economics
I stay updated on industry trends and news through financial publications and conf
P/E ratio is a financial metric used to evaluate a company's stock price relative to its earnings per share.
Calculated by dividing the market price per share by the earnings per share
Helps investors determine if a stock is overvalued or undervalued
A high P/E ratio may indicate that investors have high expectations for future growth
A low P/E ratio may indicate that the company is undervalued
Can vary widely between indus...
Mergers and acquisitions refer to the consolidation of companies or assets through various financial transactions.
Mergers involve the combination of two or more companies to form a new entity.
Acquisitions involve one company purchasing another company or its assets.
M&A can be friendly or hostile, depending on the willingness of the parties involved.
M&A can result in cost savings, increased market share, and improved pr...
Receiving Rs.50000 at the beginning of the year is a better deal.
Receiving a lump sum amount at the beginning of the year allows for better investment opportunities.
The time value of money principle suggests that money received earlier is worth more than the same amount received later.
Rs.50000 received at the beginning of the year can be invested in a fixed deposit or mutual fund, earning interest throughout the year.
R...
Income statement for a carpenter buying and selling wood
Revenue from selling wood
Cost of purchasing wood
Labor costs for carpentry work
Equipment and tool expenses
Transportation costs for wood delivery
Overhead expenses such as rent and utilities
Taxes and other fees
Net income or loss
Finance is my passion and DB is a leading global bank with a strong reputation in the industry.
I have always been interested in finance and enjoy analyzing financial data.
DB is a well-respected global bank with a strong reputation in the industry.
I am impressed by DB's commitment to innovation and technology in finance.
DB's focus on sustainability and corporate responsibility aligns with my values.
I am excited about th...
I am a highly motivated finance professional with experience in corporate finance and investment banking.
I have a Bachelor's degree in Finance and an MBA from a top business school.
I have worked for several years in investment banking, where I gained experience in financial modeling, valuation, and deal execution.
I have also worked in corporate finance, where I have been responsible for financial planning and analysis,...
I tend to overthink and can sometimes get stuck in analysis paralysis.
I have a tendency to overanalyze situations
I can get stuck in decision-making processes
I am working on improving my ability to make quick and effective decisions
For example, in my previous job, I would spend too much time analyzing data before making a decision
No, the number of PORs is not a reason for my CGPA.
My CGPA is based on my academic performance and not on my extracurricular activities.
While PORs can enhance my resume, they do not directly impact my grades.
I have managed to maintain a good CGPA despite being involved in fewer PORs.
My focus has always been on academics and I have dedicated my time accordingly.
Morgan Stanley is a top-tier investment bank with a strong reputation for innovation and excellence.
Morgan Stanley has a long history of success in the financial industry
The company is known for its innovative approach to investment banking
Morgan Stanley has a strong reputation for excellence in research and analysis
The firm offers a wide range of services to clients, including wealth management and investment banking
M...
Tower and Morgan Stanley are both financial services companies.
Tower is a global investment management firm with over $1 trillion in assets under management.
Morgan Stanley is a multinational investment bank and financial services company.
Both companies offer a range of financial services including wealth management, investment banking, and asset management.
Tower is known for its focus on sustainable investing, while Mo...
The job profile offered is for an analyst position. A PhD is not required for this role.
The job involves analyzing data and providing insights to clients
A PhD is not necessary as the role focuses more on practical application of analytical skills
The job may require a bachelor's or master's degree in a related field
Examples of job responsibilities may include data collection, statistical analysis, and report writing
Innovations to minimize cost of pen
Use recycled materials for pen body and ink
Simplify design to reduce production costs
Implement refillable ink cartridges to reduce waste and cost
Partner with companies for bulk purchasing of materials
Automate production process to reduce labor costs
Prove N>=N^.5+N^(1/3)+N^(1/4) for N>=a
Use AM-GM inequality
Substitute N with a and prove the inequality holds
Use calculus to find the minimum value of the expression
Finding the probability distribution for the minimum of two random variables with given distributions.
Use the formula P(min(x,y)>z) = P(x>z)P(y>z)
Integrate over the range of z to get the distribution of min(x,y)
Final distribution is 2ke^(-kx)ue^(-ux)exp(-uz)
Given prob. p of dying out and prob. (1-p) of spawning into 2, find prob. of dying out starting from 1 organism.
Use probability tree to visualize outcomes
Probability of dying out starting from 1 is p + (1-p) * (probability of dying out starting from 2)^2
Solve recursively to get final answer
Probability of a rectangle being inside a unit circle with p chosen uniformly on the circle and q inside the circle.
The probability can be found by calculating the ratio of the area of the rectangle to the area of the circle.
The area of the circle is pi and the area of the rectangle can be found using the distance between p and q.
The probability is 1/4.
Example: If the distance between p and q is 0.5, then the area of t...
Find local minima of an array in o(log n) in functional programming.
Use binary search to find the local minima.
Check if the mid element is a local minima, if not, move towards the lower side.
If the mid element is greater than its left element, move towards the left side, else move towards the right side.
Repeat until a local minima is found.
Example: [5, 3, 2, 4, 6, 8, 9] -> local minima is 2.
Code to sort a list without pipes
Use a sorting algorithm like bubble sort, insertion sort, or selection sort
Implement the algorithm in the programming language of your choice
Test the code with different input sizes and types
To find an even length palindrome in a string in O(n), we can use the two-pointer approach.
Initialize two pointers at the center of the string.
Expand the pointers outwards while checking if the characters at both pointers are equal.
If they are not equal, return the previous substring as the even length palindrome.
If the pointers reach the end of the string, return the entire string as the even length palindrome.
Possible values of determinant of matrix A given Avi=Vj for n linear vectors
The possible values of |A| are non-zero as the given vectors are linearly independent
The value of |A| can be calculated using the formula |A| = (-1)^n * det(A)
If the given vectors are orthogonal, then |A| is the product of the magnitudes of the vectors
A and B play a game with unfair coin. A wins if # of heads > #tails +1 at any point. Find prob. of A winning.
The game is played with an unfair coin with P[Heads]=p
A wins if # of heads > #tails +1 at any point
Find the probability of A winning
Find two elements in a sorted array that add up to a given sum in linear time.
Use two pointers, one at the beginning and one at the end of the array.
If the sum of the two pointers is greater than the target, move the right pointer to the left.
If the sum of the two pointers is less than the target, move the left pointer to the right.
Repeat until the sum is found or the pointers meet.
Example: Given [1, 2, 3, 4, 5] and ta
The probability of element at 20th position landing up at 31st position after the first iteration.
The probability depends on the size of the dataset and the algorithm used for iteration.
If the algorithm involves swapping adjacent elements, the probability is higher.
If the dataset is sorted in a way that the element at 20th position is adjacent to the element at 31st position, the probability is 1.
The probability can be...
Expected number of collisions between randomly moving ants on a rod after 30 seconds.
Calculate the probability of two ants colliding at any given time.
Use the formula for expected value to find the expected number of collisions.
Assume that the ants are point masses and collisions are perfectly elastic.
Consider the possibility of multiple ants colliding at the same time.
Simulation can also be used to estimate the expect
Counting permutations where numbers between u and i+1 are less than i for all i in the permutation.
The first number in the permutation must be 1.
For each i in the permutation, all numbers between u and i+1 must be less than i.
Use dynamic programming to count the number of valid permutations.
The answer is (n-1)th Catalan number.
Example: for n=4, the answer is 5.
Finding f(n) for a normal standard distribution with a given constant k.
Calculate the product of probability density function and cumulative distribution function.
Integrate the product of f(x) and F(kx) from -inf to +inf.
The value of k is a constant greater than 0.
Number of inversions in an array in O(nlogn) time.
Use merge sort algorithm to count inversions
Divide the array into two halves and recursively count inversions
Merge the two halves and count split inversions
Time complexity is O(nlogn)
I applied via Referral
I listed a job that I was fired from after only a few weeks.
Listed a job where I was fired after a few weeks
Didn't provide a clear explanation for why I was let go
Didn't highlight any skills or accomplishments from that job
I admire Dr. Raghunath Anant Mashelkar, an IIT Bombay alumnus, for his contributions to science and technology.
Dr. Mashelkar is a chemical engineer and has made significant contributions to the field of polymer science.
He has also served as the Director General of the Council of Scientific and Industrial Research (CSIR) and has been awarded numerous honors, including the Padma Shri and Padma Bhushan.
Dr. Mashelkar has a...
The eurozone crisis refers to the economic and financial difficulties faced by some countries in the European Union.
The crisis began in 2009 with the Greek debt crisis and spread to other countries in the eurozone.
It was caused by a combination of factors including high levels of debt, low economic growth, and structural problems within the eurozone.
The crisis led to bailouts of several countries by the European Centra...
The Libor Scam was a manipulation of the London Interbank Offered Rate (Libor) by banks to benefit their own trading positions.
Libor is a benchmark interest rate used globally for financial products
Banks were found to have manipulated the rate to benefit their own trading positions
The scandal resulted in billions of dollars in fines for banks involved
Several high-profile bankers were also convicted for their involvemen...
Derivatives are financial instruments that derive their value from an underlying asset or security.
Derivatives can be used for hedging or speculation.
Examples of derivatives include futures, options, and swaps.
Derivatives can be traded on exchanges or over-the-counter.
Derivatives can be complex and involve significant risk.
Derivatives played a role in the 2008 financial crisis.
Failure to avoid fiscal cliff could lead to severe economic repercussions globally and in the US, with India also being affected.
The US economy could experience a recession, with a potential decrease in GDP and increase in unemployment rates
Global financial markets could experience volatility and uncertainty
India could be affected due to its close economic ties with the US, with potential impacts on trade and investmen...
Prime Services is a suite of financial services offered by investment banks to hedge funds and other institutional clients.
Prime brokerage
Securities lending
Cash management
Risk management
Trade execution
Reporting and analytics
Examples: Goldman Sachs Prime Services, J.P. Morgan Prime Services
QE stands for Quantitative Easing. It is a monetary policy used by central banks to stimulate the economy.
QE involves the central bank buying government bonds or other securities from the market to increase the money supply.
The increased money supply is intended to lower interest rates, encourage borrowing and spending, and boost economic activity.
QE is typically used when interest rates are already low and traditional...
posted on 4 Dec 2016
I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.
Yes, I have coded in curriculum. The most complex one was a project on building a web application using React and Node.js.
Built a full-stack web application using React and Node.js
Implemented user authentication and authorization using JSON Web Tokens (JWT)
Used MongoDB as the database and Mongoose as the ODM
Implemented real-time updates using Socket.IO
Deployed the application on Heroku
Handled errors and implemented log
Big data refers to large and complex data sets that cannot be processed using traditional data processing methods.
Big data is characterized by its volume, velocity, and variety
It is used in various industries such as healthcare, finance, and retail
Examples of big data include social media data, sensor data, and transactional data
It is called 'big' because it involves processing massive amounts of data
Big data requires ...
I am passionate about technology and eager to learn new skills in the IT sector.
I have always had a keen interest in technology and enjoy working with computers.
I believe the IT sector offers more opportunities for growth and advancement in my career.
I have seen the impact of technology on various industries and want to be a part of that innovation.
I have taken courses in programming and networking to prepare myself fo
To find the product of all data points using SelectSum(), log(), and exp() functions.
Use the log() function to convert the product into a sum of logarithms
Apply the SelectSum() function to calculate the sum of logarithms
Finally, use the exp() function to convert the sum back into the product
I was interviewed in Dec 2016.
Debugging steps for a slow web portal
Check server load and resource usage
Analyze network traffic and latency
Review code for inefficiencies and optimize
Use profiling tools to identify bottlenecks
Consider caching and content delivery networks
Test and monitor performance after changes
Denormalization, indexing, caching, and partitioning can improve query performance.
Denormalize the data to reduce the number of joins required for queries.
Create indexes on frequently queried columns to speed up search.
Cache frequently accessed data in memory to avoid disk reads.
Partition large tables into smaller ones to reduce the amount of data that needs to be scanned.
Use query optimization techniques like query re...
Sorting algorithm organizes data in a specific order.
Choose a sorting algorithm based on the data size and type.
Common sorting algorithms include bubble sort, insertion sort, and quicksort.
Implement the chosen algorithm in code.
Test the algorithm with sample data to ensure it sorts correctly.
My parents inspire me the most.
Their hard work and dedication to providing for our family motivates me to work hard.
Their unwavering support and encouragement has helped me overcome challenges.
Their values and principles have shaped me into the person I am today.
Seeing their sacrifices and selflessness inspires me to be a better person.
A leader should possess qualities like vision, communication, empathy, integrity, and adaptability.
Vision: Ability to see the big picture and set goals accordingly
Communication: Ability to convey ideas clearly and listen actively
Empathy: Ability to understand and relate to others' emotions and perspectives
Integrity: Consistency in values, actions, and decisions
Adaptability: Ability to adjust to changing circumstances a
Morgan Stanley is a top-tier investment bank with a strong reputation for excellence and innovation.
Morgan Stanley has a long history of success in the financial industry
The company is known for its innovative approach to investment banking
Morgan Stanley has a global presence and offers a wide range of services to clients
The firm has a strong commitment to diversity and inclusion
Morgan Stanley is a great place to work
Associate
2.5k
salaries
| ₹0 L/yr - ₹0 L/yr |
Analyst
1.7k
salaries
| ₹0 L/yr - ₹0 L/yr |
Vice President
1.6k
salaries
| ₹0 L/yr - ₹0 L/yr |
Senior Analyst
1.1k
salaries
| ₹0 L/yr - ₹0 L/yr |
Financial Analyst
314
salaries
| ₹0 L/yr - ₹0 L/yr |
JPMorgan Chase & Co.
Morgan Stanley
TCS
Amazon