Filter interviews by
A safe and reliable transportation service for children, with specially trained drivers and advanced safety features.
Require background checks and training for drivers
Implement strict verification process for parents and guardians
Include real-time tracking and notifications for parents
Offer car seats and booster seats for different age groups
Allow parents to set restrictions on drop-off locations and ride times
Top trending discussions
I applied via Referral and was interviewed before Jan 2020. There were 6 interview rounds.
Amortization is the process of spreading out a loan into smaller, regular payments over a period of time.
It is used to pay off a debt over time with regular payments
Each payment includes both principal and interest
The amount of interest decreases over time as the principal is paid off
Examples include mortgages, car loans, and student loans
WASO is Wake After Sleep Onset, TSO is Total Sleep Time, and EPS is Earnings Per Share.
WASO is the amount of time spent awake after initially falling asleep.
TSO is the total amount of time spent sleeping, including both REM and non-REM sleep.
EPS is a financial metric that represents the portion of a company's profit allocated to each outstanding share of common stock.
WASO and TSO are commonly used in sleep studies, whi
The financial statements (BS, IS, CF) have common elements such as assets, liabilities, equity, revenue, expenses, and cash flows.
Assets: resources owned by the company
Liabilities: obligations owed by the company
Equity: residual interest in the assets of the company
Revenue: income generated by the company
Expenses: costs incurred by the company
Cash flows: inflows and outflows of cash
A stock split increases the number of shares outstanding and decreases the price per share, but does not affect the market capitalisation.
Stock split does not affect the total value of the company
Market capitalisation remains the same after a stock split
Stock split increases the number of shares outstanding and decreases the price per share
For example, if a company has 1 million shares outstanding and the stock splits ...
Cash flow statements have three main components: operating activities, investing activities, and financing activities.
Operating activities: cash inflows and outflows from the company's core business operations.
Investing activities: cash inflows and outflows from buying or selling long-term assets.
Financing activities: cash inflows and outflows from borrowing or repaying debt, issuing or buying back stock, and paying di...
EPS is calculated by dividing the company's net income by the number of outstanding shares.
EPS = Net Income / Outstanding Shares
Net Income is the company's total earnings after expenses and taxes
Outstanding Shares are the total number of shares issued by the company
EPS is an important metric for investors to evaluate a company's profitability
Higher EPS indicates better profitability and potential for higher dividends
I appeared for an interview in Dec 2020.
Double entry, isin, balance sheet
I applied via Other and was interviewed before Dec 2020. There were 6 interview rounds.
I appeared for an interview before Dec 2020.
Round duration - 90 minutes
Round difficulty - Medium
The round consisted of 3 coding Questions and 20 Technical MCQs.
Given a number of ropes denoted as 'N' and an array containing the lengths of these ropes, your task is to connect the ropes into one single rope. The cost to connect two r...
The task is to find the minimum cost required to connect all the ropes by summing their lengths.
Iterate through the ropes and connect the two shortest ropes at each step to minimize cost
Use a priority queue to efficiently find the shortest ropes
Keep track of the total cost as you connect the ropes
Example: For input [4, 3, 2, 6], connect 2 and 3 (cost 5), then connect 4 and 5 (cost 9), then connect 9 and 6 (cost 15) for
Determine if a given N * N matrix is an idempotent matrix. A matrix is considered idempotent if it satisfies the following condition:
M * M = M
The first line cont...
Check if a given matrix is idempotent by verifying if M * M = M.
Iterate through the matrix and multiply it with itself to check if it equals the original matrix.
If the condition M * M = M is satisfied, then the matrix is idempotent.
If the condition is not satisfied, then the matrix is not idempotent.
Given an integer 'N', calculate and print the sum of the least common multiples (LCM) for each integer from 1 to N with N.
The sum is represented as:LCM(1, N) + LCM(2, N) + ....
Calculate and print the sum of least common multiples (LCM) for each integer from 1 to N with N.
Iterate from 1 to N and calculate LCM of each number with N
Add all the calculated LCM values to get the final sum
Return the sum for each test case
Round duration - 120 minutes
Round difficulty - Medium
This round is a Long Coding Round. Every Candidate was assigned with a mentor who guides them, We were given a real-life scenario for which we have to construct a database with required tables. We should draw an ER Diagram to demonstrate the Database. After the Database Completion, We have to Start Coding the Application. The Design(like Placing the button or background colour) is not given much importance. They mainly test the practical knowledge of candidates in OOPS and expertise in a C, C++, Java, Android or any other language were OOPS Concepts can be applied.
Round duration - 180 Minutes
Round difficulty - Medium
This Round is a technical Interview. I was asked Questions to test my Technical Knowledge.
Given an integer array arr
of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.
The first line contains an integer 'T' representing the n...
Sort an array of 0s, 1s, and 2s in linear time complexity.
Use three pointers to keep track of 0s, 1s, and 2s while iterating through the array.
Swap elements based on the values encountered to sort the array in-place.
Time complexity of the algorithm should be O(N) where N is the size of the array.
Round duration - 20 Minutes
Round difficulty - Easy
Tip 1 : Do Atleast 2 Projects
Tip 2 : Be Strong in what you have in your resume
Tip 3 : Be Confident and Polite
Tip 1 : Keep it Short to one or two pages
Tip 2 : Keep it standout..as it is what projects you uniquely.
I applied via Job Portal
Basic questions on basic knowledge
Receivable turnover is a financial ratio that measures a company's efficiency in collecting its accounts receivable.
Receivable turnover = Net Credit Sales / Average Accounts Receivable
Net Credit Sales is the total sales made on credit minus any returns or allowances
Average Accounts Receivable is the average of the beginning and ending accounts receivable balances
A higher receivable turnover indicates that a company is ...
Liquidity ratio measures a company's ability to pay off its short-term debts using its liquid assets.
Liquidity ratio is calculated by dividing a company's liquid assets by its short-term liabilities.
The formula for liquidity ratio is: Liquidity Ratio = (Liquid Assets / Short-term Liabilities)
Liquid assets include cash, marketable securities, and accounts receivable.
Short-term liabilities include accounts payable, short...
I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.
Primary is used to define a primary bean when multiple beans of the same type are present, while Qualifier is used to specify which bean to autowire when multiple beans of the same type are present.
Primary annotation is used to give a higher preference to a bean when multiple beans of the same type are present in the Spring application context.
Qualifier annotation is used to specify which bean to autowire when multiple...
Fault tolerance in Microservices can be achieved through redundancy, graceful degradation, and circuit breakers.
Implementing redundancy by having multiple instances of each microservice running to handle failures.
Using graceful degradation to ensure that the system can still function even if certain microservices are unavailable.
Utilizing circuit breakers to prevent cascading failures by temporarily stopping requests t
Implementing Spring Security involves configuring security settings in the Spring application.
Add Spring Security dependency in pom.xml
Configure security settings in SecurityConfig class
Define user roles and permissions
Use annotations like @EnableWebSecurity and @Secured
OAuth 2 is an authorization framework that allows a third-party application to obtain limited access to an HTTP service.
OAuth 2 is used for delegated access, allowing a user to grant a third-party application access to their resources without sharing their credentials.
It involves the use of access tokens, which are issued by the authorization server after the user authenticates and authorizes the application.
OAuth 2 su...
Java uses automatic memory management through garbage collection to allocate and deallocate memory.
Java uses garbage collection to automatically manage memory by deallocating objects that are no longer needed.
The JVM has a heap where objects are allocated and garbage collection is performed to reclaim memory.
Java provides the 'finalize()' method for objects to perform cleanup before they are garbage collected.
Memory le...
Different types of garbage collection algorithms in software development.
Mark and Sweep: Identifies and removes unreachable objects.
Generational: Divides objects into different generations based on age.
Parallel: Uses multiple threads to perform garbage collection concurrently.
Incremental: Spreads garbage collection work over multiple cycles to reduce pause times.
Executors are a class that provides factory and utility methods for Executor, ExecutorService is an interface that represents an asynchronous execution service.
Executors class provides factory and utility methods for Executor interface
ExecutorService is an interface that represents an asynchronous execution service
ExecutorService extends Executor interface
ExecutorService provides methods to manage termination and produ...
Find duplicates in an ArrayList of strings.
Iterate through the ArrayList and use a HashSet to keep track of seen elements.
If an element is already in the HashSet, it is a duplicate.
Store the duplicates in a separate ArrayList or print them directly.
based on 1 interview
Interview experience
based on 1 review
Rating in categories
Senior Executive
81
salaries
| ₹3.1 L/yr - ₹5 L/yr |
Customer Support Executive
50
salaries
| ₹2.4 L/yr - ₹4.3 L/yr |
Software Developer
47
salaries
| ₹14 L/yr - ₹36 L/yr |
Assistant Manager
43
salaries
| ₹5.8 L/yr - ₹18 L/yr |
Software Engineer
42
salaries
| ₹14 L/yr - ₹37 L/yr |
Zerodha
Sharekhan
SBI Cards & Payment Services
Axis Direct