Upload Button Icon Add office photos

Filter interviews by

Epicor Software Corporation Automation Tester Interview Questions and Answers

Updated 15 Mar 2024

Epicor Software Corporation Automation Tester Interview Experiences

1 interview found

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. Find unique characters from string
  • Ans. 

    To find unique characters from a string, we can iterate through the string and store each character in a set to check for uniqueness.

    • Iterate through the string and store each character in a set

    • Check if the character already exists in the set, if not add it

    • Return the set of unique characters

  • Answered by AI
  • Q2. 2. Second Largest Element from an array.
  • Ans. 

    Find the second largest element in an array of strings.

    • Convert the strings to integers for comparison.

    • Sort the array in descending order.

    • Return the second element in the sorted array.

  • Answered by AI
  • Q3. 3. String str= abaaac find occurrence of consecutive chars
  • Ans. 

    Count the occurrences of consecutive characters in a given string.

    • Iterate through the string and compare each character with the next one

    • Keep track of the count when consecutive characters are found

    • Store the consecutive characters and their counts in an array of strings

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. How to configure vpn
  • Ans. 

    To configure a VPN, you need to set up a VPN server, create user accounts, configure client devices, and establish secure connections.

    • Set up a VPN server using software like OpenVPN or Windows Server

    • Create user accounts with unique credentials for accessing the VPN

    • Configure client devices to connect to the VPN server using the provided credentials

    • Establish secure connections by encrypting data transmitted over the VPN

  • Answered by AI
  • Q2. System slowness how to resolve
  • Ans. 

    To resolve system slowness, check for hardware issues, optimize software, update drivers, and monitor resource usage.

    • Check for hardware issues such as low memory or CPU usage

    • Optimize software by removing unnecessary programs or services

    • Update drivers for hardware components

    • Monitor resource usage to identify bottlenecks

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - only immediate joiners

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic question on dot net and sql server
Round 2 - Technical 

(1 Question)

  • Q1. Bit twisted and elaborative discussion on various technical spheres.

I applied via LinkedIn and was interviewed before Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Tell me something about yourself
  • Q2. Your roles and responsibilities
  • Q3. Basic questions on selenium, java, SQL, framework, action class, select class, dynamic web elements handling, handling pops,
  • Q4. Basic questions related to strings and collection
  • Q5. Logic test, logical reasoning questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well your basic concepts of works like java framework, challenges faced during automation

I applied via Naukri.com and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Java Basics,Cloud Basics,simple level codes,API related question

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep the basics clear, OOPS DS concepts,REST API Concepts will help

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

Interview Questionnaire 

4 Questions

  • Q1. Write a sample code to explain overloading concept of oops
  • Ans. 

    Overloading in OOP allows multiple methods with same name but different parameters.

    • Overloading is achieved by changing the number, type or order of parameters

    • Return type of the methods does not matter in overloading

    • Example: void print(int a), void print(int a, int b), void print(String s)

  • Answered by AI
  • Q2. Write a program to add two numbers in c#
  • Ans. 

    Program to add two numbers in c#

    • Declare two variables to store the numbers

    • Take input from user for both variables

    • Add the variables and store the result in a third variable

    • Display the result

  • Answered by AI
  • Q3. Write xpath using AND and OR condition
  • Ans. 

    Xpath can use AND and OR conditions to locate elements based on multiple criteria.

    • To use AND, simply chain multiple conditions together with no operator in between.

    • To use OR, use the 'or' keyword between conditions.

    • Example: //div[@class='class1' and @id='id1'] or //div[@class='class2']

  • Answered by AI
  • Q4. What is protected internal access modifier, explain
  • Ans. 

    Protected internal access modifier allows access to members within the same assembly or derived classes.

    • Can be applied to methods, properties, fields, and events

    • Access is limited to the current assembly or derived classes

    • Used when you want to restrict access to certain members within the same assembly or derived classes

    • Example: protected internal int age = 25; // can be accessed within the same assembly or derived clas

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was a nice experience, HR was very cool.. interviewer also very cool and nice while asking questions.

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Manual testing questions, agile methodology, prevoius project based questions

I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Interviewer asked me 20 technical questions and five programs with optimisation

Interview Preparation Tips

Interview preparation tips for other job seekers - Be elaborate, clear and try to recall from your experience

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Easy

Timing - 10AM-11:30AM
Online proctored test

  • Q1. 

    Binary Tree Right View Problem Statement

    Given a binary tree of integers, your task is to print the right view of it. The right view represents a set of nodes visible when the tree is viewed from the righ...

  • Ans. 

    The task is to print the right view of a binary tree, representing nodes visible from the right side in top-to-bottom order.

    • Traverse the tree level by level and keep track of the rightmost node at each level

    • Print the rightmost node of each level to get the right view of the tree

    • Use a queue for level order traversal and a map to store the rightmost nodes

  • Answered by AI
  • Q2. 

    0/1 Knapsack Problem Statement

    A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...

  • Ans. 

    Yes, the 0/1 Knapsack problem can be solved using dynamic programming with a space complexity of not more than O(W).

    • Use a 1D array to store the maximum value that can be stolen for each weight from 0 to W.

    • Iterate through each item and update the array based on whether including the item would increase the total value.

    • The final value in the array at index W will be the maximum value that can be stolen.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 45 minutes
Round difficulty - Medium

Timing : 4PM-5PM
Environment - Online

There was a panel of 3 interviewers

  • Q1. How can you find the size of an array in C or C++ without using sizeof or any standard function?
  • Ans. 

    You can find the size of an array in C or C++ by dividing the total size of the array by the size of one element.

    • Calculate the total size of the array by multiplying the number of elements by the size of each element.

    • Divide the total size by the size of one element to get the size of the array.

    • For example, if you have an array of strings arr[] = {'hello', 'world', 'example'}, you can find the size by dividing the total

  • Answered by AI
  • Q2. Explain how indexing in a database works using B+ trees.
  • Ans. 

    B+ trees are used for indexing in databases to efficiently search and retrieve data.

    • B+ trees are balanced trees where each node can have multiple keys and child pointers.

    • Data is stored in leaf nodes, while non-leaf nodes are used for navigation.

    • B+ trees are commonly used in databases because of their ability to efficiently search and retrieve data.

    • Example: In a database table with an index on a specific column, B+ tree...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 45 mintues
Round difficulty - Easy

Timing - 11AM-12:15PM
Environment - online video call

Again there was a panel of 2 senior engineers

  • Q1. 

    Maximum Path Sum Problem Statement

    You are given an n-ary tree consisting of 'N' nodes. Your task is to determine the maximum sum of the path from the root to any leaf node.

    Example:

    Input:
    For the giv...
  • Ans. 

    Find the maximum sum of the path from the root to any leaf node in an n-ary tree.

    • Traverse the tree from root to leaf nodes while keeping track of the sum of each path.

    • At each node, calculate the sum of the path from the root to that node and update the maximum sum found so far.

    • Consider using depth-first search (DFS) or breadth-first search (BFS) for tree traversal.

    • Handle cases where nodes have negative values or where

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Netaji Subhas University Of Technology. I applied for the job as SDE - 1 in NoidaEligibility criteria7.5 CGPAANSYS, Inc. interview preparation:Topics to prepare for the interview - System Design, core C++, Algorithms, Data Structures, DBMSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Brush Up on Computer Science Fundamentals
Tip 2 : Prepare a Brief Self-Introduction

Application resume tips for other job seekers

Tip 1 : Do not put fake resume
Tip 2 : Writing internship project helps.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Walk-in and was interviewed before Nov 2019. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. How many genres of games?
  • Ans. 

    There are numerous genres of games, each offering unique gameplay experiences and targeting different player preferences.

    • There are over 30 main genres of games, including action, adventure, role-playing, strategy, sports, puzzle, and simulation.

    • Each genre has its own characteristics, gameplay mechanics, and objectives.

    • Examples of popular game genres include first-person shooters like Call of Duty, open-world action-adv...

  • Answered by AI
  • Q2. What are the problems we faced in the old generation video game console?
  • Ans. 

    Old generation video game consoles faced various problems.

    • Limited processing power and memory

    • Low-quality graphics and sound

    • Limited game storage capacity

    • Lack of online connectivity

    • Compatibility issues with newer TVs

    • Limited multiplayer options

  • Answered by AI
  • Q3. Tell me the name of the latest video game console?
  • Ans. 

    The latest video game console is the PlayStation 5.

    • The PlayStation 5 (PS5) is the latest console released by Sony.

    • It features advanced graphics, fast loading times, and a new DualSense controller.

    • Some popular games for the PS5 include Demon's Souls, Spider-Man: Miles Morales, and Ratchet & Clank: Rift Apart.

  • Answered by AI
  • Q4. Summarize any game story that you played in your life?
  • Ans. 

    A game story about a group of adventurers on a quest to save the world from an ancient evil.

    • Group of adventurers

    • Quest to save the world

    • Ancient evil as the main antagonist

  • Answered by AI
  • Q5. Do you found bugs in any game?
  • Ans. 

    Yes, as a test engineer, I have found bugs in games.

    • As a test engineer, it is my responsibility to identify and report bugs in games.

    • I have experience in testing various game genres such as action, puzzle, and simulation.

    • Examples of bugs I have found include graphical glitches, gameplay inconsistencies, and crashes.

    • I use a combination of manual testing and automated tools to ensure thorough bug detection.

    • Collaborating ...

  • Answered by AI
  • Q6. How game testing is different from software testing?
  • Ans. 

    Game testing differs from software testing in terms of scope, complexity, and user experience.

    • Game testing involves testing the functionality, performance, and usability of video games.

    • Software testing focuses on testing the functionality and performance of software applications.

    • Game testing requires specialized knowledge of game mechanics, graphics, audio, and user interactions.

    • Software testing typically involves test...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - There are 4 rounds of the selection process:
1st Round - Write an Essay on "Any game that you played in your life"?
2nd Round - HR Round
(Question-related to yourself like: tell me about yourself, why I hire you, why you think you're the right candidate, etc.)
3rd Round - Technical Round
(Questions are added to the "Interview questions" section)
4th Round - Final Discussion.

Skills evaluated in this interview

Epicor Software Corporation Interview FAQs

How many rounds are there in Epicor Software Corporation Automation Tester interview?
Epicor Software Corporation interview process usually has 1 rounds. The most common rounds in the Epicor Software Corporation interview process are Technical.
What are the top questions asked in Epicor Software Corporation Automation Tester interview?

Some of the top questions asked at the Epicor Software Corporation Automation Tester interview -

  1. 3. String str= abaaac find occurrence of consecutive ch...read more
  2. 2. Second Largest Element from an arr...read more
  3. Find unique characters from str...read more

Tell us how to improve this page.

Epicor Software Corporation Automation Tester Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

Apisero Interview Questions
4.3
 • 65 Interviews
TestingXperts Interview Questions
3.9
 • 41 Interviews
Credera Interview Questions
3.8
 • 40 Interviews
Stefanini Interview Questions
3.0
 • 35 Interviews
GlobalStep Interview Questions
2.7
 • 28 Interviews
SpanIdea Interview Questions
3.6
 • 24 Interviews
View all
Product Developer
91 salaries
unlock blur

₹8.5 L/yr - ₹23.8 L/yr

Technical Application Specialist
81 salaries
unlock blur

₹5.6 L/yr - ₹12 L/yr

Senior Associate
71 salaries
unlock blur

₹8.1 L/yr - ₹25.5 L/yr

Senior Product Developer
63 salaries
unlock blur

₹14.7 L/yr - ₹36.8 L/yr

Senior Software Engineer
50 salaries
unlock blur

₹12.1 L/yr - ₹30 L/yr

Explore more salaries
Compare Epicor Software Corporation with

Apisero

4.3
Compare

Actalent Services

3.5
Compare

Cyber Infrastructure

3.5
Compare

TestingXperts

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