Upload Button Icon Add office photos
Engaged Employer

i

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

Apexon Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Apexon Sdet Automation Test Engineer Interview Questions and Answers

Updated 6 Dec 2024

Apexon Sdet Automation Test Engineer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Automation framework related questions
  • Q2. Java coding on strings

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 Basic leetcode problems

Round 2 - One-on-one 

(4 Questions)

  • Q1. Asked questions from my Resume.
  • Q2. Asked questions about my Non-Technical Experiences
  • Q3. Asked me to automate some things from selenium webdriver because I had mentioned projects on resume.
  • Q4. Asked me to write some content explaining about cybersecurity awareness because I had mentioned Content Writing on my resume.

Interview Preparation Tips

Topics to prepare for IBM Sdet Automation Test Engineer interview:
  • DSA
Interview preparation tips for other job seekers - Be Honest and Concise, Dont overshare when a question is asked, just answer the question in its entirety
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Dec 2022. There were 3 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. Selenium and testng questions.
  • Q2. Java program to reverse a sentence
  • Ans. 

    Java program to reverse a sentence

    • Split the sentence into words using the split() method

    • Create a new array to store the reversed words

    • Iterate through the words in reverse order and add them to the new array

    • Join the reversed words using the join() method to form the reversed sentence

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Oops and collection questions.
  • Q2. Program to find repeated character in a word.
  • Ans. 

    Program to find repeated character in a word.

    • Iterate through each character in the word

    • Store each character in a data structure

    • If a character is already present in the data structure, it is a repeated character

  • Answered by AI

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. DSA two sum. question was asked
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(5 Questions)

  • Q1. Introduction about self
  • Ans. 

    I am a passionate SDET Automation Test Engineer with 5 years of experience in creating and executing automated test scripts.

    • 5 years of experience in automation testing

    • Proficient in creating and executing automated test scripts

    • Strong knowledge of testing tools like Selenium and JUnit

    • Experience in Agile development environment

    • Excellent problem-solving skills

  • Answered by AI
  • Q2. What is the difference between close and quit
  • Q3. Reverse a string program
  • Ans. 

    Program to reverse a string

    • Use a loop to iterate through the characters of the string

    • Swap the characters from start to end of the string

    • Repeat until the entire string is reversed

  • Answered by AI
  • Q4. How to handle pop-up
  • Ans. 

    To handle pop-ups in automation testing, use methods like switchTo().alert(), accept(), dismiss(), getText()

    • Use switchTo().alert() method to switch focus to the pop-up

    • Use accept() method to click on the 'OK' button in the pop-up

    • Use dismiss() method to click on the 'Cancel' button in the pop-up

    • Use getText() method to retrieve the text from the pop-up for validation

  • Answered by AI
  • Q5. What is getWindowsHandles
  • Ans. 

    getWindowsHandles is a method in Selenium WebDriver used to get the window handles of all the open browser windows.

    • getWindowsHandles returns a set of window handles as strings.

    • It is useful for switching between multiple browser windows during automation testing.

    • Example: Set handles = driver.getWindowHandles();

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

Java and automation question

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Manual Testing Concepts
  • Q2. What are Oops Concepts
  • Ans. 

    Oops Concepts are fundamental principles of object-oriented programming such as Inheritance, Encapsulation, Polymorphism, and Abstraction.

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

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

    • Polymorphism: Ability of a function to behave differently based on the object it is acting upon.

    • Abstraction: Hiding t...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was a moderate test

Round 2 - Technical 

(1 Question)

  • Q1. General questions on java and opps
Round 3 - HR 

(1 Question)

  • Q1. Questions about projects
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I was interviewed in Mar 2024.

Round 1 - Coding Test 

Java, selenium,1 hours

Round 2 - Technical 

(2 Questions)

  • Q1. Java constructor
  • Q2. Collection interface
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Relocation procee
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

I was tough and taken the 1 hr for apitude

Round 2 - Coding Test 

Based on dsa and patterns questions

Round 3 - Technical 

(2 Questions)

  • Q1. What is a java
  • Ans. 

    Java is a high-level programming language used for developing applications and software.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

    • It is object-oriented, allowing for modular and reusable code

    • Java is widely used for web development, mobile applications, and enterprise software

    • Examples of Java frameworks include Spring, Hibernate, and Selenium

  • Answered by AI
  • Q2. What is oops and chaterstivs
  • Ans. 

    OOPs stands for Object-Oriented Programming. It is a programming paradigm based on the concept of objects, which can contain data and code.

    • OOPs focuses on creating objects that interact with each other to solve problems

    • Key features of OOPs include encapsulation, inheritance, polymorphism, and abstraction

    • Encapsulation refers to bundling data and methods that operate on the data into a single unit

    • Inheritance allows a cla...

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Tell me about urself
  • Q2. What do you like about the company

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Apexon Interview FAQs

How many rounds are there in Apexon Sdet Automation Test Engineer interview?
Apexon interview process usually has 1 rounds. The most common rounds in the Apexon interview process are Technical.
What are the top questions asked in Apexon Sdet Automation Test Engineer interview?

Some of the top questions asked at the Apexon Sdet Automation Test Engineer interview -

  1. Automation framework related questi...read more
  2. Java coding on stri...read more

Recently Viewed

INTERVIEWS

TuringMinds

No Interviews

CAMPUS PLACEMENT

Mumbai University

INTERVIEWS

Arvind Group

No Interviews

INTERVIEWS

Becton Dickinson

No Interviews

INTERVIEWS

Becton Dickinson

No Interviews

INTERVIEWS

TuringMinds

No Interviews

INTERVIEWS

Arvind Group

No Interviews

INTERVIEWS

Becton Dickinson

No Interviews

INTERVIEWS

Arvind Group

No Interviews

INTERVIEWS

Becton Dickinson

No Interviews

Tell us how to improve this page.

Apexon Sdet Automation Test Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Apexon Sdet Automation Test Engineer Salary
based on 7 salaries
Lock Unlock
₹11.3 L/yr - ₹20.2 L/yr
10% less than the average Sdet Automation Test Engineer Salary in India
View more details

Apexon Sdet Automation Test Engineer Reviews and Ratings

based on 2 reviews

2.6/5

Rating in categories

2.6

Skill development

3.1

Work-life balance

3.5

Salary

3.1

Job security

2.6

Company culture

2.1

Promotions

2.6

Work satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
787 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Software Engineer
592 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
249 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Senior Engineer
236 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Technical Lead
191 salaries
unlock blur Lock Unlock

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Apexon with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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