Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Celebal Technologies Team. If you also belong to the team, you can get access from here

Celebal Technologies Verified Tick

Compare button icon Compare button icon Compare
3.2

based on 555 Reviews

Filter interviews by

Celebal Technologies QA Automation Engineer Interview Questions and Answers

Updated 25 Jan 2022

Celebal Technologies QA Automation Engineer Interview Experiences

1 interview found

I applied via Recruitment Consultant and was interviewed in Jul 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What Is testing? 2.what are types nd level of testing 3.STLC 4.basics questions about Selenium
  • Ans. 

    Testing is the process of evaluating a system or its component(s) with the intent to find whether it satisfies the specified requirements or not.

    • Types of testing include functional testing, performance testing, security testing, usability testing, etc.

    • Levels of testing include unit testing, integration testing, system testing, acceptance testing, etc.

    • STLC stands for Software Testing Life Cycle and includes phases like ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Plz go through the QA interview questions present on guru99,java tpoint.

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Software Testing
  • Q2. Application based QA questions
Round 2 - Technical 

(2 Questions)

  • Q1. Software testing, QA and Resume based questions
  • Q2. Automation and programming related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well
Instead of going in depth, focus on a basic and primary questions and be thorough on it
Know everything mentioned in the resume
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Mainly related to JAVA programming
  • Q2. Selenium project reviews
Round 2 - Technical 

(2 Questions)

  • Q1. Reverse the string
  • Ans. 

    Reverse a given string

    • Create a new empty string to store the reversed string

    • Iterate through the original string from end to start and append each character to the new string

    • Return the reversed string

  • Answered by AI
  • Q2. Scenario based questions

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

In this first round it was of 45mins which included MCQ question and 1 coding question.

Round 2 - Technical 

(4 Questions)

  • Q1. 1.Difference Between Const,Var,Char. 2.Oop's concept with example 3.JavaScript is async or sync language and explain the reason. 4.How to create a simple object in JavaScript. 5.Find element and Find Eleme...
  • Ans. 

    Answers to common interview questions for Automation Test Engineer position.

    • Const is used for constant values that cannot be reassigned, var is used for variable declaration, and char is a data type for storing characters in programming languages.

    • OOPs concepts include inheritance, encapsulation, polymorphism, and abstraction. Example: Inheritance allows a class to inherit properties and methods from another class.

    • JavaS...

  • Answered by AI
  • Q2. What is Type coercion?
  • Ans. 

    Type coercion is the process of converting one data type to another in programming.

    • Type coercion can happen implicitly or explicitly in programming languages.

    • Implicit type coercion occurs when the language automatically converts data types during operations.

    • Explicit type coercion occurs when the programmer manually converts data types using functions or operators.

    • Example: In JavaScript, the addition operator (+) can pe...

  • Answered by AI
  • Q3. What is Inheritance? Polymorphism?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class. Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Inheritance allows for code reusability by defining a new class based on an existing class.

    • Polymorphism enables flexibility in programming by allowing objects to be treated as instances of their pare...

  • Answered by AI
  • Q4. API Error code with explaination?
  • Ans. 

    API error codes are unique identifiers used to indicate specific errors in an API response.

    • API error codes are typically numeric or alphanumeric codes that correspond to specific errors in the API.

    • Each error code should have a corresponding explanation in the API documentation to help developers understand the issue.

    • Examples of API error codes include 400 Bad Request, 401 Unauthorized, and 404 Not Found.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Introduce Yourself? Why should we hire you? What is your relevant experience? Tell me about yourself? What are your salary expectations?

Interview Preparation Tips

Topics to prepare for Globant Automation Test Engineer interview:
  • Javascript
  • Cypress
  • OOPS
  • Core Java
  • API
Interview preparation tips for other job seekers - I Interviewed at Globant on 13/05/2024. First round went very well where they introduce about there company and link was provided For MCQ and coding round conducted.2nd round was GK round which was totally based on Technical question. I had answered each and very question but then also not got selected.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. LOCATE X PATH , GET WINDOW HANDLE
  • Ans. 

    Locate element using Xpath and retrieve window handle in automation testing.

    • Use findElement method with By.xpath to locate the element using Xpath.

    • Use getWindowHandle method to retrieve the window handle.

  • Answered by AI
  • Q2. TYPES OF WAITS WITH THEIR SYNTAX
  • Ans. 

    Types of waits in automation testing with their syntax

    • Implicit Wait: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

    • Explicit Wait: WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions.visibilityOfElementLocated(By.id("elementID")));

    • Fluent Wait: Wait wait = new FluentWait(driver).withTimeout(Duration.ofSeconds(10)).pollingEvery(Duration.ofSeconds(2)).ignoring(NoSuchElementEx

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Write Java code to find square root without Math.sqrt()
  • Ans. 

    Use Newton's method to find square root without Math.sqrt() in Java.

    • Initialize a variable to store the guess value of square root

    • Iterate until the difference between the guess and actual square root is within a desired threshold

    • Update the guess value using the formula: guess = (guess + number/guess) / 2

  • Answered by AI
  • Q2. Write Java code to add digits of a number until the sum is a single digit
  • Ans. 

    Java code to add digits of a number until the sum is a single digit

    • Create a function that takes an integer as input

    • Use a while loop to keep adding the digits until the sum is a single digit

    • Convert the number to a string to easily access individual digits

  • Answered by AI
  • Q3. Write a Java code to print a particular pattern
  • Ans. 

    Java code to print a particular pattern using loops

    • Use nested loops to iterate through rows and columns

    • Print specific characters based on the row and column index

    • Example: Printing a pyramid pattern

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Want to share my interview experience.
In the first round, they asking few basic selenium questions and 2 simple Java coding which I executed.
I got selected for the second round.
In the second round, again they asked me few selenium questions and asked me to write syntax in selenium Java for simple classes.
I answered all of them to the best of my knowledge. They asked me to execute simple Java program. I did. I was trying to execute the second one. They ended the interview.
After a day I called hr for response of my interview and mailed him as well.
He sent a mail saying that I'm not at all good at selenium and even know basic Java.
This response broke my heart and I lost my confidence. I'm now scared to apply for another interview.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. HTTP error code : 203 ?
  • Ans. 

    HTTP error code 203 indicates that the server successfully processed the request, but is returning information that may be from another source.

    • HTTP 203 is a non-standard error code that is not defined in the HTTP/1.1 standard.

    • It is typically used to indicate that the server successfully processed the request, but is returning information from a different source.

    • This status code is not commonly used and may not be suppo

  • Answered by AI
  • Q2. Arraylist vs linklist
  • Ans. 

    ArrayList is a resizable array implementation, LinkedList is a doubly linked list implementation.

    • ArrayList is faster for accessing elements by index, LinkedList is faster for adding/removing elements in the middle.

    • ArrayList uses less memory as it only stores elements, LinkedList uses more memory as it stores elements and pointers.

    • ArrayList is better for random access, LinkedList is better for sequential access.

    • Example:...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. How do you check property is already initialized or not in Selenium
  • Ans. 

    To check if a property is already initialized in Selenium, you can use the 'isDisplayed' method.

    • Use the 'isDisplayed' method to check if the property is visible on the web page

    • If the property is visible, it is likely initialized

    • If the property is not visible, it may not be initialized

  • Answered by AI
  • Q2. What is Generics
  • Ans. 

    Generics in programming allow for the creation of classes, interfaces, and methods that operate on specified types.

    • Generics provide type safety by allowing the specification of types at compile time.

    • They enable the creation of reusable code that can work with different data types.

    • Examples include List in C# and ArrayList in Java.

Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Dec 2022. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Oops Concepts of Java
  • Ans. 

    Oops Concepts of Java are fundamental principles of object-oriented programming.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability of a method to do different things based on the object it is acting upon.

    • Abstraction: Hiding the implementation details and showing only the necessary fe

  • Answered by AI
  • Q2. How to validate that the URL loaded is correct or not?
  • Ans. 

    To validate the correct URL loaded, check the current URL in the browser.

    • Get the current URL from the browser using driver.getCurrentUrl() method in Selenium.

    • Compare the current URL with the expected URL to validate correctness.

    • Use assertions or conditional statements to confirm if the URL is correct.

    • Consider handling any redirects or dynamic URLs that may affect validation.

    • Utilize regular expressions for more flexible

  • Answered by AI
  • Q3. Alert handling in selenium
  • Ans. 

    Alert handling in Selenium involves handling pop-up alerts, confirmation alerts, and prompt alerts.

    • Use driver.switchTo().alert() method to handle alerts

    • To accept an alert, use alert.accept() method

    • To dismiss an alert, use alert.dismiss() method

    • To get text from an alert, use alert.getText() method

    • To send text to a prompt alert, use alert.sendKeys() method

  • Answered by AI
  • Q4. How to perform Mouse actions
  • Ans. 

    Mouse actions can be performed using Selenium WebDriver by using Actions class

    • Create an instance of Actions class

    • Use methods like moveToElement, click, doubleClick, contextClick, dragAndDrop, etc.

    • Perform the desired action by calling the respective method on the Actions object

  • Answered by AI
  • Q5. How to read data from an XL file using selenium
  • Ans. 

    You can read data from an Excel file using Apache POI library in Selenium.

    • Use Apache POI library to interact with Excel files

    • Create a FileInputStream object to read the Excel file

    • Create a Workbook object to represent the Excel file

    • Get the desired sheet from the Workbook

    • Iterate through rows and cells to read data

  • Answered by AI
  • Q6. Waits in selenium
  • Ans. 

    Waits in Selenium are used to make the automation script wait for a certain condition to be met before proceeding.

    • Implicit Wait: Waits for a certain amount of time before throwing a NoSuchElementException.

    • Explicit Wait: Waits for a certain condition to be met before proceeding.

    • Fluent Wait: Waits for a condition with a defined maximum amount of time.

    • Thread.sleep(): Pauses the execution for a specified amount of time.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Feb 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 - One-on-one 

(2 Questions)

  • Q1. They mostly asked about Java questions and few scenarios to write test cases.
  • Q2. Most of the questions are java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Better to have good grip on coding concepsts. I haven't clered the first round.

Celebal Technologies Interview FAQs

How to prepare for Celebal Technologies QA Automation Engineer interview?
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 Celebal Technologies. The most common topics and skills that interviewers at Celebal Technologies expect are Automation Testing, Mobile Application Testing, QA Automation, Web Application Testing and API Automation.

Tell us how to improve this page.

People are getting interviews through

based on 1 Celebal Technologies interview
Recruitment Consultant
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
LTIMindtree Interview Questions
3.9
 • 2.7k Interviews
Mphasis Interview Questions
3.4
 • 773 Interviews
Globant Interview Questions
3.9
 • 162 Interviews
View all
Data Engineer
363 salaries
unlock blur

₹4 L/yr - ₹11 L/yr

Associate
257 salaries
unlock blur

₹4 L/yr - ₹9.5 L/yr

Associate Data Engineer
154 salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Associate Consultant
136 salaries
unlock blur

₹5 L/yr - ₹16.4 L/yr

Data Scientist
128 salaries
unlock blur

₹4.5 L/yr - ₹13 L/yr

Explore more salaries
Compare Celebal Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
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