Upload Button Icon Add office photos
Engaged Employer

i

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

ITC Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

ITC Infotech Qa Automation Testing Engineer Interview Questions and Answers

Updated 17 Jan 2025

ITC Infotech Qa Automation Testing Engineer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Write a java program to remove duplicate element from arrays

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Jan 2025.

Round 1 - Technical 

(14 Questions)

  • Q1. Tell me about Yourself
  • Q2. What is ARP? How it will work? Can we able to delete the ARP entry? And What is the command? How long the ARP entry will be there in table? What is ARP Poisoning?
  • Q3. What is DHCP? Explain in Detail?
  • Q4. What is TCP/UDP and how it will work?
  • Q5. What is VLAN a d how it will work? Explain with scenario
  • Q6. What is STP and how it will work?
  • Q7. How to check network connectivity speed? And how will you debug? How can you increase the frames size and how to capture the frames?
  • Q8. Explain me Layer2 and Layer3 in detail
  • Q9. What is ICMP and how it will work? How ping works?
  • Q10. What is the difference between RIP and OSPF? Explain me OSPF?
  • Q11. What is the difference between Cisco switch and other company switches? What is the difference between cisco switch and white box switch?
  • Q12. What is SONIC cards?
  • Q13. Python program. Input: lst = [12,83,0,17,0,71] Output = [12,83,17,71,0,0] Answer: lst=[12, 83,0,17,0,71] ls=[] l=[] for i in lst: if i! = 0: ls.append(i) else: l.append(i) ...
  • Q14. Print the below mentioned pattern: * * * * * * * * * * * * * * *
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain framework, collection interface and programming around it, testng, cucumber, rest assured
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Nov 2023. There were 4 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 - Technical 

(1 Question)

  • Q1. Java programs , API and Selenium questions
Round 3 - Technical 

(1 Question)

  • Q1. Selenium and API questions
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Oops concepts in python Testing concepts Framework related qsns

I applied via Naukri.com and was interviewed in Jan 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Aptitude Test 

Math, logical reasoning, verbal communication

Round 3 - Technical 

(1 Question)

  • Q1. Java basic programming

Interview Preparation Tips

Interview preparation tips for other job seekers - Must know about testing Manual and Automation tool
Create test plan , write test scenario, Write and execution of test case
Error, Defect,bug tracking, SDLC,STLC Agile methodology, functional testing, Database Testing, GUI testing, Exploratory testing,Black Box testing, white Box testing,V Model,QA,QC, severity, Priority
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Multiple questions on Linux , how to get a process id, how to kill a process, what is difference between process and thread, what is the difference between concurrent and parallel process etc.
  • Q2. Few scenario based questions around linux systems, how will you trouble shoot if client not able to connect to servers running an appilcation.
  • Q3. Testing related questions, what is diff between Performance and Scale testing, where to use which one
Round 2 - Technical 

(2 Questions)

  • Q1. Coding questions basics, related to file handling, parsing files, etc.
  • Q2. Linux based questions - scenarios where multiple clients trying to write to same file, how till integrity of file be maintained and how will server manager the data does not get corrupted.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I was interviewed in Oct 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. TestNG: explain different annotations, parallel test,
  • Ans. 

    testNG annotations are used to control the flow of test execution and parallel test execution allows running tests concurrently.

    • testNG annotations include @Test, @BeforeSuite, @AfterSuite, @BeforeTest, @AfterTest, @BeforeClass, @AfterClass, @BeforeMethod, @AfterMethod

    • Annotations help in setting up preconditions, postconditions, grouping tests, prioritizing tests, and enabling/disabling tests

    • Parallel test execution in t...

  • Answered by AI
  • Q2. Selenium: actions class, xpath writing, windowhandles.

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for testNG, selenium well and java programming.

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Write class to accept details of student
  • Ans. 

    Class to accept details of student

    • Create a class named Student with attributes like name, age, grade, etc.

    • Include a method to input details of the student.

    • Use constructor to initialize the attributes with input values.

  • Answered by AI
  • Q2. What's is **kwargs in python
  • Ans. 

    kwargs in Python is a special syntax that allows you to pass a variable number of keyword arguments to a function.

    • kwargs stands for keyword arguments.

    • It is used in Python functions to accept a variable number of keyword arguments.

    • kwargs is represented by a double asterisk (**).

    • Example: def my_func(**kwargs):

  • Answered by AI
  • Q3. What are magical methods
  • Ans. 

    Magical methods are special methods in Python that begin and end with double underscores, used for operator overloading and other special behaviors.

    • Magical methods are also known as dunder methods, short for 'double underscore'.

    • They are used to define how objects of a class behave when certain operations are performed on them, such as addition, subtraction, comparison, etc.

    • Examples of magical methods include __init__ f...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

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

Round 1 - Technical 

(1 Question)

  • Q1. April 2024 Pune Location 1.Explain BDD in details 2.Why BDD 3.Explain Framework in details, with Project 4.How to handle dynamic element 5.If in a page you see button that is enabled only when you fill 5 m...
  • Ans. 

    BDD is a software development process that encourages collaboration between developers, QA, and non-technical stakeholders.

    • BDD stands for Behavior-Driven Development

    • It focuses on defining the behavior of the system through examples in plain text

    • Uses a common language (Gherkin syntax) to describe requirements and tests

    • Helps in improving communication and understanding between team members

    • Popular BDD tools include Cucumb

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - If you have 6+ exp please prepare scenario based question

Skills evaluated in this interview

ITC Infotech Interview FAQs

How many rounds are there in ITC Infotech Qa Automation Testing Engineer interview?
ITC Infotech interview process usually has 1 rounds. The most common rounds in the ITC Infotech interview process are Technical.
How to prepare for ITC Infotech Qa Automation Testing 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 ITC Infotech . The most common topics and skills that interviewers at ITC Infotech expect are Automation Testing, Bug Tracking Tool, Bugzilla, ENOVIA and JIRA.

Tell us how to improve this page.

ITC Infotech Qa Automation Testing Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
ITC Infotech Qa Automation Testing Engineer Salary
based on 7 salaries
₹5 L/yr - ₹15 L/yr
69% more than the average Qa Automation Testing Engineer Salary in India
View more details
Associate Information Technology Consultant
5.2k salaries
unlock blur

₹4.1 L/yr - ₹15 L/yr

Lead Consultant
4.5k salaries
unlock blur

₹9 L/yr - ₹35 L/yr

Associate Consultant
827 salaries
unlock blur

₹2.5 L/yr - ₹16.5 L/yr

Software Engineer
503 salaries
unlock blur

₹4 L/yr - ₹14.1 L/yr

Senior Software Engineer
377 salaries
unlock blur

₹6.6 L/yr - ₹25 L/yr

Explore more salaries
Compare ITC Infotech with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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