Upload Button Icon Add office photos

Filter interviews by

Epicor Software Corporation Interview Questions, Process, and Tips

Updated 3 Dec 2024

Top Epicor Software Corporation Interview Questions and Answers

View all 7 questions

Epicor Software Corporation Interview Experiences

Popular Designations

21 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(4 Questions)

  • Q1. On project mentioned in resume
  • Q2. To code program which tells if 2 words are anagrams and also program to print a sentence with reverse order of words
  • Ans. 

    Program to check if 2 words are anagrams and to print a sentence with reverse order of words.

    • Create a function to check if two words are anagrams by sorting the characters in each word and comparing them.

    • Create a function to reverse the order of words in a sentence by splitting the sentence into words, reversing the order, and joining them back together.

    • Use arrays of strings to store the words in the sentence and the t

  • Answered by AI
  • Q3. Program for sorting (selection sort, insertion sort)
  • Ans. 

    Selection sort and insertion sort programs for array of strings

    • Selection sort: Find the smallest element in the array and swap it with the first element, repeat for remaining elements

    • Insertion sort: Iterate through the array, for each element, compare with previous elements and insert in correct position

  • Answered by AI
  • Q4. To create a simple login page in html
  • Ans. 

    Create a simple login page in HTML

    • Use

      element to create a form for login

    • Include elements for username and password

    • Use

    • Add CSS for styling the login page

Answered by AI

Interview Preparation Tips

Topics to prepare for Epicor Software Corporation Associate Software Engineering Intern interview:
  • OOPS
  • Data Structures
  • DBMS
  • SQL

Skills evaluated in this interview

Associate Software Engineering Intern Interview Questions asked at other Companies

Q1. to code program which tells if 2 words are anagrams and also program to print a sentence with reverse order of words
View answer (1)
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

Automation Tester Interview Questions asked at other Companies

Q1. 1)Diffrence Between sanity and Smoke 2)What is regression Testing 3)how many test cases you execute per day 4)Tell me the diffrent Types of waits 5)When we use Implicite and Explicite wait 6)How many times you can use implicite wait in your... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

We had a 1 and a half hour aptitude test. There were questions on DBMS, co, is and a few aptitude and english

Round 2 - Technical 

(2 Questions)

  • Q1. Questions on java
  • Q2. Questions on python
Round 3 - HR 

(2 Questions)

  • Q1. Questions about myself and my hobbies
  • Q2. About future studies

Product Developer Interview Questions asked at other Companies

Q1. What is the difference between GET and POST methods in HTTP?
Add answer
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

They asked from all the concepts wer have covered till now in Engineering.

Round 2 - Technical 

(2 Questions)

  • Q1. Not applicable to this
  • Q2. Not applicable to this one

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Epicor Software Corporation interview questions for popular designations

 Software Developer

 (5)

 Senior Software Engineer

 (2)

 Associate Product Engineer

 (1)

 Associate Software Engineer

 (1)

 Associate Software Engineering Intern

 (1)

 Automation Tester

 (1)

 Instructional Designer

 (1)

 Product Developer

 (1)

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

I applied via Campus Placement and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

They asjked aboiut dp and terees

Softwaretest Engineer Interview Questions asked at other Companies

Q1. What is boundary value analysis? How do u perform boundary value testing for User ID & Password textfields in login page?
View answer (2)

Qa Developer Interview Questions & Answers

user image Anonymous

posted on 29 Apr 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Questions related to basics of manual testing
  • Q2. Behavioural questions asked in manager round

Qa Developer Interview Questions asked at other Companies

Q1. What is Integration testing, Black box testing, Regression testing?
View answer (1)

Jobs at Epicor Software Corporation

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

(1 Question)

  • Q1. Basic oops questions Medium DSA question on Array

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Design patterns
  • Ans. Explained MVC patterns implemented in my project
  • Answered Anonymously
  • Q2. Explained MVC patterns used in the application
  • Ans. 

    MVC (Model-View-Controller) is a software design pattern that separates the application logic into three interconnected components.

    • Model represents the data and business logic

    • View displays the user interface

    • Controller handles user input and updates the model and view accordingly

    • Example: In a web application, the model could be a database, the view could be an HTML page, and the controller could be a server-side script

  • Answered by AI

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Oop, delegates, Linq, EF

Associate Product Engineer Interview Questions asked at other Companies

Q1. Do you know SQL? Can you write a query for selecting some rows in a db table?
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Coding ques were based on topic of dp and trees

Round 2 - Technical 

(1 Question)

  • Q1. Basic coding ques ,oops , java, os

Associate Software Engineer Interview Questions asked at other Companies

Q1. Triplets with Given Sum Problem Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K. Explanation: A triplet is a set {ARR[i], ARR[j], ARR[k... read more
View answer (1)

Epicor Software Corporation Interview FAQs

How many rounds are there in Epicor Software Corporation interview?
Epicor Software Corporation interview process usually has 1-2 rounds. The most common rounds in the Epicor Software Corporation interview process are Technical, HR and Resume Shortlist.
How to prepare for Epicor Software Corporation 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 Epicor Software Corporation. The most common topics and skills that interviewers at Epicor Software Corporation expect are SQL, Troubleshooting, ERP, Javascript and Cloud.
What are the top questions asked in Epicor Software Corporation interview?

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

  1. to code program which tells if 2 words are anagrams and also program to print a...read more
  2. program for sorting (selection sort, insertion so...read more
  3. to create a simple login page in h...read more
How long is the Epicor Software Corporation interview process?

The duration of Epicor Software Corporation interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Epicor Software Corporation Interview Process

based on 17 interviews

Interview experience

3.6
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
Oracle Interview Questions
3.7
 • 897 Interviews
SAP Interview Questions
4.2
 • 308 Interviews
Salesforce Interview Questions
4.1
 • 272 Interviews
Adobe Interview Questions
3.9
 • 250 Interviews
Intuit Interview Questions
3.5
 • 88 Interviews
View all

Epicor Software Corporation Reviews and Ratings

based on 158 reviews

3.7/5

Rating in categories

3.0

Skill development

3.9

Work-life balance

3.6

Salary

3.8

Job security

3.7

Company culture

3.0

Promotions

3.3

Work satisfaction

Explore 158 Reviews and Ratings
Sr Product Developer - Angular

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Mgr, Customer Support

Bangalore / Bengaluru

9-11 Yrs

Not Disclosed

Product Developer, Sr- Dot Net, Angular

Bangalore / Bengaluru

5-8 Yrs

Not Disclosed

Explore more jobs
Product Developer
87 salaries
unlock blur

₹9 L/yr - ₹24.4 L/yr

Technical Application Specialist
80 salaries
unlock blur

₹5.6 L/yr - ₹12 L/yr

Senior Product Developer
71 salaries
unlock blur

₹11 L/yr - ₹36.8 L/yr

Senior Software Engineer
53 salaries
unlock blur

₹12.1 L/yr - ₹30 L/yr

Software Engineer
34 salaries
unlock blur

₹7 L/yr - ₹17.5 L/yr

Explore more salaries
Compare Epicor Software Corporation with

SAP

4.2
Compare

Oracle

3.7
Compare

Microsoft Corporation

4.0
Compare

Salesforce

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