Upload Button Icon Add office photos

Innova Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Innova Solutions Automation Engineer Interview Questions and Answers

Updated 21 Sep 2024

Innova Solutions Automation Engineer Interview Experiences

1 interview found

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Write a code find all web elements in a web page
  • Ans. 

    Use Selenium WebDriver to find all web elements in a web page

    • Instantiate a WebDriver object using Selenium

    • Use findElements method to locate all elements on the page

    • Store the found elements in a list for further processing

  • Answered by AI
  • Q2. Write a code to find implicit and explicit wait?
  • Ans. 

    Code to find implicit and explicit wait in automation testing

    • For implicit wait, set a global timeout for the driver to wait for elements to be available before throwing an error

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

    • For explicit wait, wait for a specific condition to be met before proceeding with the test

    • Example: WebDriverWait wait = new WebDriverWait(driver, 10); wait.until(ExpectedCo...

  • Answered by AI
  • Q3. Write a code to find occureence of a character in a given string
  • Ans. 

    Code to find occurrence of a character in a given string

    • Iterate through each character in the string

    • Count occurrences of the specified character

    • Return the total count of occurrences

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - This company is saying that recruitment is for manual testing and they are asking automation questions. They are asking to write code which I have not seen anywhere. I have replied all the questions but he is saying I need to improve. Please do not go to this company.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oops Concepts and Data Structure Questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Oops And Data Structure, Collection.

I was interviewed in Oct 2020.

Interview Questionnaire 

3 Questions

  • Q1. Final round is HR. In this round they will explain the working hours, CTC, etc and some set of HR questions will be also expected here
  • Q2. Tell me some of your strengths Weaknesses Where would you see yourself after 5 years Etc
  • Q3. Followed by 1st round written Examination F2F Technical interview is done. In this round we any expect all the technical questions of our subjects and the interviewer will check for our personality, commun...

Interview Preparation Tips

Interview preparation tips for other job seekers - All the Best Guys.prepare well and face the interview.

I applied via Campus Placement and was interviewed before Feb 2020. There were 6 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Was interviewed as fresher?
  • Q2. Written test conducted? with verbal ability test ? GD
  • Q3. How would u deal with a problematic situation when you are working in a team?
  • Q4. What are your plans about higher studies?

Interview Preparation Tips

Interview preparation tips for other job seekers - it was basic with apptiude test and attitiude test.

I applied via Job Portal and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. How do you configure and verify custom DNS in Azure AD?
  • Ans. 

    To configure and verify custom DNS in Azure AD, follow these steps:

    • Create a DNS zone in Azure DNS

    • Add a custom domain to Azure AD

    • Create a CNAME record in the DNS zone that points to the Azure AD domain

    • Verify the custom domain in Azure AD

    • Update the DNS registrar to use the Azure DNS name servers

    • Test the custom DNS by accessing Azure AD resources using the custom domain

  • Answered by AI
  • Q2. Supported authentication types in Azure AD
  • Ans. 

    Azure AD supports various authentication types for secure access to resources.

    • Azure AD supports password-based authentication, multi-factor authentication, certificate-based authentication, and federated authentication.

    • It also supports OAuth 2.0 and OpenID Connect for secure authentication and authorization.

    • Examples of supported protocols include SAML, WS-Federation, and OAuth 2.0/OpenID Connect.

    • Azure AD also supports ...

  • Answered by AI
  • Q3. Hybrid scenarios regarding Azure AD using Azure AD Connect
Round 2 - One-on-one 

(3 Questions)

  • Q1. What if someone asks you your salary?
  • Q2. How would you react if someone lured into giving up some secrets
  • Q3. Are you ready for relocation??
Round 3 - HR 

(4 Questions)

  • Q1. Salary discussion, Joining bonus discussion
  • Q2. Explanation of salary breakup in hand
  • Q3. Any gaps in education, experience explanation
  • Q4. Confirmation about previous work experiences

Interview Preparation Tips

Topics to prepare for LTIMindtree Senior Engineer interview:
  • Azure Active Directory
  • Azure
  • Deployments in Azure
Interview preparation tips for other job seekers - If they want the opening to be filled immediately, then they will anyhow select you if you have even 30% to 40% of the required skillset required for the job and good communication. If your previous experiences are from startups, then also they will consider you. But if they are willing to wait for your notice period to end and offering you desired salary, beware then they will crunch the best out of you during interviews, they will ensure that they are hiring the right person.

Skills evaluated in this interview

I applied via Company Website and was interviewed before Feb 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. They asked about dbms questions in the form of table formate
  • Q2. They asked code for some python program

Interview Preparation Tips

Interview preparation tips for other job seekers - Firstly they conducted computer based technical exam and then after qualifying that then we will go for face face interview and then lastly HR round will be held.

I applied via Campus Placement and was interviewed in Oct 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Wap of bubble sort
  • Ans. 

    Bubble sort is a simple sorting algorithm that repeatedly steps through the list, compares adjacent elements and swaps them if they are in the wrong order.

    • Start from the first element and compare it with the next element

    • If the next element is smaller, swap them

    • Repeat this process for all elements in the array

    • Continue this process until no more swaps are needed

  • Answered by AI
  • Q2. Wap of prime number
  • Ans. 

    A program to print all prime numbers

    • Take input from user for range of numbers

    • Loop through the range and check if each number is prime

    • Print the prime numbers

  • Answered by AI
  • Q3. What is hashmap?
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows constant time access to values based on their keys.

    • Hashmap uses a hash function to map keys to indices in an array.

    • Collisions can occur when multiple keys map to the same index, which can be resolved using techniques like chaining or open addressing.

    • Examples of hashmap implementations include Java's HashMap class and Python's dict type.

  • Answered by AI
  • Q4. What is inheritance
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a new class is created by inheriting properties of an existing class.

    • Inheritance allows code reuse and promotes code organization.

    • The existing class is called the parent or superclass, and the new class is called the child or subclass.

    • The child class inherits all the properties and methods of the parent class and can also add new properties and methods.

    • For...

  • Answered by AI
  • Q5. Call by value and call by reference

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself

Skills evaluated in this interview

I applied via Walk-in and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Introduction your self in interview

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview should be very easy and comfortable to the students. And be confident at the infront of interviewer

I applied via Naukri.com and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions based on the CV we kept
  • Q2. Questions related to powershell, storages, networking in azure IaaS, NSG

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare whatever u kept in CV and the basics

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

Interview Questionnaire 

1 Question

  • Q1. Routing and switching related

Interview Preparation Tips

Interview preparation tips for other job seekers - Do your best. Study well.
Its all about God's grace.
Contribute & help others!
anonymous
You can choose to be anonymous

Innova Solutions Interview FAQs

How many rounds are there in Innova Solutions Automation Engineer interview?
Innova Solutions interview process usually has 1 rounds. The most common rounds in the Innova Solutions interview process are Technical.
How to prepare for Innova Solutions 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 Innova Solutions. The most common topics and skills that interviewers at Innova Solutions expect are Cucumber, API, AWS, C# and Cloud.
What are the top questions asked in Innova Solutions Automation Engineer interview?

Some of the top questions asked at the Innova Solutions Automation Engineer interview -

  1. Write a code to find occureence of a character in a given str...read more
  2. Write a code find all web elements in a web p...read more
  3. Write a code to find implicit and explicit wa...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Knoldus Inc

No Interviews

JOBS

Sun Pharmaceutical Industries

No Jobs

INTERVIEWS

Knoldus Inc

No Interviews

INTERVIEWS

ZenTrades

No Interviews

SALARIES

Wollmilchsau Technologies

JOBS

Sun Pharmaceutical Industries

No Jobs

JOBS

Sun Pharmaceutical Industries

No Jobs

INTERVIEWS

Knoldus Inc

No Interviews

Tell us how to improve this page.

Innova Solutions Automation Engineer Interview Process

based on 2 interviews

Interview experience

1
  
Bad
View more
Innova Solutions Automation Engineer Salary
based on 4 salaries
₹8 L/yr - ₹10.5 L/yr
34% more than the average Automation Engineer Salary in India
View more details
Senior Software Engineer
641 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
533 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
382 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Principal Software Engineer
165 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Associate
150 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Innova Solutions with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

HCLTech

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