AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Hitachi

Compare button icon Compare button icon Compare
4.0

based on 684 Reviews

Play video Play video Video summary
  • About
  • Reviews
    684
  • Salaries
    4.2k
  • Interviews
    84
  • Jobs
    53
  • Benefits
    66
  • Photos
    9

Filter interviews by

Hitachi Interview Questions and Answers

Updated 17 May 2025
Popular Designations

56 Interview questions

A Diploma Mechanical Engineer was asked 2mo ago
Q. What knowledge do you possess regarding heavy machinery, specifically CNC and VMC?
Ans. 

CNC and VMC are advanced machining technologies used for precision manufacturing in various industries.

  • CNC (Computer Numerical Control): CNC machines automate control of machining tools via computer programming, enhancing precision and efficiency.

  • VMC (Vertical Machining Center): VMCs are CNC machines with a vertical spindle orientation, ideal for milling operations and complex part geometries.

  • Applications: CNC and...

View all Diploma Mechanical Engineer interview questions
A Business Analyst was asked 5mo ago
Q. What are the steps involved in creating a database table?
Ans. 

Steps involved in creating a database table

  • Define the table name and columns with data types

  • Set primary key and any constraints

  • Specify relationships with other tables if needed

  • Create the table using SQL query

  • Test the table by inserting and querying data

View all Business Analyst interview questions
A Business Analyst was asked 5mo ago
Q. What are the steps to create APIs?
Ans. 

Steps to create APIs involve planning, designing, implementing, testing, and documenting.

  • Plan the API functionality and endpoints

  • Design the API structure and data formats

  • Implement the API using programming languages and frameworks

  • Test the API for functionality, performance, and security

  • Document the API for developers to understand its usage

View all Business Analyst interview questions
An Intern was asked 5mo ago
Q. What is the difference between inner and outer joins?
Ans. 

Inner join returns only the rows that have matching values in both tables, while outer join returns all rows from both tables.

  • Inner join: returns rows with matching values in both tables

  • Outer join: returns all rows from both tables, with NULL values where there is no match

  • Example: Inner join - SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

  • Example: Outer join - SELECT * FROM table1 LEFT OUTER JOIN ...

View all Intern interview questions
An Intern was asked 5mo ago
Q. Explain multi-threading.
Ans. 

Multi threading is the ability of a CPU to execute multiple threads concurrently.

  • Allows for parallel execution of tasks, improving performance

  • Each thread has its own stack and runs independently

  • Threads can communicate and synchronize using shared memory

  • Examples: running multiple tasks simultaneously in a web server, processing data in parallel

View all Intern interview questions
An Intern was asked 5mo ago
Q. What is polymorphism?
Ans. 

Polymorphism is the ability of a single function or method to operate on different types of data.

  • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

  • It enables a single interface to be used for different data types.

  • Examples include method overloading and method overriding in object-oriented programming.

View all Intern interview questions
A QA Engineer was asked 6mo ago
Q. Given a string, reverse it.
Ans. 

Reverse a given string

  • Use a loop to iterate through the characters of the string

  • Swap the characters from start to end to reverse the string

  • Alternatively, use built-in functions like reverse() in some programming languages

View all QA Engineer interview questions
Are these interview questions helpful?
A QA Engineer was asked 6mo ago
Q. Write a function to split a string into a list of substrings based on a delimiter.
Ans. 

Split a string into an array of strings based on a specified delimiter

  • Use the split() method in programming languages like JavaScript, Python, or Java

  • Specify the delimiter as an argument to the split() method

  • Example: 'Hello,World' split(',') would result in ['Hello', 'World']

View all QA Engineer interview questions
A QA Engineer was asked 6mo ago
Q. What is the difference between sanity testing and smoke testing?
Ans. 

Sanity testing is a narrow and deep testing to ensure that the most crucial functionalities work correctly, while smoke testing is a broad and shallow testing to check if the software build is stable enough for further testing.

  • Sanity testing focuses on specific areas of the application to ensure that the critical functionalities are working as expected.

  • Smoke testing is a preliminary test to check if the software b...

View all QA Engineer interview questions
A Cms Officer was asked 8mo ago
Q. Can you multitask?
Ans. 

Yes, I am able to multitask effectively in order to handle multiple tasks simultaneously.

  • I have experience juggling multiple projects and deadlines in my previous roles

  • I prioritize tasks based on urgency and importance

  • I am able to switch between tasks seamlessly without compromising on quality

  • I use tools like to-do lists and calendars to stay organized and on track

View all Cms Officer interview questions
1 2 3 4 5 6

Hitachi Interview Experiences

84 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 27 Dec 2024

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

I applied via Referral and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

There were 4 sections and first one was quant, second one was logical, third was English and finally 3 coding questions in last section

Round 2 - Coding Test 

4 codes and 5 technical questions

Round 3 - One-on-one 

(3 Questions)

  • Q1. Explain multi threading
  • Ans. 

    Multi threading is the ability of a CPU to execute multiple threads concurrently.

    • Allows for parallel execution of tasks, improving performance

    • Each thread has its own stack and runs independently

    • Threads can communicate and synchronize using shared memory

    • Examples: running multiple tasks simultaneously in a web server, processing data in parallel

  • Answered by AI
    Add your answer
  • Q2. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
    Add your answer
  • Q3. Diff b/w inner and outer joins
  • Ans. 

    Inner join returns only the rows that have matching values in both tables, while outer join returns all rows from both tables.

    • Inner join: returns rows with matching values in both tables

    • Outer join: returns all rows from both tables, with NULL values where there is no match

    • Example: Inner join - SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

    • Example: Outer join - SELECT * FROM table1 LEFT OUTER JOIN table...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for Hitachi Intern interview:
  • Java
  • Web Technologies
  • Threads
  • OOPS
Interview preparation tips for other job seekers - Easy interview and all questions will be asked from your resume. Difficulty would be mainly depend on interviewer. Apart from technical few behavioral questions were asked.

Intern Interview Questions asked at other Companies

Q1. There is a housing society “The wasteful society”. You collect all the household garbage and sell it to 5 different businesses: a. Compost Manufacturer, b. Plastic Recycler, c. Paper Recycler, d. Metal Recycler, e. Miscellaneous. Determine ... read more
View answer (8)
Anonymous

Cms Officer Interview Questions & Answers

user image Anonymous

posted on 17 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(5 Questions)

  • Q1. Why should we hire you
  • Ans. 

    I am highly organized, detail-oriented, and have a strong background in compliance and regulations.

    • I have a proven track record of successfully managing compliance issues in previous roles.

    • My attention to detail ensures that all tasks are completed accurately and efficiently.

    • I am dedicated to staying up-to-date on all relevant regulations and guidelines in the field.

    • I have excellent communication skills, which allow me...

  • Answered by AI
    Add your answer
  • Q2. Why do you leave you your current organization
  • Ans. 

    Seeking new challenges and growth opportunities

    • Desire for career advancement

    • Looking for new challenges and learning opportunities

    • Seeking a better work-life balance

    • Relocation to a new city or country

    • Company restructuring or downsizing

    • Better salary or benefits offered by new organization

  • Answered by AI
    Add your answer
  • Q3. What are you looking forward to in Our organization
  • Ans. 

    I am looking forward to the opportunity to contribute to a dynamic and innovative organization that values teamwork and professional growth.

    • Opportunity to contribute to a dynamic organization

    • Value placed on teamwork

    • Opportunities for professional growth

  • Answered by AI
    Add your answer
  • Q4. What is the size of the largest team you've handled
  • Ans. 

    I have managed a team of 15 members in my previous role.

    • Managed a team of 15 members in my previous role

    • Delegated tasks effectively to ensure smooth workflow

    • Provided guidance and support to team members to achieve goals

  • Answered by AI
    Add your answer
  • Q5. Can you multitask
  • Ans. 

    Yes, I am able to multitask effectively in order to handle multiple tasks simultaneously.

    • I have experience juggling multiple projects and deadlines in my previous roles

    • I prioritize tasks based on urgency and importance

    • I am able to switch between tasks seamlessly without compromising on quality

    • I use tools like to-do lists and calendars to stay organized and on track

  • Answered by AI
    Add your answer

Cms Officer Interview Questions asked at other Companies

Q1. What are the current Tax Deducted at Source (TDS) rates?
View answer (1)
Anonymous

Senior Database Developer Interview Questions & Answers

user image Dipender Sharma

posted on 4 Oct 2024

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 Sep 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between deadlock blocking and questions related to deadlock and blocking
  • Add your answer
  • Q2. What are Isolation levels and which is default one and how to specify different isolation from default one.
  • Ans. 

    Isolation levels determine the level of visibility of changes made by other transactions.

    • Isolation levels include Read Uncommitted, Read Committed, Repeatable Read, and Serializable.

    • The default isolation level in most databases is Read Committed.

    • To specify a different isolation level, you can use SQL statements like SET TRANSACTION ISOLATION LEVEL in SQL Server or SET TRANSACTION in Oracle.

  • Answered by AI
    Add your answer
  • Q3. Their were many other question related to performance tunning and indexes.
  • Add your answer

Senior Database Developer Interview Questions asked at other Companies

Q1. What is the difference between Merge and Union All transformations in SQL?
View answer (1)
Anonymous

Executive Assistant Interview Questions & Answers

user image Anonymous

posted on 13 Sep 2024

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

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. What are your role & responsibility?
  • Ans. 

    As an Executive Assistant, my role is to provide high-level administrative support to executives by managing schedules, coordinating meetings, handling correspondence, and performing various tasks to ensure the smooth operation of the office.

    • Manage executive's calendar and schedule appointments

    • Coordinate meetings and conferences, including preparing agendas and taking minutes

    • Handle correspondence, emails, and phone cal...

  • Answered by AI
    Add your answer
  • Q2. Why do you looking for a change?
  • Ans. 

    Seeking new challenges and growth opportunities in a dynamic work environment.

    • Looking to expand my skill set and take on new responsibilities

    • Interested in working for a company with a strong mission and values

    • Seeking a more collaborative and innovative work culture

    • Want to explore different industries and broaden my professional network

  • Answered by AI
    Add your answer
  • Q3. What is your current CTC?
  • Ans. 

    My current CTC is $60,000 per year.

    • My current CTC is $60,000 per year

    • I am currently earning $5,000 per month

    • My annual salary is $60,000

  • Answered by AI
    Add your answer

Executive Assistant Interview Questions asked at other Companies

Q1. What is deviation What is validation and its type in detail What is CAPA AND HOW IT is initiated Examples of incidences and how it is rectified Examples of preventive action and corrective actions Procedure for reprocessing of batch What is... read more
View answer (1)
Anonymous

Data Engineer Interview Questions & Answers

user image Mukta Talokar

posted on 11 Jan 2025

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

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me about yourself and projects
  • Ans. 

    I am a data engineer with experience in building data pipelines and optimizing data storage for various projects.

    • Developed ETL pipelines to extract, transform, and load data from multiple sources into a centralized data warehouse

    • Implemented data modeling techniques to optimize database performance and ensure data integrity

    • Worked on real-time data processing systems using technologies like Apache Kafka and Spark Streami...

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - have detail knowledge about technology

Data Engineer Interview Questions asked at other Companies

Q1. Next Greater Element Problem Statement You are given an array arr of length N. For each element in the array, find the next greater element (NGE) that appears to the right. If there is no such greater element, return -1. Input: T N arr[0]... read more
View answer (3)
Anonymous

Project Manager Interview Questions & Answers

user image Akshay sharma

posted on 17 May 2025

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Railways related questions
  • Add your answer
  • Q2. From my past experience
  • Add your answer

Project Manager Interview Questions asked at other Companies

Q1. How did you manage the software release and deployment?
View answer (2)
Anonymous

Devops Engineer Interview Questions & Answers

user image Anonymous

posted on 4 May 2025

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Aws, tcp up,
  • Add your answer
  • Q2. Azure, linux, red hat
  • Add your answer

Devops Engineer Interview Questions asked at other Companies

Q1. How can you run a Docker command remotely on a Linux server without establishing a separate SSH session?
View answer (2)
Anonymous

Business Analyst Interview Questions & Answers

user image Anonymous

posted on 15 Jan 2025

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What are the steps involved in creating a database table?
  • Ans. 

    Steps involved in creating a database table

    • Define the table name and columns with data types

    • Set primary key and any constraints

    • Specify relationships with other tables if needed

    • Create the table using SQL query

    • Test the table by inserting and querying data

  • Answered by AI
    Add your answer
  • Q2. What are the steps to the creation of APIs?
  • Ans. 

    Steps to create APIs involve planning, designing, implementing, testing, and documenting.

    • Plan the API functionality and endpoints

    • Design the API structure and data formats

    • Implement the API using programming languages and frameworks

    • Test the API for functionality, performance, and security

    • Document the API for developers to understand its usage

  • Answered by AI
    Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Job description was totally different from interview questions

Business Analyst Interview Questions asked at other Companies

Q1. You have 10 boxes of balls (each ball weighing exactly 10 gm) with one box containing defective balls (each one of the defective balls weighs 9 gm). You are given an electronic weighing machine and only one chance to use it. How will you fi... read more
View answer (9)
Anonymous

QA Engineer Interview Questions & Answers

user image Sonali Survase

posted on 17 Dec 2024

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

I appeared for an interview in Jun 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Test design techniques
  • Ans. 

    Test design techniques are methods used to create test cases and scenarios for software testing.

    • Black box testing: Testing based on external behavior without knowledge of internal code.

    • White box testing: Testing based on internal code structure and logic.

    • Equivalence partitioning: Dividing input data into partitions to ensure thorough testing.

    • Boundary value analysis: Testing at the boundaries of input ranges to uncover ...

  • Answered by AI
    Add your answer
  • Q2. Difference between sanity and smoke
  • Ans. 

    Sanity testing is a narrow and deep testing to ensure that the most crucial functionalities work correctly, while smoke testing is a broad and shallow testing to check if the software build is stable enough for further testing.

    • Sanity testing focuses on specific areas of the application to ensure that the critical functionalities are working as expected.

    • Smoke testing is a preliminary test to check if the software build ...

  • Answered by AI
    Add your answer
Round 2 - Technical 

(2 Questions)

  • Q1. Reverse the string
  • Ans. 

    Reverse a given string

    • Use a loop to iterate through the characters of the string

    • Swap the characters from start to end to reverse the string

    • Alternatively, use built-in functions like reverse() in some programming languages

  • Answered by AI
    Add your answer
  • Q2. Split the string
  • Ans. 

    Split a string into an array of strings based on a specified delimiter

    • Use the split() method in programming languages like JavaScript, Python, or Java

    • Specify the delimiter as an argument to the split() method

    • Example: 'Hello,World' split(',') would result in ['Hello', 'World']

  • Answered by AI
    Add your answer
Round 3 - HR 

(1 Question)

  • Q1. Why are you leaving current organization
  • Ans. 

    Seeking new challenges and growth opportunities

    • Looking for career advancement

    • Desire to work on more challenging projects

    • Seeking a better work-life balance

    • Company restructuring or changes in management

  • Answered by AI
    Add your answer

QA Engineer Interview Questions asked at other Companies

Q1. Suppose your manager gave you a task to complete in one week, but you believe it will take two weeks. How would you justify your view to your manager and get them to accept your justification?
View answer (2)
Anonymous

Test Engineer Interview Questions & Answers

user image Maheshkrishna AG

posted on 29 Aug 2024

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

(2 Questions)

  • Q1. What is cypress ?
  • Ans. 

    Cypress is a JavaScript-based end-to-end testing framework for web applications.

    • Cypress allows for easy and fast testing of web applications

    • It provides a clean and simple syntax for writing tests

    • Cypress can simulate user interactions and test the application's functionality

    • It has built-in support for debugging and time-travel features

  • Answered by AI
    Add your answer
  • Q2. What is selenium in testing
  • Ans. 

    Selenium is a popular open-source automation testing tool used for web application testing.

    • Selenium is used for automating web browsers to test web applications.

    • It supports multiple programming languages like Java, Python, C#, etc.

    • Selenium WebDriver is the most commonly used component for writing test scripts.

    • Selenium IDE is a record and playback tool for creating quick test scripts.

    • Selenium Grid allows running tests o...

  • Answered by AI
    Add your answer
Round 2 - Coding Test 

Addition of 2 number

Skills evaluated in this interview

Test Engineer Interview Questions asked at other Companies

Q1. 1. What is the frame work u have worked and explain the framework with folder structure? 2. purely based on testing, different testing types like functional and non functional tests 3. real time scenarios like last min bugs before release? ... read more
View answer (4)
Anonymous

Top trending discussions

View All
Interview Tips & Stories
2w (edited)
timepasstiwari
·
A Digital Markter
Nailed the interview, still rejected
Just had the BEST interview ever – super positive and encouraging! But got rejected. Interviewer said I was the most prepared, knew it was a full-time role (unlike others), and loved my answers. One of my questions was even called "the best ever asked!" He showed me around, said I was exactly what they wanted, and would get back by Friday. I was so hyped! Then today, I got the rejection email. No reason given, just "went with someone else." Feels bad when your best isn't enough. Anyone else been there? How'd you cope?
Got a question about Hitachi?
Ask anonymously on communities.
More about working at Hitachi
  • HQ - Tokyo, Japan, India
  • Industrial Machinery
  • 10k-50k Employees (India)

Hitachi Interview FAQs

How many rounds are there in Hitachi interview?
Hitachi interview process usually has 1-2 rounds. The most common rounds in the Hitachi interview process are Technical, One-on-one Round and Resume Shortlist.
How to prepare for Hitachi 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 Hitachi. The most common topics and skills that interviewers at Hitachi expect are Healthcare, Telecom, Automotive, Firmware and Python.
What are the top questions asked in Hitachi interview?

Some of the top questions asked at the Hitachi interview -

  1. 1What is a reconciliation ? and reconciliation typ...read more
  2. What is accounts? What is important of account...read more
  3. What are Isolation levels and which is default one and how to specify different...read more
What are the most common questions asked in Hitachi HR round?

The most common HR questions asked in Hitachi interview are -

  1. What are your salary expectatio...read more
  2. What is your family backgrou...read more
  3. Why are you looking for a chan...read more
How long is the Hitachi interview process?

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

Tell us how to improve this page.

Hitachi Interviews By Designations

  • Hitachi Production Engineer Interview Questions
  • Hitachi Technical Engineer Interview Questions
  • Hitachi Devops Engineer Interview Questions
  • Hitachi Senior Consultant Interview Questions
  • Hitachi Software Developer Interview Questions
  • Hitachi Full Stack Developer Interview Questions
  • Hitachi Network Engineer Interview Questions
  • Hitachi Intern Interview Questions
  • Show more
  • Hitachi Sales Executive Interview Questions
  • Hitachi Software Engineer Interview Questions

Interview Questions for Popular Designations

  • Executive Interview Questions
  • Senior Executive Interview Questions
  • Software Developer Interview Questions
  • Intern Interview Questions
  • Senior Associate Interview Questions
  • Senior Engineer Interview Questions
  • Consultant Interview Questions
  • Associate Software Engineer Interview Questions
  • Show more
  • Accountant Interview Questions
  • Senior Software Engineer Interview Questions

Overall Interview Experience Rating

4.1/5

based on 82 interview experiences

Difficulty level

Easy 26%
Moderate 71%
Hard 3%

Duration

Less than 2 weeks 85%
2-4 weeks 12%
6-8 weeks 3%
View more

Interview Questions from Similar Companies

ABB
ABB Interview Questions
4.1
 • 247 Interviews
John Deere
John Deere Interview Questions
4.1
 • 244 Interviews
Caterpillar Inc
Caterpillar Inc Interview Questions
4.2
 • 185 Interviews
Tractors and Farm Equipment
Tractors and Farm Equipment Interview Questions
4.0
 • 116 Interviews
KONE
KONE Interview Questions
4.1
 • 114 Interviews
CNH Industrial
CNH Industrial Interview Questions
3.8
 • 102 Interviews
Atlas Copco
Atlas Copco Interview Questions
4.2
 • 90 Interviews
Schindler
Schindler Interview Questions
3.9
 • 82 Interviews
TKIL
TKIL Interview Questions
4.2
 • 63 Interviews
EMERSON PROCESS MANAGEMENT
EMERSON PROCESS MANAGEMENT Interview Questions
4.0
 • 55 Interviews
View all

Hitachi Reviews and Ratings

based on 684 reviews

4.0/5

Rating in categories

3.7

Skill development

3.9

Work-life balance

3.7

Salary

3.9

Job security

3.9

Company culture

3.4

Promotions

3.8

Work satisfaction

Explore 684 Reviews and Ratings
Jobs at Hitachi
Hitachi
Global Payroll Specialist - US Region

Bangalore / Bengaluru

5-9 Yrs

Not Disclosed

Hitachi
Data Architect Workday Reporting & Automation

Hyderabad / Secunderabad

7-11 Yrs

Not Disclosed

Hitachi
Technical Lead ITSM

New Delhi

6-9 Yrs

Not Disclosed

Explore more jobs
Hitachi Salaries in India
Project Engineer
82 salaries
unlock blur

₹6.3 L/yr - ₹14.4 L/yr

Senior Consultant
78 salaries
unlock blur

₹13 L/yr - ₹36.5 L/yr

Assistant Manager
75 salaries
unlock blur

₹6 L/yr - ₹26 L/yr

AC Technician
55 salaries
unlock blur

₹1.4 L/yr - ₹7 L/yr

Software Engineer
48 salaries
unlock blur

₹2 L/yr - ₹8.3 L/yr

Explore more salaries
Compare Hitachi with
John Deere

John Deere

4.1
Compare
ABB

ABB

4.1
Compare
CNH ( Case New Holland)

CNH ( Case New Holland)

3.8
Compare
KONE

KONE

4.1
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Hitachi Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter