Premium Employer

i

This company page is being actively managed by Commonwealth Bank of Australia, India Team. If you also belong to the team, you can get access from here

Commonwealth Bank of Australia, India Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Commonwealth Bank of Australia, India Quality Engineer Interview Questions and Answers for Experienced

Updated 9 Aug 2024

Commonwealth Bank of Australia, India Quality Engineer Interview Experiences for Experienced

1 interview found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

I applied via Naukri.com

Round 1 - Coding Test 

More about testing process and need to write C# string program

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare OOPS concepts, String programs

Interview questions from similar companies

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

Online coding round was conducted .

Round 2 - Technical 

(1 Question)

  • Q1. Java question, selenium questions, testing
Round 3 - HR 

(1 Question)

  • Q1. Why, how when how much
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How do you work on handling multiple windows using Selenium
  • Ans. 

    Handling multiple windows in Selenium involves switching between windows and using window handles.

    • Use getWindowHandles() method to get all window handles

    • Switch between windows using switchTo().window() method

    • Perform actions on the desired window

    • Close or quit windows as needed

  • Answered by AI

Skills evaluated in this interview

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

I applied via Referral

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Selenium ques
  • Q2. Java string question
Round 2 - Technical 

(2 Questions)

  • Q1. Agile related question
  • Q2. Framework related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Wont be that Hard...cover the basics & be bold
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Its a one hour test.

Round 2 - Technical 

(2 Questions)

  • Q1. Basic Java And Coding
  • Q2. Collection in Java , multithreading

Test Engineer Interview Questions & Answers

UBS user image Ashwini Naresh Modi

posted on 18 Jun 2024

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

(1 Question)

  • Q1. Testing levels and Test strategy
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic selenium,Java questions
Round 2 - Technical 

(1 Question)

  • Q1. Coding questions, framework indepth questions
Round 3 - HR 

(1 Question)

  • Q1. Salary details , Negotiation, compelling force

I applied via Referral and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Java logical question
  • Q2. Webdriver architecture
  • Q3. Framework, file and folder structure
  • Q4. Your approach to tackle dynamic objects
  • Ans. 

    I approach dynamic objects by analyzing their behavior and adapting my approach accordingly.

    • I start by understanding the nature of the dynamic object and its expected behavior

    • I then analyze its movement patterns and any potential obstacles or hazards

    • Based on this analysis, I adapt my approach to ensure safe and efficient interaction with the dynamic object

    • For example, when working with a moving conveyor belt, I would e...

  • Answered by AI
  • Q5. Implicit and explicit wait in selenium
  • Ans. 

    Implicit and explicit wait are two types of wait in Selenium used to synchronize the test execution with the application.

    • Implicit wait is used to set a default waiting time for the web elements to load before throwing an exception.

    • Explicit wait is used to wait for a specific condition to occur before proceeding with the test execution.

    • Implicit wait is set globally for the entire test script while explicit wait is set f...

  • Answered by AI
  • Q6. Java oops concepts
  • Q7. Sql queries related to joins
  • Q8. Basic Unix commands

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and try to connect yours answers with some example of your project.

Skills evaluated in this interview

I applied via LinkedIn and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. String manipulation code

Interview Preparation Tips

Interview preparation tips for other job seekers - Be careful to answer to the point
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Sep 2024. There were 5 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Multi threading print odd even with 2 threads but output should be in sync
  • Ans. 

    Use two threads to print odd and even numbers in sync

    • Create two threads, one for printing odd numbers and one for printing even numbers

    • Use synchronization mechanisms like mutex or semaphore to ensure output is in sync

    • Example: Thread 1 prints odd numbers (1, 3, 5, ...) and Thread 2 prints even numbers (2, 4, 6, ...)

  • Answered by AI
  • Q2. Largest common prefix in string array
  • Ans. 

    Find the largest common prefix among an array of strings.

    • Iterate through the characters of the first string and compare with the corresponding characters of other strings.

    • Stop when a mismatch is found or when reaching the end of any string.

    • Return the prefix found so far.

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Saga pattern in microservice
  • Ans. 

    Saga pattern is a design pattern used in microservices architecture to manage distributed transactions.

    • Saga pattern breaks down a transaction into a series of smaller, independent steps.

    • Each step in the saga is a separate transaction that can be rolled back if needed.

    • If one step fails, compensating transactions can be executed to undo the changes made by previous steps.

    • Saga pattern helps maintain data consistency in a ...

  • Answered by AI
  • Q2. API validation and security
Round 3 - Technical 

(2 Questions)

  • Q1. Micro service inter communication
  • Q2. Hash map hash set implementation
  • Ans. 

    Hash map and hash set are data structures that use hashing to store key-value pairs and unique values respectively.

    • Hash map uses key-value pairs where keys are hashed to find the corresponding value

    • Hash set stores unique values using hashing to quickly check for duplicates

    • Example: HashMap<String, Integer> map = new HashMap<>(); HashSet<Integer> set = new HashSet<>();

  • Answered by AI
Round 4 - One-on-one 

(3 Questions)

  • Q1. Validation frame work .
  • Q2. Design pattern , .
  • Q3. Singleton pattern and how to break
  • Ans. 

    Singleton pattern ensures a class has only one instance and provides a global point of access to it.

    • Singleton pattern involves a private constructor, a static method to access the instance, and a static variable to hold the instance.

    • To break the singleton pattern, one can use reflection to access the private constructor and create multiple instances.

    • Another way to break the singleton pattern is by using serialization a

  • Answered by AI
Round 5 - HR 

(2 Questions)

  • Q1. Negotiation on package .
  • Q2. Why to join here
  • Ans. 

    I am excited about the innovative projects and collaborative team environment at this company.

    • Opportunity to work on cutting-edge projects

    • Collaborative team environment

    • Strong company culture and values

    • Room for growth and advancement

    • Positive reputation in the industry

  • Answered by AI

Skills evaluated in this interview

Commonwealth Bank of Australia, India Interview FAQs

How many rounds are there in Commonwealth Bank of Australia, India Quality Engineer interview for experienced candidates?
Commonwealth Bank of Australia, India interview process for experienced candidates usually has 1 rounds. The most common rounds in the Commonwealth Bank of Australia, India interview process for experienced candidates are Coding Test.
How to prepare for Commonwealth Bank of Australia, India Quality Engineer interview for experienced candidates?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Commonwealth Bank of Australia, India. The most common topics and skills that interviewers at Commonwealth Bank of Australia, India expect are Agile Methodology, Agile, Core Banking, Customer Service and Monitoring.
What are the top questions asked in Commonwealth Bank of Australia, India Quality Engineer interview for experienced candidates?

Some of the top questions asked at the Commonwealth Bank of Australia, India Quality Engineer interview for experienced candidates -

  1. SQL - Concatenation, SUBSTR, INSTR, Rank & Dense Rank, UNION & UNION ALL , MINU...read more
  2. How good are you in SQL...read more
  3. Challenges faced in ETL Testing Proje...read more

Tell us how to improve this page.

Commonwealth Bank of Australia, India Quality Engineer Interview Process for Experienced

based on 1 interview

Interview experience

5
  
Excellent
View more
Join Commonwealth Bank of Australia, India World-class technology and banking operations capability center

Interview Questions from Similar Companies

Wells Fargo Interview Questions
3.8
 • 589 Interviews
Citicorp Interview Questions
3.7
 • 575 Interviews
HSBC Group Interview Questions
3.9
 • 492 Interviews
American Express Interview Questions
4.1
 • 368 Interviews
UBS Interview Questions
3.9
 • 339 Interviews
Morgan Stanley Interview Questions
3.6
 • 295 Interviews
FactSet Interview Questions
3.9
 • 211 Interviews
BNP Paribas Interview Questions
3.8
 • 183 Interviews
View all
Commonwealth Bank of Australia, India Quality Engineer Salary
based on 31 salaries
₹13.3 L/yr - ₹27 L/yr
452% more than the average Quality Engineer Salary in India
View more details

Commonwealth Bank of Australia, India Quality Engineer Reviews and Ratings

based on 10 reviews

2.8/5

Rating in categories

3.0

Skill development

3.5

Work-life balance

3.6

Salary

2.9

Job security

3.0

Company culture

2.3

Promotions

2.6

Work satisfaction

Explore 10 Reviews and Ratings
Senior Analyst
262 salaries
unlock blur

₹8.1 L/yr - ₹30.3 L/yr

Senior Software Engineer
249 salaries
unlock blur

₹15 L/yr - ₹50.1 L/yr

Senior Associate
241 salaries
unlock blur

₹5.8 L/yr - ₹12.4 L/yr

Software Engineer
205 salaries
unlock blur

₹12 L/yr - ₹35.6 L/yr

Analyst
204 salaries
unlock blur

₹4.8 L/yr - ₹20 L/yr

Explore more salaries
Compare Commonwealth Bank of Australia, India with

Wells Fargo

3.8
Compare

JPMorgan Chase & Co.

3.9
Compare

HSBC Group

3.9
Compare

Citicorp

3.7
Compare
Did you find this page helpful?
Yes No
write
Share an Interview