Filter interviews by
I applied via Company Website and was interviewed in Oct 2022. There were 2 interview rounds.
Java is a high-level programming language used for developing applications. There are four types of Java: Java SE, Java EE, Java ME, and JavaFX.
Java is an object-oriented language.
Java SE (Standard Edition) is used for general-purpose development.
Java EE (Enterprise Edition) is used for developing enterprise applications.
Java ME (Micro Edition) is used for developing applications for small devices.
JavaFX is used for cr...
The permitted Java types include primitive types (int, double, boolean, etc.) and reference types (String, Object, etc.)
Primitive types are predefined in Java and start with a lowercase letter (e.g., int, double)
Reference types are created using classes, interfaces, or arrays (e.g., String, Object, int[])
Java also supports autoboxing, which allows primitive types to be used as reference types (e.g., Integer, Double)
Java is a popular programming language used for developing web applications and software.
Java is an object-oriented language
It is platform-independent
Java code is compiled into bytecode
Java has a vast library of pre-built classes and methods
Java is used for developing Android apps
Top trending discussions
I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.
To check palindrome and anagram of a string with O(n), use a hash table to store character frequencies.
Create a hash table to store the frequency of each character in the string.
For palindrome, check that no more than one character has an odd frequency.
For anagram, compare the hash tables of the two strings.
If the hash tables are equal, the strings are anagrams.
If the hash tables differ by only one character, the strin...
Optimized solutions and core principles applied in OOPS
Encapsulation, Inheritance, Polymorphism, Abstraction are core principles of OOPS
Optimized solutions can be achieved through efficient algorithms and data structures
Design patterns like Singleton, Factory, Observer can also be used for optimized solutions
I applied via Company Website and was interviewed in Mar 2021. There were 3 interview rounds.
I appeared for an interview before May 2021.
Round duration - 45 Minutes
Round difficulty - Hard
Given an integer array 'ARR' of size 'N' containing numbers from 0 to (N - 2). Each number appears at least once, and there is one number that appears twice. Yo...
Find the duplicate number in an integer array containing numbers from 0 to (N - 2).
Iterate through the array and keep track of the frequency of each number using a hashmap.
Return the number that appears twice in the array.
The duplicate number is always present in the given array.
Round duration - 50 Minutes
Round difficulty - Easy
Sort an unsorted array of non-negative integers using the Bubble Sort algorithm, which swaps adjacent elements if they are not in the correct order to sort the array in non-d...
Bubble Sort is used to sort an array of non-negative integers in non-decreasing order by swapping adjacent elements if they are not in the correct order.
Iterate through the array and compare adjacent elements, swapping them if they are in the wrong order.
Repeat this process until the array is sorted in non-decreasing order.
Time complexity of Bubble Sort is O(n^2) in worst case.
Example: For input [6, 2, 8, 4, 10], the o
Round duration - 60 Minutes
Round difficulty - Medium
You are tasked with finding the shortest path between two houses in the city of Ninjaland, represented as an unweighted graph. The city has N
houses numbered from 1 ...
Find the shortest path between two houses in a city represented as an unweighted graph.
Use breadth-first search (BFS) algorithm to find the shortest path in an unweighted graph.
Start BFS from the source house and keep track of the shortest path to each house.
Once the destination house is reached, backtrack to find the shortest path.
Consider using a queue data structure to implement BFS efficiently.
Round duration - 60 Minutes
Round difficulty - Easy
Tip 1 : online resources
Tip 2 : cracking the coding interview by Gayle laykemann this is one of the best book for learning the concept at the initial level. Start practicing the approaches mention in the book once done apply the same to similar level pattern questions.
Tip 3 : geeks for geeks start from school level and then move towards easy medium and hard once done practice the previous year questions
Tip 1 : precise clear concise and well written
Tip 2 : mentions the skills sets along with the projects
posted on 16 Dec 2021
I applied via Recruitment Consultant and was interviewed in Jun 2021. There were 4 interview rounds.
I applied via Approached by Company and was interviewed before Jul 2021. There was 1 interview round.
I appeared for an interview before Nov 2020.
Round duration - 90 minutes
Round difficulty - Medium
It was in the evening at about 7 pm. The test platform was quite user friendly and easy to use.
There were 3 sections in test. One was logical ability, second was english, third was coding
Questions were of medium difficulty.
Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...
The task is to find the total number of ways to make change for a specified value using given denominations.
Use dynamic programming to solve this problem efficiently.
Create a 1D array to store the number of ways to make change for each value from 0 to the target value.
Iterate through the denominations and update the array based on the current denomination.
The final answer will be the value at the target index of the ar
Round duration - 30 Minutes
Round difficulty - Medium
It was a 30 minute interview. In which I was provided with questions on data structures and algorithms to check my problem solving skills.
Given an integer array ARR
of size N
, determine if it can be transformed into a non-decreasing array by modifying at most one element.
An array is defined as non-de...
Determine if an array can be transformed into a non-decreasing array by modifying at most one element.
Iterate through the array and check if there are more than one decreasing elements.
If there is only one decreasing element, check if modifying it can make the array non-decreasing.
Return true if the array can be made non-decreasing by modifying at most one element, otherwise false.
Round duration - 40 Minutes
Round difficulty - Medium
In this round , interviewer discussed about my resume. As I had done a internship in sql and database so he asked me questions related to dbms and sql queries.
Tip 1 : practice data structures and algorithms thoroughly
Tip 2 : do atleast 2 project
Tip 3 : maintain a decent cgpa (above 8.5)
Tip 1 : write all your academic achievements on resume
Tip 2 : do not write false things in resume
Tip 3 : be thorough with your resume
I applied via Referral and was interviewed before Aug 2020. There was 1 interview round.
The 2008 financial crisis was caused by a combination of factors including subprime mortgages, risky investments, and lack of regulation.
Subprime mortgages were given to borrowers who were not creditworthy and could not afford to repay the loans.
These mortgages were then bundled together and sold as securities to investors, who were not aware of the high risk involved.
Investment banks also made risky investments and us...
Different types of risks associated with a bond
Interest rate risk - changes in interest rates affect bond prices
Credit risk - risk of default by the issuer
Inflation risk - risk of loss of purchasing power due to inflation
Liquidity risk - risk of not being able to sell the bond when needed
Call risk - risk of the issuer calling back the bond before maturity
Reinvestment risk - risk of not being able to reinvest the coupon...
To price a bond, calculate the present value of its future cash flows.
Determine the bond's face value, coupon rate, and maturity date.
Calculate the bond's yield to maturity.
Use the yield to maturity to discount the bond's future cash flows.
Add up the present values of the cash flows to get the bond's price.
Consider any additional factors that may affect the bond's price, such as credit risk or call provisions.
Option pricing involves calculating the value of an option based on various factors.
The current price of the underlying asset is a key factor in option pricing.
Volatility of the underlying asset also plays a significant role.
Time to expiration, interest rates, and strike price are other important factors.
Various models such as Black-Scholes and binomial models are used to price options.
Option pricing can be complex and...
Duration is the length of time something takes to complete.
Duration can be measured in seconds, minutes, hours, days, etc.
It is often used to describe the length of a movie, song, or event.
In project management, duration refers to the amount of time a task or project will take to complete.
Duration can also refer to the length of time a medical treatment or medication should be taken.
It is important to consider duration
Duration will be greater for a fixed rate bond.
Fixed rate bonds have a longer duration than floating rate bonds.
Duration is the measure of a bond's sensitivity to interest rate changes.
Fixed rate bonds have a fixed interest rate, so their duration is longer as they are more sensitive to interest rate changes.
Mitigate credit risk by diversifying portfolio, setting credit limits, and monitoring creditworthiness.
Diversify portfolio to spread risk across different industries and companies.
Set credit limits based on the borrower's creditworthiness and ability to repay.
Monitor creditworthiness of borrowers regularly to identify potential risks and take necessary actions.
Use credit insurance or guarantees to protect against defau...
Both data quality and timeliness are important, but it depends on the specific use case.
Data quality is crucial for decision-making and analysis, as inaccurate data can lead to incorrect conclusions.
Timeliness is important for real-time decision-making and time-sensitive operations.
In some cases, data quality may be more important, such as in medical research where accuracy is critical.
In other cases, timeliness may be...
Var is a keyword in programming languages used to declare variables.
Var is short for variable.
It is used to declare a variable and assign a value to it.
The data type of the variable is inferred from the assigned value.
Example: var x = 5; // x is now a variable of type integer with value 5
based on 1 interview
Interview experience
Assistant Manager
63
salaries
| ₹2 L/yr - ₹8 L/yr |
Relationship Executive
60
salaries
| ₹1.8 L/yr - ₹3.3 L/yr |
Branch Manager
20
salaries
| ₹2.4 L/yr - ₹7.2 L/yr |
Senior Executive
17
salaries
| ₹1.7 L/yr - ₹4 L/yr |
Executive
15
salaries
| ₹2 L/yr - ₹3.4 L/yr |
JPMorgan Chase & Co.
Wells Fargo
American Express
HSBC Group