Filter interviews by
I appeared for an interview in Nov 2023.
The Tred lifecycle refers to the stages involved in the testing and development of a software product.
Tred lifecycle includes requirements gathering, test planning, test execution, defect tracking, and test closure.
It ensures that the software meets the specified requirements and is free from defects.
Examples of activities in the Tred lifecycle include creating test cases, executing tests, and analyzing test results.
It...
SDLC in testing refers to the Software Development Life Cycle, which is a process followed for developing and testing software.
SDLC is a systematic approach to software development and testing.
It consists of several phases such as requirements gathering, design, coding, testing, and deployment.
Each phase has specific objectives and deliverables.
Testing is an integral part of SDLC and is performed at various stages to e...
A testing lifecycle is a set of phases or stages that a software undergoes during the testing process.
A testing lifecycle typically includes planning, designing, executing, and evaluating tests.
It helps ensure that the software meets the desired quality standards.
The lifecycle may vary depending on the development methodology used, such as waterfall or agile.
Examples of testing lifecycle models include V-model, iterati
C is a procedural programming language, while C++ is an extension of C with added features of object-oriented programming.
C is a procedural language, meaning it focuses on procedures or functions.
C++ is an extension of C and supports both procedural and object-oriented programming.
C++ has additional features like classes, inheritance, polymorphism, and templates.
C++ allows for the use of objects and classes to organize...
Amazon Sites and app differ in their platform and user experience.
Amazon Sites can be accessed through web browsers on desktop or mobile devices.
Amazon app is a mobile application available for iOS and Android devices.
Amazon Sites offer a wider range of features and functionalities compared to the app.
The app provides a more streamlined and optimized user experience for mobile users.
Amazon Sites may have a responsive d...
posted on 9 Jul 2024
I appeared for an interview in Jun 2024.
I applied via LinkedIn and was interviewed before Sep 2021. There were 2 interview rounds.
The three lines of defense refer to the three levels of risk management in an organization.
First line of defense: Operational management and control
Second line of defense: Risk management and compliance functions
Third line of defense: Internal audit function
Sample size for a control is determined based on statistical significance and desired level of confidence.
Determine the desired level of confidence (usually 95%)
Calculate the margin of error based on the control's standard deviation
Use a sample size calculator to determine the required sample size
Consider the population size and adjust the sample size accordingly
Ensure the sample is representative of the population bei
Control design and operating effectiveness can be tested through various methods.
Reviewing control design documentation
Performing walkthroughs of control processes
Testing control activities through simulations or actual transactions
Analyzing control testing results and identifying areas for improvement
Assessing the overall effectiveness of controls in achieving their intended objectives
Find an odd occurring number among even occurring numbers.
Use XOR operation to cancel out even occurring numbers and get the odd occurring number.
Iterate through the array and XOR each element with the result variable.
The final result will be the odd occurring number.
Print the spiral order of a binary tree and matrix.
For binary tree, use level order traversal and alternate direction for each level.
For matrix, use four pointers to traverse in spiral order.
Example for binary tree: 1 -> 2 -> 3 -> 4 -> 5 -> 6 -> 7 -> 8 -> 9
Example for matrix: 1 2 3 4 -> 8 7 6 5 -> 9 10 11 12 -> 16 15 14 13
Finding pairs in an array with a given sum.
Iterate through the array and for each element, check if the difference between the given sum and the element exists in the array.
Use a hash table to store the elements of the array and their indices for faster lookup.
If there are multiple pairs with the same sum, return any one of them.
If no pair is found, return null or an empty array.
Find total number of k element with given avg in an array in minimum time complexity.
Use sliding window technique to traverse the array in O(n) time complexity.
Maintain a sum variable to keep track of the sum of elements in the window.
If the sum of elements in the window is equal to k times the given avg, increment the count.
Move the window by subtracting the first element and adding the next element in the array.
Printing non-boundary elements of a binary tree
Traverse the tree in any order (preorder, inorder, postorder)
Check if the current node is not a boundary node (not the first or last node in its level)
If it is not a boundary node, print its value
Recursively traverse its left and right subtrees
I applied via Walk-in
I listed a job that I was fired from after only a few weeks.
Listed a job where I was fired after a few weeks
Didn't provide a clear explanation for why I was let go
Didn't highlight any skills or accomplishments from that job
I admire Dr. Raghunath Anant Mashelkar, an IIT Bombay alumnus, for his contributions to science and technology.
Dr. Mashelkar is a chemical engineer and has made significant contributions to the field of polymer science.
He has also served as the Director General of the Council of Scientific and Industrial Research (CSIR) and has been awarded numerous honors, including the Padma Shri and Padma Bhushan.
Dr. Mashelkar has a...
The eurozone crisis refers to the economic and financial difficulties faced by some countries in the European Union.
The crisis began in 2009 with the Greek debt crisis and spread to other countries in the eurozone.
It was caused by a combination of factors including high levels of debt, low economic growth, and structural problems within the eurozone.
The crisis led to bailouts of several countries by the European Centra...
The Libor Scam was a manipulation of the London Interbank Offered Rate (Libor) by banks to benefit their own trading positions.
Libor is a benchmark interest rate used globally for financial products
Banks were found to have manipulated the rate to benefit their own trading positions
The scandal resulted in billions of dollars in fines for banks involved
Several high-profile bankers were also convicted for their involvemen...
Derivatives are financial instruments that derive their value from an underlying asset or security.
Derivatives can be used for hedging or speculation.
Examples of derivatives include futures, options, and swaps.
Derivatives can be traded on exchanges or over-the-counter.
Derivatives can be complex and involve significant risk.
Derivatives played a role in the 2008 financial crisis.
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 investmen...
Prime Services is a suite of financial services offered by investment banks to hedge funds and other institutional clients.
Prime brokerage
Securities lending
Cash management
Risk management
Trade execution
Reporting and analytics
Examples: Goldman Sachs Prime Services, J.P. Morgan Prime Services
QE stands for Quantitative Easing. It is a monetary policy used by central banks to stimulate the economy.
QE involves the central bank buying government bonds or other securities from the market to increase the money supply.
The increased money supply is intended to lower interest rates, encourage borrowing and spending, and boost economic activity.
QE is typically used when interest rates are already low and traditional...
Using bitwise operator to check the last bit of the number.
Use bitwise AND operator with 1 to check the last bit of the number.
If the result is 0, the number is even. If the result is 1, the number is odd.
Example: 6 & 1 = 0 (even), 7 & 1 = 1 (odd)
Implement a dynamic 2D excel sheet using DS
Use a 2D array to store the data
Implement functions to add, delete, and modify data
Use data structures like linked lists or hash tables for efficient searching and sorting
Implement dynamic resizing to handle large amounts of data
Use GUI libraries like Tkinter or PyQt for user interface
Joining tables in DBMS evolved as a solution to handle complex data relationships.
Joins allow combining data from multiple tables based on a common column.
The concept of joins originated from the need to handle complex data relationships.
Joins can be inner, outer, left, right, or cross depending on the type of data required.
Joins can improve query performance by reducing the number of queries needed to retrieve data.
Jo...
based on 1 interview
Interview experience
Assistant Vice President
4.8k
salaries
| ₹17 L/yr - ₹48.5 L/yr |
Assistant Manager
3.3k
salaries
| ₹6.1 L/yr - ₹20.7 L/yr |
Officer
2.9k
salaries
| ₹10.7 L/yr - ₹35.5 L/yr |
Vice President
2.6k
salaries
| ₹21 L/yr - ₹70 L/yr |
Manager
2.3k
salaries
| ₹11.5 L/yr - ₹38 L/yr |
Wells Fargo
JPMorgan Chase & Co.
HSBC Group
Cholamandalam Investment & Finance