Upload Button Icon Add office photos

Filter interviews by

Codezeros Qa Automation Testing Engineer Interview Questions and Answers

Updated 11 Apr 2024

Codezeros Qa Automation Testing Engineer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Core java and selenium
Round 2 - Coding Test 

Automate calendar using selenium with java

Interview questions from similar companies

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

Duration is 45 minutes

Round 2 - Coding Test 

Data structures and java programming

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basics computer fundamentals questions like oops dsa dbms sql

Round 2 - Coding Test 

5 coding questions , 2 are easy 3 medium

Interview Preparation Tips

Interview preparation tips for other job seekers - No tab switching in round1
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

50 questions should be answered in 45 minutes. They include Aptitude, OS, Pseudo codes, micro processors etc

Round 2 - Coding Test 

5 questions will be given 1 easy 2 med 2 hard. Atleast 3 and more should be done

Round 3 - Technical 

(2 Questions)

  • Q1. This is the only interview. No HR will be there. Mostly about the one of the codes that have given in the second round. Some technical questions include oops concepts, SQL etc
  • Q2. Why do we use JS for Web development Why not Python?
  • Ans. 

    JS is used for web development due to its compatibility with browsers, asynchronous capabilities, and large community support.

    • JavaScript is the only language that can be executed in the browser, making it essential for client-side scripting.

    • JS has asynchronous capabilities, allowing for non-blocking operations which are crucial for web development.

    • There is a large community of developers using JS for web development, p...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good at coding if you want to get into this company.

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

MCQ on computer fundamentals

Round 2 - Coding Test 

5 DSA questions medium , hard lvl

Round 3 - Technical 

(3 Questions)

  • Q1. About myself and my project overview
  • Q2. Oops , Abstraction in detail and mysql and nosql diff
  • Q3. DSA questions on Array , Graph and DP
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

50 questions were given and we were supposed to solve it in 45 mins. But from what I've heard only 12 students made it to the next round.

Round 2 - Coding Test 

Didn't qualify but it consisted of leetcode medium-hard questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep exploring other options. Good luck
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Coding Test 

2 problem was given to solve
1) Smallest Negative balance - -----%20America%20-%20Weekly%20Algorithm%20Challenges/Week%2021%20Algorithm%20Challenge/Smallest%20Negative%20Balance.md
2) Find the absolute difference between alpha & beta from the array.
Alpha -An element k in a array occurs k consecutive time
Beta - An element k in an array occurs k consecutive time starting from index k

Sample input
Arr[] = {2,2,2,4,4,4,4,1,2,2]
Output
Alpha - 3
Beta - 1
Absolute difference - 1

Note : consider array index starts with 1

Interview Preparation Tips

Interview preparation tips for other job seekers - Understand the problem statement clearly, prepare well for problem solving & DSA
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Basic of Java , programs
  • Q2. Selenium ,xpath
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 

(5 Questions)

  • Q1. Testing framework,oops concept in framework,use of collection in your testing framework,Xpath,webdriver methods,data provider,git commands,reverse number program,
  • Q2. Diff between list and set
  • Ans. 

    List is an ordered collection of elements with duplicates allowed, while set is an unordered collection of unique elements.

    • List maintains the order of elements, while set does not guarantee any specific order.

    • List allows duplicate elements, while set does not allow duplicates.

    • List is typically implemented using arrays or linked lists, while set is implemented using hash tables or trees.

  • Answered by AI
  • Q3. GetWindowHandles written type
  • Q4. FindElements written type
  • Ans. 

    findElements method is used to locate multiple elements on a web page based on a given locator strategy.

    • findElements method returns a list of WebElements matching the specified locator strategy.

    • Common locator strategies include ID, class name, tag name, name, xpath, and css selector.

    • Example: List elements = driver.findElements(By.xpath("//div[@class='example']"));

Answered by AI
  • Q5. Explain your framework
  • Ans. 

    My framework is a data-driven framework using Selenium WebDriver and TestNG for automated testing.

    • Data-driven approach allows for easy maintenance and scalability

    • Utilizes Selenium WebDriver for interacting with web elements

    • TestNG for test execution and reporting

    • Supports parallel execution for faster test runs

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - you should be clear on finding xpaths, webdriver methods and return types,git commands

    Skills evaluated in this interview

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

    (2 Questions)

    • Q1. Explain interface and abstract class
    • Ans. 

      Interface defines a contract for classes to implement, while abstract class provides partial implementation and can have concrete methods.

      • Interface cannot have method implementations, only method signatures

      • A class can implement multiple interfaces but can only inherit from one abstract class

      • Abstract class can have both abstract and concrete methods

      • Interfaces are used for achieving multiple inheritance in Java

    • Answered by AI
    • Q2. Explain if we remove static keyword from main function what will happen.
    • Ans. 

      Removing static keyword from main function will not have any impact on the program's functionality.

      • Removing static keyword from main function will not affect the program's execution.

      • The main function in C/C++ is always called by the operating system, regardless of whether it is static or not.

      • Static keyword in main function is optional and does not change the behavior of the program.

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - Make Java fundamental strong.

    Skills evaluated in this interview

    Codezeros Interview FAQs

    How many rounds are there in Codezeros Qa Automation Testing Engineer interview?
    Codezeros interview process usually has 2 rounds. The most common rounds in the Codezeros interview process are Technical and Coding Test.

    Tell us how to improve this page.

    Codezeros Qa Automation Testing Engineer Interview Process

    based on 1 interview

    Interview experience

    4
      
    Good
    View more

    Interview Questions from Similar Companies

    Deltax Interview Questions
    2.7
     • 84 Interviews
    Practo Interview Questions
    3.1
     • 74 Interviews
    Wayfair Interview Questions
    3.6
     • 56 Interviews
    KLA Interview Questions
    3.7
     • 44 Interviews
    Busibud Interview Questions
    4.0
     • 42 Interviews
    View all
    Blockchain Developer
    6 salaries
    unlock blur

    ₹4 L/yr - ₹5 L/yr

    Software Engineer
    5 salaries
    unlock blur

    ₹2 L/yr - ₹7.2 L/yr

    Senior Software Engineer
    4 salaries
    unlock blur

    ₹1.2 L/yr - ₹8.4 L/yr

    Associate Software Engineer
    3 salaries
    unlock blur

    ₹5 L/yr - ₹8.4 L/yr

    Junior Software Engineer
    3 salaries
    unlock blur

    ₹3.2 L/yr - ₹5 L/yr

    Explore more salaries
    Compare Codezeros with

    Amazon Sellers Services

    4.0
    Compare

    Primus Global Technologies

    3.9
    Compare

    GAMMON INDIA

    3.8
    Compare

    Practo

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