Analyst
400+ Analyst Interview Questions and Answers for Freshers

Asked in Capgemini

Q. What fields in EXTC are related to IT?
Fields in EXTC related to IT
Digital Signal Processing
Microprocessors and Microcontrollers
Computer Networks
Data Communication
Wireless Communication
Mobile Communication
Internet of Things
Cloud Computing
Artificial Intelligence
Machine Learning

Asked in Goldman Sachs

Q. Given there are 2 kinds of coins spread all over the world, and we start picking coins, what is the expected number of coins to pick, to have both kinds of coins in hand?
Calculate the expected number of coin picks to obtain both types of coins.
This is a classic problem in probability theory known as the 'Coupon Collector's Problem'.
To find both types of coins, we can model the process as drawing from a set of two distinct items.
The expected number of draws to get both types can be calculated using the formula: E = n * (1 + 1/2 + 1/3 + ... + 1/n).
For 2 types of coins, the expected number of picks is E = 2 * (1 + 1/2) = 3.
This means on average,...read more

Asked in Oyo Rooms

Q. How do you solve a linear programming problem graphically?
Graphical method for solving linear programming problems involves plotting constraints and finding feasible regions.
Identify the objective function, e.g., maximize profit: Z = 3x + 4y.
Determine constraints, e.g., x + 2y ≤ 8 and 3x + y ≤ 12.
Graph the constraints on a coordinate plane to find the feasible region.
Identify corner points of the feasible region, e.g., (0,0), (0,4), (4,0), (3,3).
Evaluate the objective function at each corner point to find the optimal solution.

Asked in Statestreet HCL Services

Q. Trade life cycle and types of tlc where it functions.
Trade life cycle includes pre-trade, trade execution, trade confirmation, settlement, and accounting. It functions in various types of trades.
Trade life cycle involves pre-trade, trade execution, trade confirmation, settlement, and accounting
It functions in various types of trades such as equity, fixed income, foreign exchange, and derivatives
In equity trading, the trade life cycle starts with the order placement and ends with the settlement of the trade
In foreign exchange tr...read more

Asked in Nielsen

Q. What is the process of launching a new product to market? Explain each step.
Launching a new product involves several steps, from ideation to market launch.
Conduct market research to identify customer needs and preferences
Develop a product concept and create a prototype
Test the product with focus groups and make necessary adjustments
Create a marketing plan and determine pricing strategy
Launch the product and monitor sales and customer feedback
Make any necessary improvements or adjustments based on feedback
Continue to promote and market the product to ...read more

Asked in KPMG India

Q. Explain P2P process and also explain how will you audit the same
P2P process involves procurement of goods/services from a supplier and payment to the supplier.
P2P stands for Procure-to-Pay process
It involves identifying the need for goods/services, selecting a supplier, creating a purchase order, receiving the goods/services, and making payment to the supplier
The audit of P2P process involves reviewing the controls in place to ensure accuracy and completeness of transactions, verifying the existence of proper documentation, and testing th...read more
Analyst Jobs




Asked in UBS

Q. What in your opinion would be the repercussions if the fiscal cliff was not avoided, both in US and in the global economy. Will India be affected and why?
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 investment
The failure to address the fiscal cliff could also lead t...read more

Asked in Ola Cabs

Q. What is WACC? How do value a company? Suggest a method that can help you decide on project undertaking?
WACC is the weighted average cost of capital. To value a company, one can use various methods such as DCF, comparables, or precedent transactions. A method to decide on project undertaking is NPV analysis.
WACC is the average cost of all the capital a company has raised
To value a company, one can use DCF, comparables, or precedent transactions
DCF involves projecting future cash flows and discounting them back to present value
Comparables involves comparing the company to simila...read more
Share interview questions and help millions of jobseekers 🌟

Asked in Dunnhumby

Q. A Big Bazaar store had low profits for the last two months. What's going on?
Low profits in Big Bazaar store for last two months.
Check if there is a decrease in footfall or sales.
Analyze the competition in the area.
Check if there are any supply chain issues.
Evaluate the marketing strategies and promotions.
Assess the economic conditions of the area.
Consider the impact of COVID-19 on consumer behavior.
Review the store's inventory management and pricing strategies.

Asked in Snapdeal

Q. A cube is painted with six different colors, one color per face. How many distinct cubes can be made?
There are 6 colors, so 6^3 = 216 different cubes can be obtained.
The cube has 6 faces, each of which can be one of 6 colors.
Therefore, there are 6 options for the first face, 6 for the second, and 6 for the third.
To find the total number of possible cubes, we multiply these options together: 6 x 6 x 6 = 216.

Asked in Fractal Analytics

Q. How many people attended the Standard Chartered Mumbai Marathon?
The number of attendees at StanChart Mumbai Marathon is not available.
Data on the number of attendees is not available.
The organizers have not released any official figures.
It is unclear how many people participated in the marathon.


Q. The client is experiencing problems with its BPO, resulting in dissatisfied customers. How would you identify the problems in the call center? Suggest solutions.
Identifying problems and suggesting solutions for dissatisfied customers in BPO call center.
Conduct customer satisfaction surveys to identify specific issues
Analyze call recordings to identify agent behavior and training needs
Review call center metrics such as average handle time and first call resolution
Implement additional training for agents on customer service and problem-solving
Improve communication channels between agents and management for issue escalation and resoluti...read more

Asked in Goldman Sachs

Q. You have an n x n matrix in which all the rows and all the columns are sorted. Given an input number, describe an algorithm to search for the number in the matrix
Algorithm to search for a number in an n x n matrix with sorted rows and columns.
Start from the top-right corner of the matrix
If the current element is greater than the target, move left
If the current element is less than the target, move down
Repeat until the target is found or the bottom-left corner is reached

Asked in Dunnhumby

Q. You have two brands of milk that you can sell in your store. Which one would you pick?
I would pick the brand that has a higher quality and better taste.
Check the quality and taste of both brands
Consider the price of each brand
Look at the expiration date of both brands
Consider the popularity of each brand among customers

Asked in Capgemini

Q. What's the difference between final and finally keywords in Java?
final keyword is used to declare a constant value while finally is used to define a block of code that will be executed after a try-catch block.
final keyword is used to declare a variable whose value cannot be changed
finally keyword is used to define a block of code that will be executed after a try-catch block
final can be used with classes, methods, and variables
finally is always used with try-catch block
Example: final int x = 10; try { //some code } catch(Exception e) { //s...read more

Asked in Allianz Technology

Q. What are other flavours of linux have you used any other flavour . Diff between telnet and ssh . What is NFS and port no. What is ncat command
I have used various flavors of Linux such as Ubuntu, CentOS, and Fedora. Telnet is insecure while SSH is secure. NFS is a network file system with port number 2049. Ncat is a networking utility for reading and writing data across networks.
Flavors of Linux I have used include Ubuntu, CentOS, and Fedora
Telnet is insecure as it sends data in plain text, while SSH encrypts data for secure communication
NFS (Network File System) allows sharing files/folders over a network, using po...read more

Asked in Allianz Technology

Q. What is linux & why linux is considered to be more secured .how to secure the linux server & what is DNS .how to host a webpage in linux
Linux is an open-source operating system known for its security features. DNS is a system that translates domain names to IP addresses. Hosting a webpage in Linux involves setting up a web server.
Linux is an open-source operating system that is considered more secure due to its strong user permissions system and regular security updates.
To secure a Linux server, best practices include keeping the system updated, using strong passwords, limiting user access, and implementing f...read more

Asked in Axtria

Q. How would you solve a trans-shipment problem using Excel Solver software?
Trans-shipment problem can be solved in Excel Solver by setting up a linear programming model.
Define decision variables for the amount of goods to be shipped between each pair of locations.
Set up constraints to ensure that the supply and demand at each location are met.
Add constraints to limit the amount of goods that can be shipped through intermediate locations.
Define the objective function to minimize the total cost of shipping.
Use Excel Solver to find the optimal solution...read more

Asked in Goldman Sachs

Q. Is the price of a barrier option more or less than a normal option?
The price of a barrier option is generally less than a normal option.
Barrier options have a condition that must be met for the option to be activated, which reduces the likelihood of the option being exercised.
This reduced likelihood of exercise means that barrier options are generally cheaper than normal options.
However, the price of a barrier option can vary depending on the specific conditions and terms of the option.
For example, a knock-in barrier option may be more expen...read more

Asked in Snapdeal

Q. Calculate what single cut bookmyshow should charge from the customers depending on the various factor..... Ans. List the factors like movie of superstar, festival occasion etc.
BookMyShow should charge different prices based on factors like movie of superstar, festival occasion, etc.
Consider the popularity of the movie star
Take into account the demand for tickets during festival occasions
Analyze the competition and market trends
Offer discounts for bulk bookings or loyalty programs
Consider the cost of production and distribution
Adjust prices based on the time of day or week
Use dynamic pricing to optimize revenue
Examples: Charge higher prices for a mo...read more

Asked in Goldman Sachs

Q. Given coordinates of some points, find a figure that encompasses all of the points. The figure should have the least possible area and be formed by joining points using straight lines. This is the Convex Hull p...
read moreThe Convex Hull is the smallest convex polygon that encloses all given points.
Sort the points based on their x-coordinate.
Find the upper hull by starting from the leftmost point and moving clockwise.
Find the lower hull by starting from the rightmost point and moving counterclockwise.
Combine the upper and lower hulls to form the convex hull.

Asked in UBS

Q. If there was a hole of dimension x on a beach, how much sand does it contain?
The amount of sand in a hole of dimension x on a beach cannot be determined without additional information.
The volume of sand in the hole depends on the depth of the hole as well as its length and width.
To calculate the volume, the formula V = lwh can be used, where l is the length, w is the width, and h is the depth of the hole.
Without knowing the specific dimensions of the hole, it is impossible to determine the amount of sand it contains.

Asked in Allianz Technology

Q. Ps -ef what will it do what is strace command . What is tar and how to uncompress a file without extracting it what is /etc/motd what does it do
Ps -ef lists all processes, strace command traces system calls, tar is used for archiving files, /etc/motd displays message of the day.
Ps -ef command lists all processes running on the system
Strace command is used to trace system calls made by a process
Tar command is used to archive files and directories
To uncompress a file without extracting it, you can use 'tar -xOzf file.tar.gz | less' to view the contents without extracting
/etc/motd is a file that displays a message of th...read more

Asked in eClerx

Q. What is a derivative and what are the different types of derivatives?
A derivative is a financial instrument whose value is derived from an underlying asset. Types include futures, options, and swaps.
A derivative is a contract between two parties based on an underlying asset.
It derives its value from the performance of the underlying asset.
Common types of derivatives include futures, options, forwards, and swaps.
Derivatives are used for hedging, speculation, and arbitrage.
Examples of derivatives include stock options, commodity futures, and int...read more

Asked in Goldman Sachs

Q. You roll a die until the sum of all die rolls becomes at least 100. What is the most likely value of the last roll?
What is the most likely value of the last roll in a game where a die is rolled until the sum of all rolls is at least 100?
The last roll must be at least 4 to reach a sum of 100
The probability of rolling a 4, 5, or 6 is 1/2
The most likely value of the last roll is 4 or 5

Asked in Goldman Sachs

Q. If a customer wants to buy fuel, what options are available?
You can buy fuel from us through our fuel card program.
We offer a fuel card program that allows you to purchase fuel from our network of stations.
Our fuel card program offers discounts and rewards for frequent users.
You can easily track your fuel expenses and usage through our online portal.
We also offer customized fuel solutions for businesses and fleets.
Our fuel is high-quality and meets all industry standards.

Asked in Goldman Sachs

Q. If we increase the volatility of the stock, how does the price of a call option change?
Increasing stock volatility increases the price of a call option.
Higher volatility means higher potential for the stock to move in the option holder's favor, increasing the option's value
The option's delta and gamma will also increase with higher volatility
Example: If a call option on a stock with a strike price of $50 has a premium of $2 when the stock has a volatility of 20%, increasing the volatility to 30% may increase the premium to $2.50 or higher

Asked in Capgemini

Q. What is object-oriented language, and can you provide real-world examples?
Object-oriented language is a programming paradigm that uses objects to represent data and methods.
Objects contain data and methods that operate on that data.
Encapsulation, inheritance, and polymorphism are key concepts in object-oriented programming.
Examples of object-oriented languages include Java, C++, and Python.

Asked in ICICI Prudential Life Insurance

Q. If there are two datasets, one with 10,000 policies and another with 12,000 policies, each having 100 variables, how would you verify the validity of the second dataset assuming the first one is accurate?
The validity of the second data set can be verified by comparing it with the first data set.
Compare the variables in both data sets to ensure they are the same.
Check if the number of policies in the second data set matches the number stated.
Perform statistical analysis on both data sets to identify any discrepancies or inconsistencies.
Validate the accuracy of the second data set by cross-referencing it with external sources or known benchmarks.

Asked in ION Group

Use binary search method to identify contaminated pills in the jar.
Divide the pills into two equal groups and test one group. If contaminated, test each pill individually. If not contaminated, repeat the process with the other group.
Continue dividing and testing until the contaminated pills are identified with the least number of tests.
Example: If there are 100 pills, start by testing 50 pills. If contaminated, test each of the 50 pills individually. If not contaminated, divi...read more
Interview Questions of Similar Designations
Interview Experiences of Popular Companies





Top Interview Questions for Analyst Related Skills



Reviews
Interviews
Salaries
Users

