Upload Button Icon Add office photos
Engaged Employer

i

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

TO THE NEW Verified Tick

Compare button icon Compare button icon Compare
3.8

based on 584 Reviews

Filter interviews by

TO THE NEW Automation Engineer Interview Questions and Answers

Updated 2 Nov 2024

TO THE NEW Automation Engineer Interview Experiences

1 interview found

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

Good coding questions

Round 2 - Coding Test 

Excellent questions..good

Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Office discussion

Interview questions from similar companies

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

It’s easy round you can crack that

Round 2 - Technical 

(1 Question)

  • Q1. What is meant by jagged array
Round 3 - HR 

(1 Question)

  • Q1. What’s your hobbies
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 May 2024. There was 1 interview round.

Round 1 - Coding Test 

This was a C# automation test engineer interview(experience 2 years).
Duration of Interview was around 30 to 45 minutes with questions focused on OOPs concepts, basic programming questions & selenium questions.

Interview Preparation Tips

Topics to prepare for Iris Software Automation Engineer interview:
  • OOPS
  • Selenium
  • C#
Interview preparation tips for other job seekers - Prepare OOPs concepts, basic programming questions, selenium questions.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Nov 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Coding,sql queries, aptitude,data structures

Round 2 - Group Discussion 

My topic is Future of AI

Round 3 - Technical 

(1 Question)

  • Q1. Python,sql,data structures
Round 4 - HR 

(1 Question)

  • Q1. Family background, introduction, company background, expected salary
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in 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 tips
Round 2 - Assignment 

3 Coding questions was asked in L1 round and indepth check of basic of Java

Round 3 - Technical 

(2 Questions)

  • Q1. Questions related to Basics of Java, Selenium, testNG, Database
  • Q2. CI/CD tools, Maven, testNg.xml

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of Java, Selenium, testNG should be clear to crack the interview.
Interview experience
4
Good
Difficulty level
-
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Explain your Frame work,Java OOPs concepts, String manipulations questions, Selenium locators questions, Listners , widows handling
Round 2 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Aptitude Test 

The first round was coding+ aptitude
Gave exam on unstop platform the aptitude questions where divided into section 45 mins for aptitude (logical reasoning+ quants+ verbal) then 25 min for technical mcqs try to be as fast as you can

Round 2 - Coding Test 

It consisted of 3 coding questions 2 were easy 1 was hard

Round 3 - Virtual interview 

(2 Questions)

  • Q1. They asked me mostly SQL based on my resume ( asked other friends, and mostly the question where on the skills you mention on resume)
  • Q2. Some coding questions like palindrome and reverse a string
Round 4 - Technical 

(2 Questions)

  • Q1. Mostly resume based questions
  • Q2. Text cases for your projects and how do you test your projects
  • Ans. 

    I create test cases based on project requirements and use automation tools to test the projects.

    • Identify test scenarios based on project requirements

    • Create test cases for positive and negative scenarios

    • Use automation tools like Selenium or Appium to execute test cases

    • Analyze test results and report any issues found

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Basic HT question

Skills evaluated in this interview

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

(5 Questions)

  • Q1. Selenium project realtime questions like handling Dynamic web elements
  • Q2. SQL query for joining
  • Ans. 

    SQL query for joining tables to retrieve data from multiple related tables.

    • Use JOIN keyword to combine rows from two or more tables based on a related column between them.

    • Types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN.

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column;

  • Answered by AI
  • Q3. Java program for oops concepts
  • Ans. 

    Java program showcasing OOPs concepts like inheritance, encapsulation, polymorphism, and abstraction.

    • Create classes representing different entities with properties and methods

    • Use inheritance to create a parent-child class relationship

    • Demonstrate encapsulation by setting private variables and using getter and setter methods

    • Show polymorphism by overriding methods in child classes

    • Implement abstraction by creating abstract

  • Answered by AI
  • Q4. Writing Xpath for any page
  • Ans. 

    Xpath is a query language used to locate elements on a web page based on their attributes and structure.

    • Identify unique attributes of the element you want to locate

    • Use the '//' operator to search for elements anywhere in the document

    • Use the '[@attribute='value']' syntax to specify the attribute and value you are looking for

    • Combine multiple conditions using 'and' or 'or' operators

    • Use functions like 'contains()', 'starts

  • Answered by AI
  • Q5. High level test scenarios

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is the significance of the public static void main(String arv[]) method in Java?
  • Ans. 

    The public static void main(String arv[]) method is the entry point of a Java program, where execution begins.

    • The 'public' keyword allows the method to be accessed from outside the class.

    • The 'static' keyword allows the method to be called without creating an instance of the class.

    • The 'void' keyword indicates that the method does not return any value.

    • The 'main' method is the starting point of execution for a Java progra...

  • Answered by AI
  • Q2. Given a string input = "Achiever2025," how can you separate the alphabets and digits from input?
  • Ans. 

    Separate alphabets and digits from a given string input.

    • Iterate through each character in the input string

    • Check if the character is a letter or a digit using built-in functions like isalpha() and isdigit()

    • Create separate arrays for alphabets and digits and store the characters accordingly

  • Answered by AI
  • Q3. What is Class and Object
  • Ans. 

    A class is a blueprint for creating objects, while an object is an instance of a class.

    • A class defines the properties and behaviors of objects.

    • An object is a specific instance of a class.

    • Classes can be used to create multiple objects with similar characteristics.

    • Objects can interact with each other by calling methods defined in their class.

    • Example: Class 'Car' defines properties like 'color' and behaviors like 'drive'....

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Netcracker Technology Automation Test Engineer interview:
  • Oops
  • Java String based questions
  • Testng
  • Automation Framework
Interview experience
2
Poor
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Hacker rank test given

TO THE NEW Interview FAQs

How many rounds are there in TO THE NEW Automation Engineer interview?
TO THE NEW interview process usually has 3 rounds. The most common rounds in the TO THE NEW interview process are Coding Test and HR.

Tell us how to improve this page.

TO THE NEW Automation Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-Life balance

4.0

Salary & Benefits

3.0

Job Security

4.0

Company culture

4.0

Promotions/Appraisal

4.0

Work Satisfaction

Explore 1 Review and Rating
Senior Software Engineer
593 salaries
unlock blur

₹9 L/yr - ₹27.5 L/yr

Software Engineer
561 salaries
unlock blur

₹3.5 L/yr - ₹13.8 L/yr

Associate Technical Leader
229 salaries
unlock blur

₹12.8 L/yr - ₹35.4 L/yr

Senior Quality Engineer
157 salaries
unlock blur

₹7 L/yr - ₹22.5 L/yr

Devops Engineer
154 salaries
unlock blur

₹4.5 L/yr - ₹14.5 L/yr

Explore more salaries
Compare TO THE NEW with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
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