Upload Button Icon Add office photos

Filter interviews by

Morgan Stanley QA Test Lead Interview Questions, Process, and Tips

Updated 23 Apr 2022

Morgan Stanley QA Test Lead Interview Experiences

1 interview found

QA Test Lead Interview Questions & Answers

user image Anonymous

posted on 23 Apr 2022

Round 1 - Technical 

(4 Questions)

  • Q1. How to multiply 2 strings
  • Ans. 

    It is not possible to multiply 2 strings in a mathematical sense.

    • Strings can be concatenated using the + operator.

    • To repeat a string, use the * operator followed by the number of repetitions.

    • To convert a string to a number, use the parseInt() or parseFloat() functions.

  • Answered by AI
  • Q2. How to get non repeating substring from a string
  • Ans. 

    To get non-repeating substring from a string, we can use the sliding window technique.

    • Create a hash set to store the characters in the current window.

    • Iterate through the string and add each character to the hash set.

    • If a repeating character is found, remove the first character from the hash set and move the window.

    • Keep track of the longest non-repeating substring found so far.

    • Return the longest non-repeating substring.

  • Answered by AI
  • Q3. Difference between implicit and explicit wait
  • Ans. 

    Implicit wait is a global wait applied to all elements, while explicit wait is applied to specific elements.

    • Implicit wait is set once and applied to all elements in the script

    • Explicit wait is set for specific elements and waits until a certain condition is met

    • Implicit wait is not recommended as it can slow down the script unnecessarily

    • Explicit wait is more efficient as it only waits for the necessary time

    • Example of imp...

  • Answered by AI
  • Q4. SQL Query to find nth salary
  • Ans. 

    SQL query to find nth salary

    • Use ORDER BY and LIMIT clauses

    • Use subquery to exclude previous salaries

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared ,this interview was around String only

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Pusedo code explain and improve
  • Ans. 

    Pseudo code explanation and improvement for better understanding and efficiency

    • Pseudo code is a high-level description of a computer program or algorithm

    • It uses natural language mixed with programming language-like syntax

    • Improvements can include adding comments for clarity, using proper indentation, and simplifying complex logic

    • Example: Original pseudo code - 'if x > 5 then print 'Hello World' else print 'Goodbye'

    • Impro...

  • Answered by AI
  • Q2. Explain framework
  • Ans. 

    A framework is a set of guidelines, libraries, and tools used to develop and maintain software applications.

    • Provides structure and organization for code

    • Promotes code reusability

    • Facilitates automation and testing

    • Examples: Selenium for web automation, JUnit for unit testing

  • Answered by AI
Round 2 - Group Discussion 

Agile and day to day working
Stakeholders and conflict management

Round 3 - HR 

(2 Questions)

  • Q1. Salary and benefits
  • Q2. Ways of working
  • Ans. 

    Effective ways of working include clear communication, collaboration, prioritization, and continuous improvement.

    • Clear communication is essential for sharing information and avoiding misunderstandings.

    • Collaboration helps team members work together towards common goals.

    • Prioritization ensures that tasks are completed in the most efficient order.

    • Continuous improvement involves learning from mistakes and finding ways to wo...

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Naukri.com

Round 1 - Technical 

(5 Questions)

  • Q1. Basic questions on manual testing concepts, SQL query, Unix shell scripting questions,etl and some situations based questions
  • Q2. What is bug life cycle
  • Ans. 

    Bug life cycle is the process of identifying, reporting, fixing, retesting, and closing a software bug.

    • Bug identification: Bug is identified by QA engineer during testing.

    • Bug reporting: QA engineer reports the bug with detailed information.

    • Bug fixing: Developer fixes the bug based on the reported details.

    • Bug retesting: QA engineer retests the fixed bug to ensure it is resolved.

    • Bug closing: Once the bug is confirmed fix

  • Answered by AI
  • Q3. Write query for duplicate records
  • Ans. 

    Query to find duplicate records in a database table

    • Use GROUP BY clause with HAVING COUNT() function to identify duplicate records

    • Select columns to display duplicate records

    • Example: SELECT column1, column2, COUNT(*) FROM table_name GROUP BY column1, column2 HAVING COUNT(*) > 1

  • Answered by AI
  • Q4. How to copy one file to another
  • Ans. 

    Use a file copy command to copy one file to another

    • Use the 'cp' command in Unix/Linux systems

    • Syntax: cp source_file destination_file

    • Example: cp file1.txt file2.txt

  • Answered by AI
  • Q5. How would you handle major bugs in your current project

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

UBS user image Sayali Bagal

posted on 10 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Write program to get count of letters in a word
  • Ans. 

    Program to count letters in a word using array of strings

    • Create an array to store the count of each letter in the word

    • Iterate through each letter in the word and increment the count in the array

    • Return the array with the count of each letter

  • Answered by AI
  • Q2. How to find elements that are not available in dom in selenium? exception in selenium
  • Ans. 

    To find elements not available in DOM in Selenium, use try-catch block to handle NoSuchElementException.

    • Use try-catch block to handle NoSuchElementException when trying to find elements not available in DOM.

    • Catch the exception and handle it appropriately in the code.

    • Use WebDriverWait with ExpectedConditions to wait for the element to be present before interacting with it.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java technical questions on single ton
  • Q2. Describing test automation framework
  • Ans. 

    Test automation framework is a set of guidelines, tools, and processes used to automate testing of software applications.

    • Test automation framework helps in organizing test scripts, data, and reports.

    • It provides reusable components for test automation such as libraries, functions, and utilities.

    • Frameworks can be data-driven, keyword-driven, or hybrid depending on the project requirements.

    • Popular test automation framewor...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Scenario based question
  • Q2. Function interface program
  • Ans. 

    A function interface program is a program that defines the interface of a function without implementing it.

    • Function interface programs are used to declare the structure and parameters of a function without writing the actual code.

    • They are commonly used in object-oriented programming to define abstract classes or interfaces.

    • Example: In Java, an interface is a type similar to a class but defines a set of abstract methods

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Oct 2024.

Round 1 - Coding Test 

Basics js question was there

Round 2 - Technical 

(1 Question)

  • Q1. Scenario based questions
Round 3 - HR 

(1 Question)

  • Q1. Basic hr questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Types of testing
  • Ans. 

    Types of testing include functional testing, non-functional testing, manual testing, automated testing, regression testing, and performance testing.

    • Functional testing: Testing the functionality of the software against the requirements.

    • Non-functional testing: Testing aspects like performance, usability, and security.

    • Manual testing: Testing performed manually by testers.

    • Automated testing: Testing performed using automate...

  • Answered by AI
  • Q2. Cucumber framework
Round 2 - One-on-one 

(1 Question)

  • Q1. Scenario based questions
Round 3 - HR 

(1 Question)

  • Q1. General discussion

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Connecting String using Java selenium
  • Ans. 

    To connect strings using Java Selenium, use the concatenation operator (+) or the concat() method.

    • Use the concatenation operator (+) to connect strings: String result = str1 + str2;

    • Use the concat() method to connect strings: String result = str1.concat(str2);

  • Answered by AI
Round 2 - Coding Test 

Snapshot code for capturing images

Skills evaluated in this interview

QA Engineer Interview Questions & Answers

BNY user image rahul yadav

posted on 23 Oct 2023

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Technical 

(4 Questions)

  • Q1. What is Defect Life Cycle?
  • Ans. 

    Defect Life Cycle is the process of identifying, reporting, fixing, retesting, and closing software defects.

    • Defect identification: Finding and documenting the issue in the software.

    • Defect reporting: Informing the development team about the identified defect.

    • Defect fixing: Developers resolve the reported defect.

    • Defect retesting: QA team verifies if the defect is fixed correctly.

    • Defect closing: Once the defect is confirm

  • Answered by AI
  • Q2. What are different type of waits in Selenium?
  • Ans. 

    Different types of waits in Selenium include Implicit Wait, Explicit Wait, Fluent Wait, and Page Load Timeout.

    • Implicit Wait: Waits for a certain amount of time before throwing a No Such Element Exception.

    • Explicit Wait: Waits for a certain condition to occur before proceeding further in the code.

    • Fluent Wait: Waits for a condition to be true with a specified polling frequency.

    • Page Load Timeout: Waits for the entire page

  • Answered by AI
  • Q3. Tell logic to select first characters of each word in a given string sentence.
  • Ans. 

    Use a loop to iterate through each word in the string and extract the first character of each word.

    • Split the string into an array of words using a space as the delimiter

    • Iterate through each word in the array and extract the first character of each word

    • Store the first characters in a new array

  • Answered by AI
  • Q4. Write a program to reverse a number.
  • Ans. 

    Program to reverse a number

    • Convert the number to a string to easily manipulate each digit

    • Iterate through the string in reverse order and append each digit to a new string

    • Convert the reversed string back to an integer

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic string and number based programs.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Selenium questions - iframes, window handles, locators, synchronization (waits)
  • Q2. What is Test harness
  • Ans. 

    Test harness is a software tool used to run automated tests on software applications.

    • Test harness provides a framework for running test cases and reporting results.

    • It includes test data, test scripts, and a way to execute tests.

    • Test harness can simulate user interactions and test different scenarios.

    • Examples of test harness tools include JUnit for Java and NUnit for .NET.

  • Answered by AI
  • Q3. How will you write test case for a scenario
  • Ans. 

    To write a test case for a scenario, identify the objective, define test steps, determine expected results, and validate the outcome.

    • Identify the objective of the test case

    • Define the test steps to be executed

    • Determine the expected results for each step

    • Validate the outcome against the expected results

    • Include preconditions and postconditions if necessary

  • Answered by AI

Skills evaluated in this interview

Morgan Stanley Interview FAQs

How many rounds are there in Morgan Stanley QA Test Lead interview?
Morgan Stanley interview process usually has 1 rounds. The most common rounds in the Morgan Stanley interview process are Technical.
What are the top questions asked in Morgan Stanley QA Test Lead interview?

Some of the top questions asked at the Morgan Stanley QA Test Lead interview -

  1. How to get non repeating substring from a str...read more
  2. Difference between implicit and explicit w...read more
  3. How to multiply 2 stri...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.9
 • 550 Interviews
HSBC Group Interview Questions
4.0
 • 483 Interviews
Goldman Sachs Interview Questions
3.6
 • 401 Interviews
Deutsche Bank Interview Questions
3.9
 • 353 Interviews
American Express Interview Questions
4.2
 • 352 Interviews
UBS Interview Questions
4.0
 • 345 Interviews
BNY Interview Questions
4.0
 • 325 Interviews
Citicorp Interview Questions
3.7
 • 275 Interviews
Barclays Interview Questions
3.9
 • 264 Interviews
View all
Associate
3k salaries
unlock blur

₹5 L/yr - ₹19.1 L/yr

Senior Manager
2.5k salaries
unlock blur

₹15.9 L/yr - ₹54 L/yr

Manager
1.9k salaries
unlock blur

₹10.6 L/yr - ₹40 L/yr

Senior Associate
1.5k salaries
unlock blur

₹7 L/yr - ₹26 L/yr

Vice President
1.2k salaries
unlock blur

₹20.7 L/yr - ₹80 L/yr

Explore more salaries
Compare Morgan Stanley with

JPMorgan Chase & Co.

4.1
Compare

Goldman Sachs

3.6
Compare

TCS

3.7
Compare

Deloitte

3.8
Compare

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
Did you find this page helpful?
Yes No
write
Share an Interview