Upload Button Icon Add office photos

IDC Technologies

Compare button icon Compare button icon Compare

Filter interviews by

IDC Technologies Qa Automation Testing Engineer Interview Questions and Answers

Updated 3 Apr 2024

IDC Technologies Qa Automation Testing Engineer Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed before Apr 2023. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Basic API Questions , Behavioral questions , SQL Questions
  • Q2. Write down the update and select queries
  • Ans. 

    Update and select queries are used in database operations to modify and retrieve data.

    • Update query is used to modify existing data in a database table, for example: UPDATE table_name SET column1 = value1 WHERE condition;

    • Select query is used to retrieve data from a database table, for example: SELECT column1, column2 FROM table_name WHERE condition;

  • Answered by AI
  • Q3. Scenario based functional testing questions
  • Q4. What are the Response codes of API
  • Ans. 

    Response codes of API are standardized status codes returned by a server in response to a client's request.

    • 200 - OK: Request was successful

    • 400 - Bad Request: Invalid input or missing parameters

    • 401 - Unauthorized: Authentication required

    • 404 - Not Found: Resource not found

    • 500 - Internal Server Error: Server-side issue

  • Answered by AI
  • Q5. What is API Testing and its purpose
  • Ans. 

    API Testing is testing the application programming interface to ensure it meets functionality, reliability, performance, and security requirements.

    • API Testing involves testing the communication between different software systems through APIs.

    • It ensures that the API functions correctly, returns the expected results, and handles errors gracefully.

    • API Testing can be done at different levels such as unit testing, integrati...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic concepts clearly.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. What type of waits we have?
  • Ans. 

    In automation testing, waits are crucial for synchronizing test execution with application behavior.

    • Implicit Wait: Sets a default wait time for the entire session. Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

    • Explicit Wait: Waits for a specific condition to occur before proceeding. Example: WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedConditions.visibilityOf(element...

  • Answered by AI
  • Q2. WAP for character count

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't let unprofessional behavior affect your confidence.

I applied via Recruitment Consulltant and was interviewed in May 2022. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. Explain Agile and agile scrum ceremony
  • Ans. 

    Agile is a methodology that emphasizes flexibility and collaboration. Agile Scrum is a framework for implementing Agile.

    • Agile focuses on delivering working software in short iterations

    • Agile values individuals and interactions over processes and tools

    • Agile encourages customer collaboration and responding to change

    • Agile Scrum includes ceremonies such as Sprint Planning, Daily Stand-up, Sprint Review, and Sprint Retrospec...

  • Answered by AI
  • Q2. Select an element from drop down
  • Ans. 

    To select an element from a drop down, locate the drop down element and use the select class in Selenium.

    • Locate the drop down element using findElement() method

    • Create an object of Select class using the drop down element

    • Use selectByVisibleText(), selectByValue() or selectByIndex() method to select the desired option

  • Answered by AI
  • Q3. How to check if for every steps we have steps written in step definition file
  • Ans. 

    To check if every step has a corresponding step definition, we can use a code coverage tool.

    • Use a code coverage tool to analyze the step definition file and identify any missing steps

    • Ensure that all steps in the feature file are covered by the step definition file

    • Regularly review and update the step definition file to ensure it stays up-to-date with the feature file

  • Answered by AI
  • Q4. Reverse an integer in java
  • Ans. 

    Reverse an integer in Java

    • Convert integer to string using Integer.toString()

    • Use StringBuilder to reverse the string

    • Convert the reversed string back to integer using Integer.parseInt()

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Only four questions he asked.seems interviewer Pavan Kumar was busy somewhere else.

Skills evaluated in this interview

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 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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Core Java and String related question ie. Test!@#is#$%sample remove symbols
  • Q2. Xpath , cucumber framework

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't apply for altimetrik , Its a waste of time .
In starting they are ready to pay x amount , later on in final round they reduced the amount.
Such a unprofessional behavior, didn't expect from such IT company .
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were 2 coding questions asked. If one question is solved you are qualified.

Round 2 - Technical 

(1 Question)

  • Q1. There are 3 technical interviews. First tech interview is simple. Then the difficulty arise in further rounds.
Round 3 - Technical 

(1 Question)

  • Q1. They ask to solve the coding question with different logic.

Interview Preparation Tips

Interview preparation tips for other job seekers - Tell what you know and if they ask any question which you are not strong in the concept just tell them that you are not so good at that particular area and learning. Accolite interview definately need strong coding skills to crack the technical interviews.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 - Coding Test 

120 min of coding round consist 3 questions

Round 3 - Technical 

(1 Question)

  • Q1. Some basic question from the resume
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Coding questions based on graphs.

Round 2 - Technical 

(2 Questions)

  • Q1. What is Threads?
  • Ans. 

    Threads are lightweight processes within a program that can run concurrently, allowing for multitasking and improved performance.

    • Threads allow for parallel execution of tasks within a program.

    • Threads share the same memory space, allowing for efficient communication and data sharing.

    • Examples of using threads include running background tasks while the main program continues to execute, or handling multiple client request

  • Answered by AI
  • Q2. Gave 2 coding questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep hustling

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Dec 2023. There were 4 interview rounds.

Round 1 - Aptitude Test 

Includes logical reasoning ,SQL, code snippets

Round 2 - One-on-one 

(1 Question)

  • Q1. L1 includes question based on resume and projects
Round 3 - One-on-one 

(1 Question)

  • Q1. In depth question on technical skills
Round 4 - HR 

(1 Question)

  • Q1. Kind of a verification round

IDC Technologies Interview FAQs

How many rounds are there in IDC Technologies Qa Automation Testing Engineer interview?
IDC Technologies interview process usually has 1 rounds. The most common rounds in the IDC Technologies interview process are Technical.
What are the top questions asked in IDC Technologies Qa Automation Testing Engineer interview?

Some of the top questions asked at the IDC Technologies Qa Automation Testing Engineer interview -

  1. What are the Response codes of ...read more
  2. What is API Testing and its purp...read more
  3. Write down the update and select quer...read more

Tell us how to improve this page.

IDC Technologies Qa Automation Testing Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Information Technology Recruiter
295 salaries
unlock blur

₹2 L/yr - ₹5.4 L/yr

Senior IT Recruiter
264 salaries
unlock blur

₹2 L/yr - ₹8 L/yr

Software Engineer
260 salaries
unlock blur

₹2.7 L/yr - ₹11 L/yr

Technical Recruiter
250 salaries
unlock blur

₹1.7 L/yr - ₹6 L/yr

Senior Technical Recruiter
230 salaries
unlock blur

₹3 L/yr - ₹10.2 L/yr

Explore more salaries
Compare IDC Technologies with

ITC Infotech

3.6
Compare

CMS IT Services

3.1
Compare

KocharTech

3.9
Compare

Xoriant

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