Upload Button Icon Add office photos

Filter interviews by

Holy Faith International Interview Questions and Answers

Updated 8 Sep 2024

Holy Faith International Interview Experiences

Popular Designations

2 interviews found

ERP Manager Interview Questions & Answers

user image Sunil Makkar

posted on 3 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. ABOUT YOURSELF AND EXPERIENCE
  • Q2. MORE ABOUT ERP DOMAIN
Round 2 - HR 

(2 Questions)

  • Q1. Expectation from company
  • Q2. Why you leave last company
  • Ans. 

    Seeking new challenges and growth opportunities

    • Desire for career advancement

    • Looking for new challenges

    • Seeking growth opportunities

  • Answered by AI

ERP Manager Interview Questions asked at other Companies

Q1. How it will be implemented
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. Routine questions
  • Q2. Last experience related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be what you are. No need to present yourself if you are not the same. Honesty always speaks.

Executive Assistant to Managing Director Interview Questions asked at other Companies

Q1. How to make the process more smoother as there is too much politics involved?
View answer (2)

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Jul 2020. There were 2 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Proper knowledge of your CV
  • Q2. Basic Questions of Your Work
  • Q3. Mechanical Items

I applied via Job Portal and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. What is your role in previous company.
  • Q2. 7qc tool, 8d analysis.
  • Q3. Kaizen, 5s and FMEA
  • Q4. About your self
  • Q5. Previous company work and how many years experience. Salry discussion.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Mar 2023. There were 2 interview rounds.

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

(5 Questions)

  • Q1. What are oops concepts in java, explain real time scenario
  • Ans. 

    OOPs concepts in Java include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a subclass to inherit properties and methods from a superclass.

    • Polymorphism allows objects to take on multiple forms and behave differently based on their context.

    • Encapsulation hides the implementation details of an object and only exposes necessary information.

    • Abstraction allows for the creation of abstract class...

  • Answered by AI
  • Q2. Uses of interface, inheritance
  • Ans. 

    Interfaces define contracts for behavior, while inheritance allows for code reuse and polymorphism.

    • Interfaces allow for loose coupling and abstraction, enabling multiple implementations of the same behavior.

    • Inheritance allows for code reuse and extension of existing classes, reducing code duplication.

    • Polymorphism allows objects of different classes to be treated as if they were of the same class, simplifying code and i

  • Answered by AI
  • Q3. SQL query for join of tables
  • Ans. 

    SQL query for joining tables

    • Use JOIN keyword to combine two or more tables based on a related column

    • Specify the columns to be selected using SELECT keyword

    • Use ON keyword to specify the condition for joining the tables

    • Different types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL OUTER JOIN

  • Answered by AI
  • Q4. Java concepts used in your project
  • Ans. 

    Used Java concepts such as inheritance, polymorphism, and exception handling in my project.

    • Implemented inheritance to create a base class and derived classes with specific functionalities.

    • Utilized polymorphism to allow objects of different classes to be treated as if they were of the same class.

    • Implemented exception handling to handle errors and prevent program crashes.

    • Used interfaces to define a set of methods that a ...

  • Answered by AI
  • Q5. Overloading vs overriding, practical uses
  • Ans. 

    Overloading is having multiple methods with the same name but different parameters. Overriding is having a method in a subclass with the same name and parameters as a method in the superclass.

    • Overloading is used to provide different ways to call a method with different parameters

    • Overriding is used to provide a specific implementation of a method in a subclass

    • Overloading is resolved at compile-time while overriding is r...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zebra Technologies Software Developer interview:
  • Core Java
  • OOPS
  • collection framework
  • Database Management

Skills evaluated in this interview

I applied via Walk-in and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Application Form 

(2 Questions)

  • Q1. About tally how much i know i told to them . I don't have any experience in tally also .
  • Q2. What u know about tally say that , if they not confident about you, they ask question otherwise no

Interview Preparation Tips

Interview preparation tips for other job seekers - Be self confident. Be fluent in Hindi , English . Environment in office is very good, you get immediat help from any one person in office.

I applied via Company Website

Round 1 - Aptitude Test 

Java ee architecture jdbc jpi jsp

Round 2 - Technical 

(2 Questions)

  • Q1. Any questions about java
  • Q2. Any question Related to Java

Interview Preparation Tips

Interview preparation tips for other job seekers - I want work from home can I come once a week

I applied via Referral and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about recent Project Details and what is your Role in this Project.
  • Ans. I explained my project and the modules which I had developed. Informed about Team members and their responsibilities who were working on the same Project. Then my role in the team as well as my responsibilities in the Project.
  • Answered Anonymously
  • Q2. Git and Azure DevOps related Questions
  • Ans. I Explained how we work on AzureDevOps. Explained workflow with Git Repos through DevOps Repositories. Explained Build and Release Pipelines also Explained NuGet Packages using Artifacts
  • Answered Anonymously
  • Q3. Explain Solid Principles and Where to use this with Example
  • Ans. 

    Solid Principles are a set of design principles for writing maintainable and scalable software.

    • Solid Principles consist of five principles: Single Responsibility Principle, Open/Closed Principle, Liskov Substitution Principle, Interface Segregation Principle, and Dependency Inversion Principle.

    • Single Responsibility Principle states that a class should have only one reason to change.

    • Open/Closed Principle states that sof...

  • Answered by AI
  • Q4. Abstraction and Interface Differance
  • Ans. 

    Abstraction focuses on hiding implementation details, while interface defines a contract for classes to follow.

    • Abstraction allows us to focus on the essential features of an object, while hiding unnecessary details.

    • Interface defines a set of methods that a class must implement, providing a contract for how the class should behave.

    • Abstraction is achieved through abstract classes and interfaces in object-oriented program...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't feel uncomfortable if you don't know the exact answer. Whatever you know just explain in your statement. make an easy sentence to explain don't give an exact theoretic answer try to explain with one example.

I applied via Job Portal

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Only Accounts related
Round 3 - One-on-one 

(1 Question)

  • Q1. Accounts related entries

Interview Preparation Tips

Interview preparation tips for other job seekers - Lets check the final result then confirm.

Interview Questionnaire 

3 Questions

  • Q1. The first question were asked by introduction
  • Q2. Previous Company's work experience
  • Q3. How to to coordinate with client
  • Ans. 

    Coordination with clients requires effective communication, understanding of their needs, and timely delivery of work.

    • Establish clear communication channels

    • Understand client's requirements and expectations

    • Provide regular updates on project progress

    • Address any concerns or issues promptly

    • Deliver work on time and within budget

    • Maintain a professional and respectful attitude

    • Build a positive and long-lasting relationship

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Every question have clear answer with confidence if we have no answer their is do not try to give any excuses we should be said sorry have no answer this question.

We always try to get connected with interviewer which language (English/Hindi) suitable to talk with him

Holy Faith International Interview FAQs

How many rounds are there in Holy Faith International interview?
Holy Faith International interview process usually has 1-2 rounds. The most common rounds in the Holy Faith International interview process are HR and One-on-one Round.
How to prepare for Holy Faith International 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 Holy Faith International. The most common topics and skills that interviewers at Holy Faith International expect are Billing, Finance, Invoice Verification, Invoicing and Purchase Order.
What are the top questions asked in Holy Faith International interview?

Some of the top questions asked at the Holy Faith International interview -

  1. MORE ABOUT ERP DOM...read more
  2. Routine questi...read more

Tell us how to improve this page.

Holy Faith International Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 141 Interviews
CapitalOne Interview Questions
3.7
 • 78 Interviews
Link Group Interview Questions
3.8
 • 34 Interviews
Marelli Interview Questions
3.7
 • 34 Interviews
TCL Interview Questions
4.0
 • 33 Interviews
View all

Holy Faith International Reviews and Ratings

based on 34 reviews

3.6/5

Rating in categories

3.4

Skill development

3.3

Work-life balance

3.0

Salary

3.5

Job security

3.5

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 34 Reviews and Ratings
Accountant
7 salaries
unlock blur

₹2.4 L/yr - ₹3.8 L/yr

Sales Executive
7 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

Area Sales Manager
6 salaries
unlock blur

₹4.2 L/yr - ₹7.5 L/yr

Senior Sales Executive
6 salaries
unlock blur

₹2.8 L/yr - ₹4.8 L/yr

Warehouse Incharge
6 salaries
unlock blur

₹2.8 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Holy Faith International with

Huawei Technologies

4.0
Compare

HCL Infosystems

3.9
Compare

Caparo Engineering India

4.0
Compare

HRH Next Services

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