Upload Button Icon Add office photos

Filter interviews by

Icore Software Systems Software Manual and Automation Test Engineer Interview Questions and Answers

Updated 25 Aug 2024

Icore Software Systems Software Manual and Automation Test Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    I am a Software Manual and Automation Test Engineer with 5 years of experience in testing web and mobile applications.

    • Experienced in manual testing of web and mobile applications

    • Proficient in automation testing using tools like Selenium and Appium

    • Strong knowledge of testing methodologies and strategies

    • Skilled in writing test cases and test scripts

    • Familiar with Agile development practices

  • Answered by AI
  • Q2. Main goal of your life
  • Ans. 

    My main goal in life is to continuously learn and grow, both personally and professionally.

    • Constantly seeking new opportunities for self-improvement

    • Setting and achieving goals to progress in my career

    • Striving to make a positive impact on those around me

    • Maintaining a healthy work-life balance

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. OOPS concept explain
  • Ans. 

    OOPS (Object-Oriented Programming) 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 a problem

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation

    • Classes are blueprints for creating objects, while objects are instances of classes

    • Inheritance allows a class to inherit proper...

  • Answered by AI
  • Q2. Blackbox testing
  • Q3. Whitebox testing
  • Q4. Sanity and smoke testing
Round 3 - Coding Test 

Give one website to test the login and password

Interview questions from similar companies

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

(9 Questions)

  • Q1. Introduction, roles and responsibilities
  • Q2. Deep copy shallow copy
  • Q3. Method Overloading overriding
  • Q4. Constuctor and its types
  • Ans. 

    Constructors are special methods in a class used to initialize objects. There are default, parameterized, copy, and static constructors.

    • Constructors have the same name as the class and do not have a return type.

    • Default constructors are automatically created by the compiler if no constructor is defined.

    • Parameterized constructors accept parameters to initialize object properties.

    • Copy constructors create a new object as a...

  • Answered by AI
  • Q5. Varags (variable length arguments)
  • Q6. Find element find elements return types of it if no elements found
  • Ans. 

    findElements method in Selenium returns a list of WebElements or an empty list if no elements are found.

    • findElements method returns a list of WebElements

    • If no elements are found, it returns an empty list

    • Return type is List

Answered by AI
  • Q7. Webdriver what is it
  • Ans. 

    Webdriver is a tool used for automating web application testing.

    • Webdriver is a popular automation tool used for testing web applications.

    • It allows testers to automate interactions with a web browser.

    • Webdriver supports multiple programming languages such as Java, Python, and C#.

    • It can simulate user interactions like clicking buttons, entering text, and navigating through pages.

    • Webdriver is commonly used in QA automation...

  • Answered by AI
  • Q8. Find duplicate numbers and its count from given list explain logic
  • Ans. 

    Logic to find duplicate numbers and their count in a given list.

    • Iterate through the list and store each number in a hashmap with its count

    • If a number is already in the hashmap, increment its count

    • After iterating, check the hashmap for numbers with count greater than 1 to find duplicates

  • Answered by AI
  • Q9. Factorial using recursion
  • Ans. 

    Factorial using recursion is a mathematical function that calculates the product of all positive integers up to a given number.

    • Define a function that takes an integer parameter n

    • Base case: if n is 0, return 1

    • Recursive case: return n multiplied by the factorial of n-1

    • Example: factorial(5) = 5 * factorial(4) = 5 * 4 * factorial(3) = 5 * 4 * 3 * factorial(2) = 5 * 4 * 3 * 2 * factorial(1) = 5 * 4 * 3 * 2 * 1 = 120

  • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - For me Mostly 90% they asked java related questions.
    Introduction, roles responsibilities.
    Deep copy shallow copy
    Method Overloading overriding
    Constuctor
    Varags
    Find element & find elements difference and return types(if elements present and if not)
    2 coding questions
    1 repeatetive numbers/duplicates and its count from the given list eg output 4,2(4 is number and found 2 times)
    2 factorial of a number using recursion.

    I don't want to fil this form all that's why including all questions asked in the feedback.

    This was my first round and no response till now.
    Interview taken on 10 Oct.

    Skills evaluated in this interview

    Interview experience
    3
    Average
    Difficulty level
    Hard
    Process Duration
    Less than 2 weeks
    Result
    Not Selected
    Round 1 - Technical 

    (2 Questions)

    • Q1. Mainly related to JAVA programming
    • Q2. Selenium project reviews
    Round 2 - Technical 

    (2 Questions)

    • Q1. Reverse the string
    • Ans. 

      Reverse a given string

      • Create a new empty string to store the reversed string

      • Iterate through the original string from end to start and append each character to the new string

      • Return the reversed string

    • Answered by AI
    • Q2. Scenario based questions

    Skills evaluated in this interview

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

    I applied via Naukri.com and was interviewed in Apr 2024. There were 3 interview rounds.

    Round 1 - Coding Test 

    In this first round it was of 45mins which included MCQ question and 1 coding question.

    Round 2 - Technical 

    (4 Questions)

    • Q1. 1.Difference Between Const,Var,Char. 2.Oop's concept with example 3.JavaScript is async or sync language and explain the reason. 4.How to create a simple object in JavaScript. 5.Find element and Find Eleme...
    • Ans. 

      Answers to common interview questions for Automation Test Engineer position.

      • Const is used for constant values that cannot be reassigned, var is used for variable declaration, and char is a data type for storing characters in programming languages.

      • OOPs concepts include inheritance, encapsulation, polymorphism, and abstraction. Example: Inheritance allows a class to inherit properties and methods from another class.

      • JavaS...

    • Answered by AI
    • Q2. What is Type coercion?
    • Ans. 

      Type coercion is the process of converting one data type to another in programming.

      • Type coercion can happen implicitly or explicitly in programming languages.

      • Implicit type coercion occurs when the language automatically converts data types during operations.

      • Explicit type coercion occurs when the programmer manually converts data types using functions or operators.

      • Example: In JavaScript, the addition operator (+) can pe...

    • Answered by AI
    • Q3. What is Inheritance? Polymorphism?
    • Ans. 

      Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class. Polymorphism allows objects of different classes to be treated as objects of a common superclass.

      • Inheritance allows for code reusability by defining a new class based on an existing class.

      • Polymorphism enables flexibility in programming by allowing objects to be treated as instances of their pare...

    • Answered by AI
    • Q4. API Error code with explaination?
    • Ans. 

      API error codes are unique identifiers used to indicate specific errors in an API response.

      • API error codes are typically numeric or alphanumeric codes that correspond to specific errors in the API.

      • Each error code should have a corresponding explanation in the API documentation to help developers understand the issue.

      • Examples of API error codes include 400 Bad Request, 401 Unauthorized, and 404 Not Found.

    • Answered by AI
    Round 3 - HR 

    (1 Question)

    • Q1. Introduce Yourself? Why should we hire you? What is your relevant experience? Tell me about yourself? What are your salary expectations?

    Interview Preparation Tips

    Topics to prepare for Globant Automation Test Engineer interview:
    • Javascript
    • Cypress
    • OOPS
    • Core Java
    • API
    Interview preparation tips for other job seekers - I Interviewed at Globant on 13/05/2024. First round went very well where they introduce about there company and link was provided For MCQ and coding round conducted.2nd round was GK round which was totally based on Technical question. I had answered each and very question but then also not got selected.

    Skills evaluated in this interview

    Interview experience
    5
    Excellent
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    -

    I applied via Naukri.com and was interviewed in Aug 2024. There were 2 interview rounds.

    Round 1 - Coding Test 

    Given input string- This is opentext.
    OP- sihT si txtetnepo.

    Round 2 - Technical 

    (1 Question)

    • Q1. What is page object model.
    • Ans. 

      Page Object Model is a design pattern used in test automation to create an object repository for web elements on a page.

      • It helps in separating the test scripts from the web elements, making the code more maintainable and reusable.

      • Each web page is represented as a class, and the web elements on the page are defined as variables within the class.

      • Methods are created within the class to perform actions on the web elements,...

    • Answered by AI

    Skills evaluated in this interview

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

    6 questions asked in an interview

    Round 2 - Technical 

    (2 Questions)

    • Q1. Slider window problem
    • Ans. 

      The slider window problem involves finding the maximum sum of a subarray of a fixed size k within an array of integers.

      • Use a sliding window approach to efficiently find the maximum sum subarray.

      • Keep track of the current sum within the window and update it as you slide the window.

      • Maintain a variable to store the maximum sum found so far.

      • Example: Given array [1, 3, -1, -3, 5, 3, 6, 7] and window size k=3, the maximum sum

    • Answered by AI
    • Q2. Stock buy sell problem
    • Ans. 

      The stock buy sell problem involves finding the maximum profit that can be made by buying and selling a stock at the right times.

      • Calculate the difference between each pair of consecutive prices in the array

      • Find the maximum subarray sum of the differences using Kadane's algorithm

      • The maximum subarray sum is the maximum profit that can be made

    • Answered by AI

    Skills evaluated in this interview

    Interview experience
    4
    Good
    Difficulty level
    Moderate
    Process Duration
    Less than 2 weeks
    Result
    No response

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

    Round 1 - Technical 

    (2 Questions)

    • Q1. Explain the challenges faced in Test Automation
    • Ans. 

      Challenges in Test Automation include dynamic UI elements, maintenance of scripts, data management, and flakiness.

      • Dynamic UI elements can cause scripts to fail if not handled properly

      • Maintenance of scripts can be time-consuming as applications evolve

      • Data management is crucial for test data setup and cleanup

      • Flakiness of tests can lead to false positives or negatives

    • Answered by AI
    • Q2. What are the top 3 defects that you have raised in your previous project or role.

    Interview Preparation Tips

    Topics to prepare for Amadeus QA Automation Engineer interview:
    • Functional Testing
    • Python
    • Selenium
    • Pytest
    Interview preparation tips for other job seekers - Interview was on the easier side but there was no co-operation or friednliness in the interview it was more like one sided question and answer.

    Skills evaluated in this interview

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

    I applied via campus placement at Indian Institute of Technology (IIT), Guwahati and was interviewed in Dec 2023. There were 3 interview rounds.

    Round 1 - Coding Test 

    2 dsa questions 1 hour time limit. easy-medium level

    Round 2 - Technical 

    (1 Question)

    • Q1. Questions on python,c,c++. OOPS and DSA questions
    Round 3 - Technical 

    (1 Question)

    • Q1. Implementations of projects mentioned on my resume, couple of DSA questions
    Interview experience
    3
    Average
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Coding Test 

    Coding test on hackerrank. Solve 30 day code challange on haackerrank and you will be able to clear it.

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

    Leetcode hard questions asked in the interview

    Round 2 - Assignment 

    Object oriented programming and databases

    Icore Software Systems Interview FAQs

    How many rounds are there in Icore Software Systems Software Manual and Automation Test Engineer interview?
    Icore Software Systems interview process usually has 3 rounds. The most common rounds in the Icore Software Systems interview process are One-on-one Round, Technical and Coding Test.
    What are the top questions asked in Icore Software Systems Software Manual and Automation Test Engineer interview?

    Some of the top questions asked at the Icore Software Systems Software Manual and Automation Test Engineer interview -

    1. OOPS concept expl...read more
    2. sanity and smoke test...read more
    3. Blackbox test...read more

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.2k Interviews
    Infosys Interview Questions
    3.7
     • 7.5k Interviews
    Wipro Interview Questions
    3.7
     • 5.5k Interviews
    Tech Mahindra Interview Questions
    3.6
     • 3.8k Interviews
    HCLTech Interview Questions
    3.5
     • 3.7k Interviews
    LTIMindtree Interview Questions
    3.9
     • 2.9k Interviews
    Google Interview Questions
    4.4
     • 834 Interviews
    Mphasis Interview Questions
    3.4
     • 784 Interviews
    View all
    Front end Developer
    7 salaries
    unlock blur

    ₹1 L/yr - ₹2.4 L/yr

    Software Developer
    5 salaries
    unlock blur

    ₹1 L/yr - ₹3.5 L/yr

    Junior Software Developer
    4 salaries
    unlock blur

    ₹1 L/yr - ₹2 L/yr

    Java Developer
    4 salaries
    unlock blur

    ₹1 L/yr - ₹8.5 L/yr

    Software Programmer
    4 salaries
    unlock blur

    ₹3 L/yr - ₹3.5 L/yr

    Explore more salaries
    Compare Icore Software Systems 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