Intern
1500+ Intern Interview Questions and Answers

Asked in Sanofi

Q. How many Indians have health insurance? What percent of them use health insurance for conservative treatment solutions?
The number of Indians with health insurance and the percentage using it for conservative treatment solutions is not available.
Data on the number of Indians with health insurance is not available.
Data on the percentage of Indians using health insurance for conservative treatment solutions is not available.
No specific examples or statistics can be provided without the available data.

Asked in Delhivery

Q. What is the function of a control tower in logistics?
A control tower in logistics oversees and optimizes supply chain operations for efficiency and visibility.
Provides real-time visibility into supply chain activities, allowing for proactive decision-making.
Coordinates communication between different stakeholders, such as suppliers, carriers, and customers.
Utilizes data analytics to identify trends and optimize routes, reducing costs and improving delivery times.
Example: A control tower can track shipments and alert stakeholder...read more

Asked in BCG

Q. A private bank recently received 50 branch opening licenses from the RBI. How would you decide where to set up these branches?
Strategically selecting branch locations involves market analysis, customer demographics, and competition assessment.
Conduct market research to identify regions with high demand for banking services, such as urban areas with growing populations.
Analyze customer demographics to target specific segments, like young professionals in tech hubs or retirees in suburban areas.
Evaluate the competition by mapping existing banks and their services to find underserved areas, such as rur...read more

Asked in Accenture

Q. What do you think about the current inflation and exchange rate of our economy?
The current inflation and exchange rate of our economy is concerning.
The inflation rate has been steadily increasing over the past few months.
The exchange rate has been fluctuating a lot, making it difficult for businesses to plan ahead.
The government needs to take steps to stabilize the economy and prevent further damage.
Rising inflation and a weak exchange rate can lead to a decrease in purchasing power and a decrease in foreign investment.

Asked in BT Group

Q. What does CIA stand for in cyber security?
CIA stands for Confidentiality, Integrity, and Availability in cyber security.
Confidentiality refers to protecting sensitive information from unauthorized access.
Integrity ensures that data remains accurate, complete, and unaltered.
Availability ensures that systems and data are accessible and usable when needed.
These three principles form the foundation of a secure cyber environment.
Example: Encrypting data to maintain confidentiality, implementing access controls to ensure i...read more

Asked in Wipro

Q. Tell me about OOPS concepts in Python.
OOPS concepts in Python include inheritance, encapsulation, polymorphism, and abstraction.
Inheritance allows a class to inherit properties and methods from a parent class.
Encapsulation refers to the practice of hiding implementation details from the user.
Polymorphism allows objects to take on multiple forms or behaviors.
Abstraction involves creating a simplified representation of complex real-world objects.
Python supports all four OOPS concepts and allows for easy implementat...read more
Intern Jobs




Asked in Accenture

Q. After QE tapering and witnessing its effect on the Indian exchange rate, what are some of the most impactful steps taken by the Government to control the fluctuation in the exchange rate?
The Indian government has taken several steps to control exchange rate fluctuations after QE tapering.
The government has increased foreign exchange reserves to provide a cushion against external shocks.
The RBI has implemented measures to attract foreign investment, such as raising the limit on foreign portfolio investment in government securities.
The government has also taken steps to reduce the current account deficit, such as increasing exports and reducing imports.
The RBI ...read more

Asked in Accenture

Q. My client is from the auto industry, and their sales are declining. Analyze why. List all the possible reasons.
Possible reasons for declining sales in auto industry
Economic downturn affecting consumer spending
Increased competition from other auto companies
Shift in consumer preferences towards alternative modes of transportation
Lack of innovation in product offerings
Poor marketing and advertising strategies
Supply chain disruptions affecting production and delivery
Negative publicity or recalls affecting brand reputation
Changes in government regulations or policies affecting the industry...read more
Share interview questions and help millions of jobseekers 🌟

Asked in Accenture

Q. What are some ways to improve business promotion?
Improving infrastructure, reducing bureaucracy, and providing incentives can promote business.
Investing in better transportation, communication, and energy systems can improve business operations and attract investors.
Streamlining bureaucratic processes and reducing red tape can make it easier for businesses to start and operate.
Providing tax breaks, subsidies, and other incentives can encourage businesses to invest and expand.
Encouraging innovation and entrepreneurship throu...read more

Asked in Force Motors

Q. What is the difference between pneumatic and hydraulic systems?
Pneumatic systems use compressed air to transmit power, while hydraulic systems use fluid to transmit power.
Pneumatic systems use air as the working fluid, while hydraulic systems use liquid.
Pneumatic systems are typically used for lighter loads and faster movements, while hydraulic systems are used for heavier loads and slower movements.
Pneumatic systems are generally less expensive and easier to maintain compared to hydraulic systems.
Examples of pneumatic systems include ai...read more

Asked in Nokia

Q. What is Stack? What are the applications of Stack? Fibonacci Series code.
A stack is a linear data structure that follows the Last-In-First-Out (LIFO) principle.
Applications include function call stack, undo-redo operations, infix to postfix conversion, and backtracking algorithms.
Push and pop operations are used to add and remove elements from the stack, respectively.
Fibonacci series can be implemented using a stack or recursion.
Stacks can be implemented using arrays or linked lists.

Asked in Cognizant

Q. How will you print the address of a variable without using a pointer?
Printing the address of a variable without using a pointer can be done by using the & operator.
Use the & operator before the variable name to print its address
Example: int num = 10; printf("%p", &num);
This will print the address of the variable num

Asked in McKinsey & Company

Q. A person owns a single-screen cinema hall in Mumbai that is experiencing losses. What problems might be contributing to this, and what strategies could be implemented to improve the situation?
Identify problems and suggest solutions to turnaround a single screen cinema hall in Mumbai.
Analyze the current financial situation and identify the main reasons for the losses
Evaluate the competition and market trends in the cinema industry
Improve the cinema hall's infrastructure and amenities to attract more customers
Implement effective marketing strategies to increase footfall and ticket sales
Diversify revenue streams by hosting events, film festivals, or partnering with l...read more

Asked in Auctus Advisors

Q. What is the difference between solving a case in an interview and solving a case practically for a client?
Interview case-solving focuses on theoretical skills, while practical cases involve real-world complexities and client dynamics.
Interview cases are often hypothetical and structured, focusing on analytical skills and problem-solving frameworks.
Practical cases require understanding client-specific contexts, including industry nuances and organizational culture.
In interviews, time constraints are strict, often lasting 30-60 minutes, while practical cases may span weeks or month...read more

Asked in Accenture

Q. What would you look at first when reviewing a company's income statement to determine its financial health?
Analyzing an income statement reveals a company's profitability, revenue trends, and operational efficiency.
1. Revenue Growth: Look for consistent growth in revenue over time. For example, a company with a 10% annual revenue increase indicates strong demand.
2. Gross Profit Margin: Assess the gross profit margin to understand production efficiency. A margin of 40% suggests effective cost management.
3. Operating Expenses: Examine operating expenses relative to revenue. A rising...read more

Asked in Delhivery

Q. How do you decide on the location of a warehouse in a distribution network?
The location of a warehouse in a distribution network is decided based on factors like proximity to suppliers and customers, transportation infrastructure, labor availability, and cost considerations.
Consider proximity to suppliers and customers to reduce transportation costs and lead times
Evaluate transportation infrastructure to ensure efficient movement of goods
Assess labor availability in the area to meet staffing needs
Factor in cost considerations such as land prices, ta...read more

Asked in Hitachi Digital Services

Q. How do you implement multi threading in java? Two ways.
Multi threading in Java can be implemented using two ways: extending the Thread class or implementing the Runnable interface.
Extend the Thread class and override the run() method.
Implement the Runnable interface and provide the implementation for the run() method.
Create an instance of the Thread class and pass an instance of the class implementing Runnable as a parameter.
Start the thread using the start() method.
Example: 1. class MyThread extends Thread { public void run() { ...read more

Asked in McKinsey & Company

Q. Describe a case where you analyzed a hotel operating at a loss, calculated profit margins for 'Room' and 'Non-Room' segments, and discussed strategies to improve profitability.
Analyzing hotel profitability through segment margins and strategies for improvement.
Calculate profit margins: Room segment typically has higher margins than non-room services.
Enhance room occupancy: Implement dynamic pricing strategies to attract more guests during off-peak seasons.
Diversify non-room offerings: Introduce packages that combine room stays with dining or spa services to increase revenue.
Improve operational efficiency: Streamline processes in housekeeping and fr...read more

Asked in Microsoft Corporation

Q. Given a sentence represented as an array of characters, reverse the order of words in it.
To reverse the order of words in a given sentence, we need to split the sentence into words and then reverse the order of the resulting array.
Split the sentence into words using a delimiter like space or comma
Reverse the resulting array of words
Join the reversed array of words using a delimiter to form the reversed sentence

Asked in BT Group

Q. Name some standard tools used in assessing the security of a system.
Standard tools for assessing system security
Vulnerability scanners (e.g. Nessus, OpenVAS)
Penetration testing tools (e.g. Metasploit, Nmap)
Network analyzers (e.g. Wireshark, tcpdump)
Log analysis tools (e.g. Splunk, ELK Stack)
Firewall and intrusion detection systems (e.g. Snort, Suricata)

Asked in FIS

Q. What do you understand by the three-way handshake?
Three way handshake is a method used in TCP/IP communication to establish a connection between a client and a server.
Three way handshake involves three steps: SYN, SYN-ACK, and ACK.
The client sends a SYN packet to the server to initiate the connection.
The server responds with a SYN-ACK packet, acknowledging the client's request.
Finally, the client sends an ACK packet to the server, confirming the connection establishment.
This process ensures reliable and synchronized communic...read more

Asked in Trilegal

Q. What is the impact of the Supreme Court's decision on documentation required before a deduction could be allowed for write-off of debts?
Supreme Court's decision on documentation for debt write-off impacts deduction eligibility.
Supreme Court's decision requires documentation to prove debt write-off eligibility for deduction.
Lack of proper documentation may result in disqualification for deduction.
This decision aims to prevent fraudulent claims for debt write-off deductions.
Examples of required documentation include loan agreements, repayment schedules, and evidence of default.
The impact of this decision is exp...read more

Asked in SanDisk India Device Design Centre

Q. How did you solve this question from the technical section of the test?
I approached the technical question methodically, breaking it down into manageable parts for clarity and efficiency.
Analyzed the problem statement to understand requirements and constraints.
Identified key components and algorithms needed to solve the problem.
Implemented a step-by-step approach, testing each part as I built the solution.
Utilized debugging techniques to troubleshoot and optimize the code.
Reviewed the final solution to ensure it met all specifications and edge c...read more

Asked in Unschool Learning

Q. What do you think about the online education system in India?
Online education system in India has great potential but needs improvement.
Online education has become more popular due to the pandemic.
There is a lack of infrastructure and resources for online education in rural areas.
Online education can be more affordable and accessible than traditional education.
There is a need for better quality control and accreditation for online courses.
Online education can provide opportunities for upskilling and reskilling.
Online education can be a...read more

Asked in Caparo Engineering India

Q. What is a die, and how many types of dies are there?
A die is a tool used to shape or cut materials. There are various types of dies used in different industries.
Dies are used in manufacturing to cut, shape, or form materials such as metal, plastic, and paper.
Some common types of dies include cutting dies, forming dies, and drawing dies.
Cutting dies are used to cut materials into specific shapes, while forming dies are used to bend or shape materials.
Drawing dies are used to reduce the diameter of a material by pulling it throu...read more

Asked in GS Lab

Q. Write a program to detect a loop in a linked list and find the starting node of the loop.
Program to find loop in linked list and starting node of the loop
Use Floyd's cycle detection algorithm to find the loop
Once loop is detected, use two pointers to find the starting node of the loop
One pointer starts from the head and the other starts from the meeting point of the two pointers in the loop
Move both pointers one node at a time until they meet again, which is the starting node of the loop

Asked in OPPO

Q. If an employee completes 35 percent of their work in the first 10 days of the month, what is the predicted month-end target?
Predicted month end target based on 35% work completed in first 10 days.
Assuming the employee works at a consistent pace throughout the month
Calculate the remaining work as 65% of the total work
Divide the remaining work by the remaining days in the month
Add the result to the 35% already completed
This gives the predicted month end target
For example, if the total work is 100 units, and 35 units are completed in the first 10 days, then 65 units remain
If there are 20 days remaini...read more

Asked in Sanofi

Q. What is the current scenario of the pharma market in India?
The pharma market in India is growing rapidly with increasing demand for healthcare products and a favorable regulatory environment.
The Indian pharmaceutical market is one of the largest in the world, valued at over $20 billion.
The market is expected to grow at a CAGR of 15.92% from 2020 to 2025.
India is a major exporter of generic drugs and supplies a significant portion of the global demand.
The government's initiatives like 'Make in India' and 'Pharma Vision 2020' have boos...read more

Asked in Accenture

Q. Which subject did you like the most in first term?Explain economies of scale? Why does the cost increase after certain volume? How can that be avoided?
I enjoyed studying economics the most in my first term. Economies of scale occur when production costs decrease as output increases. However, after a certain volume, costs increase due to diminishing returns.
Economies of scale refer to the cost advantages that a business can achieve by increasing production output.
As production increases, fixed costs are spread over a larger output, resulting in lower average costs.
However, after a certain point, the benefits of economies of ...read more

Asked in Fidelity Investments

Q. A person accesses and inserts data into a database. What should they do to ensure their changes are visible to others?
The person should commit the changes to the database and refresh the view for others to see.
Commit the changes to the database
Refresh the view for others to see
Ensure proper permissions are set for others to access the data
Interview Questions of Similar Designations
Interview Experiences of Popular Companies





Top Interview Questions for Intern Related Skills

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


Reviews
Interviews
Salaries
Users

