Upload Button Icon Add office photos

Fujitsu

Compare button icon Compare button icon Compare

Filter interviews by

Fujitsu Interview Questions and Answers

Updated 24 Jun 2025
Popular Designations

138 Interview questions

A Technical Service Engineer was asked 3w ago
Q. How do you write Infrastructure as Code (IAC) for EC2?
Ans. 

Infrastructure as Code (IaC) for EC2 allows automated provisioning and management of AWS EC2 instances.

  • Use AWS CloudFormation to define EC2 resources in YAML or JSON.

  • Example: Define an EC2 instance in CloudFormation template.

  • Utilize Terraform for IaC, with HCL syntax to manage EC2 instances.

  • Example: 'resource "aws_instance" "example" { ami = "ami-123456" instance_type = "t2.micro" }'

  • Leverage AWS CDK (Cloud Develop...

View all Technical Service Engineer interview questions
An Associate PMO GENERALIST was asked 2mo ago
Q. What is your understanding of the latest technologies and tools used in PMO?
Ans. 

Familiarity with emerging technologies and tools enhances project management efficiency and effectiveness.

  • Agile methodologies (e.g., Scrum, Kanban) improve project flexibility and responsiveness.

  • Project management software (e.g., Jira, Trello) aids in task tracking and collaboration.

  • Data analytics tools (e.g., Tableau, Power BI) provide insights for informed decision-making.

  • Cloud-based solutions (e.g., Microsoft A...

An Associate PMO GENERALIST was asked 2mo ago
Q. What are the best practices in PMO?
Ans. 

Best practices in PMO enhance project management efficiency, alignment, and stakeholder engagement.

  • Establish clear governance structures to define roles and responsibilities, ensuring accountability.

  • Implement standardized project management methodologies (e.g., Agile, Waterfall) to maintain consistency across projects.

  • Utilize project management tools (e.g., Jira, Trello) for better tracking and collaboration among...

A Technical Service Engineer was asked 5mo ago
Q. Have you handled P1/P2 issues?
Ans. 

Yes, I have experience handling P1/P2 incidents in my previous roles.

  • Yes, I have handled multiple P1 incidents where immediate action was required to resolve critical issues impacting production systems.

  • I have also managed P2 incidents by prioritizing and troubleshooting to minimize impact on operations.

  • Examples include resolving server outages, database failures, and network connectivity issues under time pressur...

View all Technical Service Engineer interview questions
A Technical Service Engineer was asked 5mo ago
Q. Explain the boot process of Linux.
Ans. 

The Linux boot process involves several stages, including BIOS, bootloader, kernel initialization, and user space initialization.

  • BIOS (Basic Input/Output System) performs hardware initialization and loads bootloader

  • Bootloader (GRUB, LILO) loads the Linux kernel into memory

  • Kernel initializes devices, mounts the root filesystem, and starts user space processes

  • User space initialization involves starting system servic...

View all Technical Service Engineer interview questions
A Technical Service Engineer was asked 5mo ago
Q. Speak for five minutes on any topic.
Ans. 

The importance of cybersecurity in today's digital age

  • Cybersecurity is essential to protect sensitive data and prevent cyber attacks

  • Companies invest in cybersecurity measures to safeguard their networks and systems

  • Cybersecurity professionals use tools like firewalls, antivirus software, and encryption to secure data

  • Regular security audits and updates are crucial to stay ahead of evolving threats

  • Training employees ...

View all Technical Service Engineer interview questions
A Technical Service Engineer was asked 5mo ago
Q. What is a string?
Ans. 

A string is a sequence of characters used to represent text, enclosed in quotation marks.

  • A string can contain letters, numbers, symbols, and spaces

  • Strings are commonly used in programming to store and manipulate text data

  • Example: 'Hello, World!' is a string

View all Technical Service Engineer interview questions
Are these interview questions helpful?
A Software Developer was asked 8mo ago
Q. How do you handle exceptions in Java?
Ans. 

In Java, exceptions can be handled using try-catch blocks to catch and handle specific exceptions.

  • Use try-catch blocks to catch exceptions and handle them gracefully

  • Use multiple catch blocks to handle different types of exceptions

  • Use finally block to execute code regardless of whether an exception is thrown or not

  • Throw custom exceptions using throw keyword

View all Software Developer interview questions
A Software Developer was asked 8mo ago
Q. In Java 8, what is the difference between flatMap and map?
Ans. 

map transforms each element in a stream, while flatMap transforms each element into multiple elements

  • map applies a function to each element in a stream and returns a new stream of the results

  • flatMap applies a function that returns a stream for each element in the original stream, then flattens the streams into a single stream

  • Example: map - stream.map(x -> x * x), flatMap - stream.flatMap(str -> Arrays.stream(str.s...

View all Software Developer interview questions
A Software Developer was asked 8mo ago
Q. How do you handle ConcurrentModificationException?
Ans. 

ConcurrentModificationException occurs when a collection is modified while iterating over it.

  • Use Iterator to iterate over the collection instead of foreach loop.

  • If modification is necessary, use Iterator's remove() method instead of collection's remove() method.

  • Consider using synchronized collections or ConcurrentHashMap to avoid ConcurrentModificationException.

View all Software Developer interview questions

Fujitsu Interview Experiences

200 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain over all experience
  • Ans. 

    I have over 5 years of experience in software development, with expertise in Java, Python, and SQL.

    • 5+ years of experience in software development

    • Proficient in Java, Python, and SQL

    • Worked on various projects including web development and data analysis

    • Experience with Agile methodologies and version control systems like Git

  • Answered by AI
  • Q2. Asked question on Core and advance java topic
Round 2 - Technical 

(2 Questions)

  • Q1. Some advance topic of Java
  • Q2. DSA
Round 3 - HR 

(2 Questions)

  • Q1. Salary expectation
  • Q2. Relocation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - Aptitude Test 

Logical intelligence

Round 2 - Group Discussion 

Any information can be discussed.

Round 3 - Case Study 

A comprehensive analysis of an individual, group, situation, or phenomenon over an extended duration.

Round 4 - Assignment 

The reporter vanished while on assignment in the war zone.

Round 5 - One-on-one 

(1 Question)

  • Q1. Denoting or referring to a situation in which two parties come into direct contact, opposition, or correspondence

Interview Preparation Tips

Interview preparation tips for other job seekers - Clearly identify your career goals, utilize job search platforms and company websites, tailor your resume and cover letter for each application, actively network on professional platforms such as LinkedIn, attend career fairs, develop relevant skills, and maintain a strong online presence to showcase your professional brand.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Access Control activity
  • Q2. Vendor activities, supporting to admin team
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Dec 2024.

Round 1 - Technical 

(2 Questions)

  • Q1. Boot process of linux
  • Ans. 

    The Linux boot process involves several stages, including BIOS, bootloader, kernel initialization, and user space initialization.

    • BIOS (Basic Input/Output System) performs hardware initialization and loads bootloader

    • Bootloader (GRUB, LILO) loads the Linux kernel into memory

    • Kernel initializes devices, mounts the root filesystem, and starts user space processes

    • User space initialization involves starting system services an...

  • Answered by AI
  • Q2. Have u handle P1/P2?
  • Ans. 

    Yes, I have experience handling P1/P2 incidents in my previous roles.

    • Yes, I have handled multiple P1 incidents where immediate action was required to resolve critical issues impacting production systems.

    • I have also managed P2 incidents by prioritizing and troubleshooting to minimize impact on operations.

    • Examples include resolving server outages, database failures, and network connectivity issues under time pressure.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I suggest you not to join because projects are limited nd bench policy is of only 45 day afterwards you have to serve notice period nd meanwhile if work is not matching to your skills nd you say NO to work they will immediately fire you without any listening to your carrer chance nd growth
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is Dependency Injection?
  • Ans. 

    Dependency Injection is a design pattern in which components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q2. How to handle exception in java
  • Ans. 

    In Java, exceptions can be handled using try-catch blocks to catch and handle specific exceptions.

    • Use try-catch blocks to catch exceptions and handle them gracefully

    • Use multiple catch blocks to handle different types of exceptions

    • Use finally block to execute code regardless of whether an exception is thrown or not

    • Throw custom exceptions using throw keyword

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. In Java8, different between flatmap and map
  • Ans. 

    map transforms each element in a stream, while flatMap transforms each element into multiple elements

    • map applies a function to each element in a stream and returns a new stream of the results

    • flatMap applies a function that returns a stream for each element in the original stream, then flattens the streams into a single stream

    • Example: map - stream.map(x -> x * x), flatMap - stream.flatMap(str -> Arrays.stream(str.split(...

  • Answered by AI
  • Q2. How to handle the ConcureentModificationException
  • Ans. 

    ConcurrentModificationException occurs when a collection is modified while iterating over it.

    • Use Iterator to iterate over the collection instead of foreach loop.

    • If modification is necessary, use Iterator's remove() method instead of collection's remove() method.

    • Consider using synchronized collections or ConcurrentHashMap to avoid ConcurrentModificationException.

  • Answered by AI

Skills evaluated in this interview

SAP MM Interview Questions & Answers

user image Kiran K

posted on 24 Jun 2025

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

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

  • Q1. Everey tihg is fine in these interview process
  • Q2. Everey thing is fine in these interview process
  • Q3. Tell me breafuley about your self
  • Ans. 

    Dynamic professional with a background in project management and a passion for driving efficiency and innovation in teams.

    • Over 5 years of experience in project management, successfully leading cross-functional teams to deliver projects on time and within budget.

    • Skilled in Agile methodologies, having implemented Scrum practices that improved team productivity by 30%.

    • Strong communication skills, demonstrated through regu...

  • Answered by AI
  • Q4. Tell me about your self

Interview Preparation Tips

Interview preparation tips for other job seekers - ok
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

  • Q1. What is Primary key, Unique key
  • Ans. 

    Primary keys uniquely identify records in a table, while unique keys ensure all values in a column are distinct.

    • Primary Key: A column or set of columns that uniquely identifies each row in a table.

    • Example: In a 'Users' table, 'UserID' can be a primary key.

    • Unique Key: A constraint that ensures all values in a column are unique, but allows one NULL value.

    • Example: In a 'Users' table, 'Email' can be a unique key, allowing ...

  • Answered by AI
  • Q2. Components of Java
  • Ans. 

    Java consists of several key components including the Java Development Kit, Java Runtime Environment, and Java Virtual Machine.

    • Java Development Kit (JDK): A software development kit for developing Java applications. Example: JDK 17.

    • Java Runtime Environment (JRE): Provides libraries and components necessary to run Java applications. Example: JRE 8.

    • Java Virtual Machine (JVM): An abstract machine that enables Java bytecod...

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Linux and vmware
Round 2 - Technical 

(1 Question)

  • Q1. Linux and VMware
Round 3 - HR 

(1 Question)

  • Q1. Background details
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Behavioral 

(2 Questions)

  • Q1. About previous work experience
  • Q2. Few technical level questions
Round 2 - Technical 

(2 Questions)

  • Q1. OpsRamp Implementation
  • Q2. Questions related to Nextgen Gateway
Round 3 - HR 

(2 Questions)

  • Q1. Shift timings and other company details
  • Q2. A short brief of salary structure
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. About yourself and Recent project
  • Q2. Why you are shifting
  • Ans. 

    I am shifting to seek new challenges, enhance my skills, and contribute to innovative projects in a dynamic environment.

    • Desire for professional growth: I want to expand my skill set and take on more responsibilities.

    • Interest in new technologies: I'm excited about working with modern frameworks and tools that I haven't used before.

    • Cultural fit: I believe the new company aligns better with my values and work style.

    • Career...

  • Answered by AI

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Fujitsu?
Ask anonymously on communities.

Fujitsu Interview FAQs

How many rounds are there in Fujitsu interview?
Fujitsu interview process usually has 2-3 rounds. The most common rounds in the Fujitsu interview process are Technical, HR and Resume Shortlist.
How to prepare for Fujitsu 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 Fujitsu. The most common topics and skills that interviewers at Fujitsu expect are Troubleshooting, Japanese, Javascript, Monitoring and Linux.
What are the top questions asked in Fujitsu interview?

Some of the top questions asked at the Fujitsu interview -

  1. Explain final, finally and finalize in Java? Where do we use final? Is String c...read more
  2. What are the different layers of Springboot application? What are the webserve...read more
  3. what are the different types of references in Java? When do we use th...read more
What are the most common questions asked in Fujitsu HR round?

The most common HR questions asked in Fujitsu interview are -

  1. What are your strengths and weakness...read more
  2. Why are you looking for a chan...read more
  3. What is your family backgrou...read more
How long is the Fujitsu interview process?

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

Tell us how to improve this page.

Overall Interview Experience Rating

3.9/5

based on 187 interview experiences

Difficulty level

Easy 21%
Moderate 72%
Hard 7%

Duration

Less than 2 weeks 68%
2-4 weeks 21%
4-6 weeks 6%
6-8 weeks 5%
More than 8 weeks 1%
View more

Interview Questions from Similar Companies

Accenture Interview Questions
3.8
 • 8.6k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Genpact Interview Questions
3.8
 • 3.4k Interviews
LTIMindtree Interview Questions
3.7
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.5k Interviews
DXC Technology Interview Questions
3.7
 • 839 Interviews
Nagarro Interview Questions
4.0
 • 793 Interviews
View all

Fujitsu Reviews and Ratings

based on 2.6k reviews

3.8/5

Rating in categories

3.5

Skill development

4.0

Work-life balance

3.5

Salary

3.6

Job security

3.8

Company culture

3.1

Promotions

3.5

Work satisfaction

Explore 2.6k Reviews and Ratings
Research Manager

Bangalore / Bengaluru

10-15 Yrs

Not Disclosed

Fujitsu Hiring_ SAP Basis and HANA Consultant

Hyderabad / Secunderabad,

Pune

5-9 Yrs

Not Disclosed

Networking & Communications

Chennai,

Bangalore / Bengaluru

5-7 Yrs

₹ 10-15 LPA

Explore more jobs
Technical Service Engineer
1.2k salaries
unlock blur

₹2.3 L/yr - ₹14 L/yr

Application Developer
1k salaries
unlock blur

₹2.1 L/yr - ₹15.4 L/yr

Assistant Application Developer
696 salaries
unlock blur

₹2.5 L/yr - ₹7 L/yr

Assistant Technical Service Engineer
633 salaries
unlock blur

₹2.5 L/yr - ₹7.8 L/yr

Associate Application Developer
565 salaries
unlock blur

₹3.8 L/yr - ₹15.7 L/yr

Explore more salaries
Compare Fujitsu with

Accenture

3.8
Compare

TCS

3.6
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview