Premium Employer

i

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

Hitachi Digital Verified Tick

Compare button icon Compare button icon Compare

Hitachi Digital Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

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

I was interviewed before Feb 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Why sales and why Watch Your Health
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

I was interviewed before Feb 2024.

Round 1 - One-on-one 

(1 Question)

  • Q1. Sales strategies

I applied via Naukri.com and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Technical round with live coding.
  • Q2. Java 8 questions, spring boot related questions
Round 2 - Technical 

(1 Question)

  • Q1. Spring boot, Kafka , logging caching , design patterns questions.
Round 3 - HR 

(1 Question)

  • Q1. Basic short interview mostly related with work experience and compensation

Interview Preparation Tips

Interview preparation tips for other job seekers - Please ds and algorithms and basic microservises and spring framework questions.

I applied via Recruitment Consulltant and was interviewed in Sep 2022. There were 5 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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Asked Kadane's algorithm, and some android related questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. Design a hashmap, and optimise it
  • Ans. 

    Design and optimize a hashmap

    • Choose a good hash function to minimize collisions

    • Implement dynamic resizing to handle increasing load factor

    • Consider using open addressing or separate chaining for collision resolution

    • Use an efficient data structure for storing key-value pairs, such as an array or linked list

  • Answered by AI
Round 4 - Technical 

(1 Question)

  • Q1. Design a custom recyclerview with appropriate data structures
  • Ans. 

    Custom recyclerview with appropriate data structures

    • Create a custom adapter extending RecyclerView.Adapter

    • Implement onCreateViewHolder() and onBindViewHolder() methods

    • Use appropriate data structures like ArrayList or HashMap for efficient data handling

    • Implement onClickListener for item clicks

    • Use ViewHolder pattern for efficient view recycling

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. What are your expectations related to work and salary
  • Ans. 

    I expect fair compensation for my skills and experience, and a challenging work environment that allows for growth and learning.

    • I am looking for a salary that is commensurate with my experience and skills.

    • I am open to negotiation and willing to discuss salary and benefits.

    • I am looking for a challenging work environment that allows me to learn and grow as a software engineer.

    • I am interested in opportunities for professi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and don't be nervous. Interviewers are helpful and will guide you to a solution if you listen to them carefully.

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Skills related questions only
Round 2 - Technical 

(1 Question)

  • Q1. Skills related questions only
Round 3 - HR 

(1 Question)

  • Q1. Salary related questions only
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(8 Questions)

  • Q1. Difference between static and final
  • Ans. 

    Static is used to define class-level variables and methods, while final is used to define constants that cannot be changed.

    • Static variables belong to the class itself, while final variables are constants that cannot be modified.

    • Static methods can be called without creating an instance of the class, while final methods cannot be overridden.

    • Static variables are shared among all instances of a class, while final variables...

  • Answered by AI
  • Q2. ArraysList vs LinkedList
  • Ans. 

    ArrayList is better for random access, LinkedList is better for frequent insertions/deletions.

    • ArrayList uses dynamic array to store elements, LinkedList uses doubly linked list.

    • ArrayList provides fast random access to elements using index, LinkedList provides fast insertion/deletion at any position.

    • Example: ArrayList is suitable for scenarios where random access is required like searching, LinkedList is suitable for sc...

  • Answered by AI
  • Q3. Describe Java8 Features
  • Ans. 

    Java8 introduced several new features including lambda expressions, functional interfaces, streams, and default methods.

    • Lambda expressions allow you to write code in a more concise and readable way.

    • Functional interfaces are interfaces with a single abstract method, which can be implemented using lambda expressions.

    • Streams provide a way to work with collections of objects in a functional style.

    • Default methods allow inte...

  • Answered by AI
  • Q4. Gave one scenario to solve using streams in java8
  • Ans. 

    Using streams in Java 8 to filter and map a list of numbers

    • Create a list of numbers

    • Use stream to filter out even numbers

    • Use map to square each number

    • Collect the results into a new list

  • Answered by AI
  • Q5. Multithreading- Write program to print even and odd numbers from 1 to 20 using 2 threads. 1 thread will responsible for printing even and another for Odd. And print in such a manner it should be alternate....
  • Ans. 

    Program to print even and odd numbers from 1 to 20 using 2 threads alternately.

    • Create two threads, one for printing even numbers and one for printing odd numbers.

    • Use wait(), notify(), and notifyAll() to ensure alternate printing.

    • Ensure synchronization between the two threads to avoid race conditions.

    • Example: Thread 1 prints even numbers (2, 4, 6, ...) and Thread 2 prints odd numbers (1, 3, 5, ...).

  • Answered by AI
  • Q6. Why strings immutable
  • Ans. 

    Strings are immutable to ensure data integrity and security.

    • Immutable strings prevent accidental changes to data

    • Immutable strings allow for safe sharing of data between different parts of a program

    • Immutable strings help prevent security vulnerabilities like SQL injection attacks

  • Answered by AI
  • Q7. Outer Join SQL query
  • Q8. What is the purpose of using default methods in java8?
  • Ans. 

    Default methods in Java 8 allow interfaces to have method implementations, enabling backward compatibility and reducing code duplication.

    • Default methods were introduced in Java 8 to provide a way to add new methods to interfaces without breaking existing implementations.

    • They allow interfaces to have method implementations, which was not possible before Java 8.

    • Default methods can be overridden in implementing classes to...

  • Answered by AI
Round 2 - Technical 

(8 Questions)

  • Q1. 1 coding problem related to Anagrams
  • Q2. 1 Java8 streams problem
  • Ans. 

    Using Java8 streams to solve a problem

    • Use stream() method to convert a collection into a stream

    • Use filter() method to filter elements based on a condition

    • Use map() method to transform elements

    • Use collect() method to collect the elements into a new collection

  • Answered by AI
  • Q3. What are checked exceptions
  • Ans. 

    Checked exceptions are exceptions that must be either caught or declared in the method signature.

    • Checked exceptions are subclasses of Exception (excluding RuntimeException and its subclasses)

    • Checked exceptions must be either caught using try-catch block or declared in the method signature using 'throws' keyword

    • Examples of checked exceptions in Java include IOException, SQLException, and ClassNotFoundException

  • Answered by AI
  • Q4. Purpose of @SpringBootApplication annotation?
  • Ans. 

    Annotation used to mark a class as a Spring Boot application

    • Combines @Configuration, @EnableAutoConfiguration, and @ComponentScan annotations

    • Used to bootstrap and launch a Spring application

    • Automatically scans for Spring components in the package and sub-packages

  • Answered by AI
  • Q5. Use of @Qualifier
  • Ans. 

    Annotation used in Spring to specify which bean to autowire

    • Used to disambiguate when multiple beans of the same type are present

    • Can be used with @Autowired to specify which bean to inject

    • Helps in resolving dependencies when multiple beans of the same type are available

  • Answered by AI
  • Q6. What are microservices?
  • Ans. 

    Microservices are a software development technique where an application is composed of small, independent services that communicate with each other.

    • Microservices are designed to be small, focused on specific tasks, and independently deployable.

    • Each microservice typically runs its own process and communicates with other services through APIs.

    • Microservices allow for easier scalability, flexibility, and maintenance compar...

  • Answered by AI
  • Q7. Design patterns
  • Q8. How microservices communicate with each other
  • Ans. 

    Microservices communicate with each other through APIs, messaging queues, or service meshes.

    • APIs: Microservices can communicate with each other by exposing APIs that allow them to send and receive data.

    • Messaging queues: Microservices can use messaging queues like RabbitMQ or Kafka to send messages to each other asynchronously.

    • Service meshes: Microservices can communicate through a service mesh like Istio, which handles...

  • Answered by AI
Round 3 - Behavioral 

(3 Questions)

  • Q1. Asked about projects.
  • Q2. Complete flow and business use case of the project
  • Ans. 

    The project involves creating a web-based platform for online shopping with features like user registration, product browsing, shopping cart, and payment processing.

    • User registers on the platform with personal information

    • User browses products by category or search

    • User adds products to the shopping cart

    • User proceeds to checkout and makes payment

    • Order is confirmed and user receives a confirmation email

  • Answered by AI
  • Q3. Interviewer was more concerned about matching the tech stack with job description

Interview Preparation Tips

Topics to prepare for Deutsche Telekom Digital Labs Software Engineer interview:
  • java8
  • Multithreading
  • Spring Boot
  • Microservices
  • MySQL
  • Basic OOPS Concept
  • Streams
  • Exception Handling

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 Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Two Strings are anagram or not
  • Ans. 

    Check if two strings are anagrams by comparing the frequency of characters.

    • Create two arrays to store the frequency of characters for each string.

    • Compare the frequency arrays to check if they are anagrams.

    • Example: 'listen' and 'silent' are anagrams.

  • Answered by AI
  • Q2. Java and Spring boot questions
Round 2 - Technical 

(2 Questions)

  • Q1. System design basic HLD
  • Q2. Previous project architecture
  • Ans. 

    Previous project architecture involved microservices with Docker containers and Kubernetes for orchestration.

    • Utilized microservices architecture for scalability and flexibility

    • Deployed services in Docker containers for easy portability and consistency

    • Managed containerized applications with Kubernetes for automated scaling and orchestration

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
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 

(2 Questions)

  • Q1. Need to find output of given code
  • Q2. Solve some puzzles

I applied via Campus Placement and was interviewed before Aug 2021. There were 4 interview rounds.

Round 1 - Coding Test 

Duration: 1hr
Topics: Array, LinkedList,Stack

Round 2 - Technical 

(2 Questions)

  • Q1. Write code for Insertion in a binary tree.
  • Ans. 

    Code for insertion in a binary tree

    • Create a new node with the given data

    • If the tree is empty, make the new node as root

    • Else, traverse the tree to find the appropriate position to insert the new node

    • If the data is less than the current node, go to the left subtree

    • If the data is greater than the current node, go to the right subtree

    • Repeat until an appropriate position is found

    • Set the new node as the child of the appropri

  • Answered by AI
  • Q2. Write code for quick sort
  • Ans. 

    Quick sort is a divide-and-conquer algorithm that sorts an array by partitioning it into two sub-arrays.

    • Choose a pivot element from the array

    • Partition the array around the pivot element

    • Recursively apply quick sort to the left and right sub-arrays

    • Combine the sorted sub-arrays to get the final sorted array

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Various DBMS related question(JOINS, SORT, LIMIT)
Round 4 - HR 

(2 Questions)

  • Q1. Tell us about yourself.
  • Q2. Why do want to join the company

Interview Preparation Tips

Topics to prepare for Hughes Systique Corporation Software Engineer interview:
  • C++
  • Data Structures
  • SQL
Interview preparation tips for other job seekers - Just be confident and explain your thought process and go with the flow

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Coding for python developer round.

Round 2 - Technical 

(1 Question)

  • Q1. Python django and dsa
Round 3 - HR 

(1 Question)

  • Q1. Normal just salary negotiation and all.

Interview Preparation Tips

Interview preparation tips for other job seekers - Please take care of the role you apply for. They sometimes give you the interview for the python developer. Then make excuses that the role is fullfilled and if you can do testing for few months and once you accept that they disappear. And you will do testing only your profile changes and they rarely listen to you change request.
Contribute & help others!
anonymous
You can choose to be anonymous

Recently Viewed

SALARIES

CDW

COMPANY BENEFITS

Hitachi

No Benefits

COMPANY BENEFITS

AVEVA

No Benefits

INTERVIEWS

CDW

No Interviews

JOBS

Hitachi

No Jobs

JOBS

Hitachi

No Jobs

JOBS

Hitachi

No Jobs

SALARIES

CDW

JOBS

AVEVA

No Jobs

JOBS

AVEVA

No Jobs

Tell us how to improve this page.

Join Hitachi Digital Digital for all

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
View all

Hitachi Digital Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

2.0

Skill development

2.0

Work-life balance

4.0

Salary

3.0

Job security

2.0

Company culture

2.0

Promotions

2.0

Work satisfaction

Explore 1 Review and Rating
Senior Internal Auditor
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Consultant 2
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Hitachi Digital with

Fractal Analytics

4.0
Compare

MathCo

2.9
Compare

Watchyourhealth.com

4.7
Compare

Sedemac Mechatronics

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