Filter interviews by
Be the first one to contribute and help others!
I applied via Campus Placement and was interviewed before Feb 2021. There were 3 interview rounds.
Tests are Pymetrics and an online case. Pymetrics is a personality test of sorts (risk aversion, pattern recognition, etc.) this was benchmarked against successful Consultants. Online case is multiple choice but the questions flow like a normal case interview. You will get a final round interview if you do really well on them. If you just ‘pass’, you have to have an internal designation of a high priority or very high priority candidate. (See advice)
Standard 2 case interviews with senior leaders, already a lot of material on this elsewhere
I applied via Campus Placement and was interviewed before Jul 2021. There were 3 interview rounds.
The aptitude test contains questions MCQs for quants, basic statistics and basic coding questions. The aptitude also has 2 coding problems to solve which would be of easy-medium level.
The second round was live coding test, where the interviewer looks for your approach towards solving a given problem. The approach matters more than the correct syntax. All coding languages were allowed. SQL queries can also be asked.
I applied via Approached by Company and was interviewed before Aug 2021. There were 3 interview rounds.
1st Round consisted of Technical Discussion and Coding Round. I was asked to write down the logic for Prime no., Fibonacci Series, Matrix related question, etc.
I was asked to share my screen and write down logic for questions related to Strings, Arrays and 2-D matrix's.
I applied via Recruitment Consulltant and was interviewed before Feb 2022. There were 4 interview rounds.
Practise very well in advance with sample cases in mock sessions
Practise very well in advance with real cases with your friends
I applied via Recruitment Consultant and was interviewed before Sep 2020. There were 4 interview rounds.
I applied via Company Website and was interviewed before May 2021. There were 5 interview rounds.
Online test with questions from probability and reasoning
A case study for which we need to create a dashboard and a power point presentation.
SQL written test
I applied via Recruitment Consultant and was interviewed in Jan 2021. There were 5 interview rounds.
Insurance is a contract between an individual and an insurance company to protect against financial loss.
Insurance provides financial protection against unexpected events
Premiums are paid to the insurance company in exchange for coverage
Types of insurance include health, auto, home, and life insurance
Insurance policies have terms and conditions that must be followed to receive benefits
Insurance helps individuals and bu
Types of insurance include life, health, auto, home, and travel.
Life insurance provides financial support to beneficiaries upon the policyholder's death.
Health insurance covers medical expenses and treatments.
Auto insurance covers damages and injuries resulting from car accidents.
Home insurance covers damages to the home and personal property.
Travel insurance covers unexpected events while traveling, such as trip cance
I applied via Recruitment Consultant and was interviewed in May 2021. There was 1 interview round.
A tangible asset is a physical asset that has a measurable value and can be seen or touched.
Examples include buildings, land, machinery, and inventory.
Tangible assets are typically depreciated over time.
They are recorded on a company's balance sheet.
Tangible assets can be bought, sold, or traded.
They are different from intangible assets, such as patents or trademarks.
An intangible asset is a non-physical asset that has no intrinsic value but has value due to its legal or intellectual property rights.
Intangible assets include patents, trademarks, copyrights, and goodwill.
They cannot be touched or seen but can be owned and traded.
Their value is based on their ability to generate revenue or provide a competitive advantage.
Intangible assets are recorded on a company's balance sheet and...
Insurance is a contract between an individual and an insurance company to protect against financial loss.
Insurance provides financial protection against unexpected events
Premiums are paid to the insurance company in exchange for coverage
Types of insurance include health, auto, home, and life insurance
Insurance policies have terms and conditions that must be followed to receive benefits
Insurance companies use actuarial
Accounts payable is the amount of money a company owes to its suppliers or vendors for goods and services received but not yet paid for.
Accounts payable is a liability on the balance sheet.
It represents the amount owed to suppliers or vendors for goods or services received.
Accounts payable is usually paid within a certain period of time, known as the payment terms.
Examples of accounts payable include bills for utilitie...
Account receivables refer to the money owed to a company by its customers for goods or services provided on credit.
It is a type of asset on a company's balance sheet
It represents the amount of money owed to the company by its customers
It is typically collected within a certain period of time, usually 30-90 days
Examples include unpaid invoices, outstanding bills, and overdue payments
I appeared for an interview before Sep 2020.
Round duration - 40 minutes
Round difficulty - Easy
Timing: 12PM
Due to covid, the interviews happened over a video call on Zoom. They also shared an IDE link where we could write our code and the interview could see it.
The interviewer was very polite and helpful. She dropped hints in between to help me reach the final solution when I was stuck or needed some clarity. She wanted to check how analytically I could solve the problem. She focused more on my approaches towards the problem.
There was also a brief discussion on my resume and projects.
Given an N-ary tree where each node has at most 'N' child nodes, the task is to serialize the tree into a sequence of bits and then deserialize it back t...
Serialization and deserialization of an N-ary tree involves converting the tree into a sequence of bits and reconstructing the original tree from this format.
Serialize the N-ary tree by traversing it in level order and representing each node and its children using a space-separated sequence of integers.
Deserialize the serialized tree by parsing the input sequence and reconstructing the tree structure based on the provi...
Round duration - 40 minutes
Round difficulty - Medium
Timing: Mid-afternoon
Due to covid, the interviews happened over a video call on Zoom. They also shared an IDE link where we could write our code and the interview could see it.
The interviewer was very polite and helpful. He dropped hints in between to help me reach the final solution when I was stuck or needed some clarity. He wanted to check how analytically I could solve the problem. He focused more on my approaches towards the problem.
There was also a brief discussion on my resume and projects.
Create a data structure that maintains mappings between keys and values, supporting the following operations in constant time:
1. INSERT(key, value): Add or update t...
Design a constant time data structure for key-value mappings with operations like INSERT, DELETE, SEARCH, GET, GET_SIZE, and IS_EMPTY.
Use a hash table to achieve constant time complexity for operations.
Implement INSERT, DELETE, SEARCH, GET, GET_SIZE, and IS_EMPTY functions.
Ensure key is a string and value is a positive integer.
Return appropriate results based on the operation type.
Handle edge cases like key not found o
Round duration - 30 Minutes
Round difficulty - Medium
Timing: Evening
Due to covid, the interviews happened over a video call on Zoom. They also shared an IDE link where we could write our code and the interview could see it.
There was a panel of three people as interviewers in this round.
I was also asked one behaviour questions in this round.
You are provided with a directory path in Unix-style notation, and your task is to simplify it according to given rules.
In a Unix-style file system:
Given a Unix-style directory path, simplify it by following certain rules and return the simplified path.
Use a stack to keep track of directories while iterating through the input path.
Handle cases for '.', '..', and multiple slashes appropriately.
Return the simplified path by joining the directories in the stack with '/' separator.
Tip 1 : Focus on Data Structures and Algorithms. Practising questions based on them every day is the key to succeeding. You can enroll into a Data Structures and Algorithms course by Coding Ninjas. This course helped me build a strong foundation in these topics. I also recommend platforms like LeetCode and InterviewBit for further practice.
Tip 2 : During your interview THINK OUT LOUD!!! It is very important that you voice your approach towards the problem otherwise interviewer will have no clue what you are thinking.
Tip 3 : Do give mock interviews to some college senior or mentor. They help you understand how to express your thought process better (Think out loud) and also reduce the interview stress and anxiety.
Tip 1 : In order to make a strong resume you must include at least 2-3 Projects and an intern/work experience. Mention all your skills which you are confident of in your resume.
Tip 2 : Try to make it of one page only. You can use overleaf to make your resume.
Google Sheets is a cloud-based spreadsheet program offered by Google as part of the Google Drive office suite.
Allows users to create and edit spreadsheets online
Offers collaboration features for real-time editing and commenting
Can import and export various file formats, including Microsoft Excel
Offers add-ons and scripts for automation and customization
Accessible from any device with internet connection
MDD & OMC are important parameters for soil compaction and moisture content.
MDD stands for Maximum Dry Density, which is the maximum density that can be achieved for a given soil compaction effort.
OMC stands for Optimum Moisture Content, which is the moisture content at which the maximum dry density can be achieved.
These parameters are important for determining the appropriate moisture content and compaction effort for...
The velocity of steel varies depending on the type and conditions.
The velocity of steel can range from 5000 to 6000 meters per second
The velocity of steel can be affected by factors such as temperature and pressure
The velocity of steel is important in industries such as construction and manufacturing
The cube test result in 7 days depends on the purpose of the test and the specific cube being tested.
The cube test can refer to various tests in different fields such as construction, engineering, and materials science.
For example, in construction, the cube test is used to determine the compressive strength of concrete cubes after 7 days of curing.
The result of the cube test can vary depending on factors such as the ty...
based on 1 review
Rating in categories
Cognizant
WNS
Capita
Gallagher