Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Harsco Team. If you also belong to the team, you can get access from here

Harsco Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Harsco Senior Manager Finance Interview Questions and Answers

Updated 25 Dec 2022

Harsco Senior Manager Finance Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed before Dec 2021. There were 3 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 - Group Discussion 

Previous work experiences, All Finance related technical non-tech also.

Round 3 - Technical 

(2 Questions)

  • Q1. With Asia Pacific VP all technical questions.
  • Q2. HR Related clarifications

Interview Preparation Tips

Interview preparation tips for other job seekers - 1st. Interview with Company CFO from USA. 2nd round from Asia Pacific Finance Director cum VP, 3rd. round from country head and 4th. round from local HR team. But it was too good

Interview questions from similar companies

I applied via Campus Placement and was interviewed in Oct 2021. 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 

(1 Question)

  • Q1. What's is Stress - Strain ?
  • Ans. 

    Stress is the force applied to an object, while strain is the deformation or change in shape that results from that force.

    • Stress is measured in units of force per unit area, such as pounds per square inch (psi) or newtons per square meter (N/m²).

    • Strain is measured as a ratio of the change in length or shape of an object to its original length or shape.

    • Stress and strain are related by a material's modulus of elasticity,...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while giving answers.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Basic apti questions

Round 2 - Technical 

(2 Questions)

  • Q1. Apti questions, define different types of bridges,
  • Q2. What do you know about the company

I applied via Campus Placement and was interviewed before Nov 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Q1) Tell me about the industrial visits you did during college? Q2) What are your strengths ? Q3) Where do you see yourself in the next five years? Q4) Explain what project you did in your college?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Feb 2023. There were 3 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 - Group Discussion 

Basically, we were given a topic to discuss. There were a total of 15 students and 3 of us were selected for the next round.

Round 3 - Interview 

(3 Questions)

  • Q1. Why do you want to join our company ?
  • Q2. Basic Details about me.
  • Q3. I was asked about the project I have been doing.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go for it. No such preparations required. Just your foundation should be strong.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before May 2022. There were 5 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - Coding Test 

Question was moderate. Good knowledge of dsa needed. CP not mandatory.

Round 3 - Technical 

(2 Questions)

  • Q1. Question on oops principals, complexity analysis of programs, c++ concepts of classes, memory allocation etc.
  • Q2. How much memory is allocated when a class is declared? How much when instance is created ? And so on...
  • Ans. 

    Memory allocation for class and instance creation in Java

    • Memory is allocated for class variables and methods when the class is loaded into memory

    • Memory for instance variables is allocated when an instance of the class is created

    • The amount of memory allocated depends on the data type and size of the variables

    • Static variables are allocated memory only once, while instance variables are allocated memory for each instance

    • M...

  • Answered by AI
Round 4 - Behavioral 

(1 Question)

  • Q1. What do you understand by distributed systems, multitasking multiprograming etc, overview idea of amazon working etc.
  • Ans. 

    Distributed systems involve multiple computers working together, multitasking allows for multiple tasks to be performed simultaneously, Amazon uses distributed systems for their online services.

    • Distributed systems involve multiple computers working together to achieve a common goal

    • Multitasking allows for multiple tasks to be performed simultaneously by a single computer

    • Multiprogramming allows multiple programs to run o...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Basic hr questions like relocation, aim etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - must have good knowledge of OOPS, c++ or java.. good knowledge of DSA.

Skills evaluated in this interview

I applied via Referral and was interviewed before Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1. Bit Manipulation
  • Q2. 2. String Manipulation

Interview Preparation Tips

Interview preparation tips for other job seekers - Just focus on basics of programming and memory management.
Round 1 - Telephonic Call 

(1 Question)

  • Q1. Process synchronisation and threads.
Round 2 - Coding Test 

Linked list and sorting. Linux system side programming.

Round 3 - Technical 

(1 Question)

  • Q1. Thread synchronisation. Locking.
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial discussion. Threading and watchdog related stuff.

Interview Preparation Tips

Interview preparation tips for other job seekers - Linux and drivers concepts should be good
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be honest with your years of experience. All information you share will be verified at the time of joining.
View all tips
Round 2 - Coding Test 

Tree, LinkedList, Array

Round 3 - Technical 

(2 Questions)

  • Q1. Find depth of a tree
  • Ans. 

    The depth of a tree is the length of the longest path from the root node to any leaf node.

    • Depth of a tree can be found using depth-first search (DFS) algorithm.

    • The depth of a tree is equal to the maximum depth of its children plus one.

    • For example, in a binary tree, the depth of the tree is the maximum depth of the left and right subtrees plus one.

  • Answered by AI
  • Q2. Merge two sorted arrays
  • Ans. 

    Merge two sorted arrays into a single sorted array

    • Create a new array to store the merged result

    • Use two pointers to iterate through both arrays and compare elements

    • Add the smaller element to the new array and move the pointer for that array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice Tree, Graphs

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is real dom and virtual dom in react
  • Ans. 

    Real DOM is the actual representation of the HTML structure, while Virtual DOM is a lightweight copy used for efficient updates.

    • Real DOM is slower as it directly manipulates the HTML structure.

    • Virtual DOM is faster as it updates the lightweight copy and then syncs with the real DOM.

    • React uses the Virtual DOM to minimize unnecessary re-rendering of components.

    • Virtual DOM allows for efficient batch updates, improving per...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good

Skills evaluated in this interview

Harsco Interview FAQs

How many rounds are there in Harsco Senior Manager Finance interview?
Harsco interview process usually has 3 rounds. The most common rounds in the Harsco interview process are Resume Shortlist, Group Discussion and Technical.
What are the top questions asked in Harsco Senior Manager Finance interview?

Some of the top questions asked at the Harsco Senior Manager Finance interview -

  1. with Asia Pacific VP all technical questio...read more
  2. HR Related clarificati...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Siemens Interview Questions
4.1
 • 421 Interviews
Thermax Limited Interview Questions
4.1
 • 252 Interviews
ABB Interview Questions
4.1
 • 236 Interviews
Cummins Interview Questions
4.3
 • 231 Interviews
BHEL Interview Questions
4.1
 • 113 Interviews
VA Tech Wabag Interview Questions
3.9
 • 47 Interviews
View all

Harsco Senior Manager Finance Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Senior Analyst
28 salaries
unlock blur

₹4.5 L/yr - ₹11.1 L/yr

Shift Incharge
23 salaries
unlock blur

₹2.5 L/yr - ₹4.6 L/yr

Analyst
16 salaries
unlock blur

₹3.2 L/yr - ₹6 L/yr

Assistant Manager
14 salaries
unlock blur

₹9.2 L/yr - ₹13.3 L/yr

Maintenance Engineer
14 salaries
unlock blur

₹3 L/yr - ₹8 L/yr

Explore more salaries
Compare Harsco with

Re Sustainability Limited

4.0
Compare

DuPont

4.2
Compare

WM Universal Solutions Private Limited

3.8
Compare

Vishvaraj Environment

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