Upload Button Icon Add office photos

Fujitsu

Compare button icon Compare button icon Compare

Filter interviews by

Fujitsu Senior Application Developer Interview Questions and Answers

Updated 13 Mar 2022

16 Interview questions

A Senior Application Developer was asked
Q. What are some standard Java pre-defined functional interfaces?
Ans. 

Standard Java pre-defined functional interfaces include Function, Consumer, Predicate, Supplier, etc.

  • Function: Represents a function that accepts one argument and produces a result. Example: Function<Integer, String>

  • Consumer: Represents an operation that accepts a single input argument and returns no result. Example: Consumer<String>

  • Predicate: Represents a predicate (boolean-valued function) of one arg...

A Senior Application Developer was asked
Q. What are the concurrency strategies available in Hibernate?
Ans. 

Hibernate provides several concurrency strategies like optimistic locking, pessimistic locking, and versioning.

  • Optimistic locking: Allows multiple transactions to read and write to the database without locking the data. It checks for conflicts before committing the transaction.

  • Pessimistic locking: Locks the data when a transaction reads it, preventing other transactions from accessing it until the lock is released...

Senior Application Developer Interview Questions Asked at Other Companies

asked in Oracle
Q1. LRU Cache Design Question Design a data structure for a Least Rec ... read more
asked in Oracle
Q2. Convert a Binary Tree to its Sum Tree Given a binary tree of inte ... read more
asked in Fujitsu
Q3. What do you understand by autowiring in Spring Boot, and can you ... read more
asked in Oracle
Q4. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Fujitsu
Q5. Why is Java considered platform independent, while the Java Virtu ... read more
A Senior Application Developer was asked
Q. Why are Java Strings immutable in nature?
Ans. 

Java Strings are immutable to ensure data integrity, thread safety, and security.

  • Immutable strings prevent accidental modification of data.

  • String pool optimization is possible due to immutability.

  • Thread safety is ensured as strings cannot be modified concurrently.

  • Security is enhanced as sensitive information cannot be altered.

A Senior Application Developer was asked
Q. Why is Java considered platform independent, while the Java Virtual Machine (JVM) is platform dependent?
Ans. 

Java code is compiled into bytecode which can run on any platform with JVM, making it platform independent. JVM itself is platform dependent as it needs to be installed on each platform to execute the bytecode.

  • Java code is compiled into bytecode, which is a platform-independent intermediate code

  • JVM interprets and executes the bytecode on different platforms

  • JVM needs to be installed on each platform to run Java pro...

A Senior Application Developer was asked
Q. How many bean scopes are supported by Spring?
Ans. 

Spring supports five bean scopes: singleton, prototype, request, session, and application.

  • Singleton scope: Default scope, only one instance per Spring container

  • Prototype scope: New instance created each time bean is requested

  • Request scope: Bean is created once per HTTP request

  • Session scope: Bean is created once per HTTP session

  • Application scope: Bean is created once per ServletContext

🔥 Asked by recruiter 2 times
A Senior Application Developer was asked
Q. What does the @SpringBootApplication annotation do internally?
Ans. 

The @SpringBootApplication annotation is used to mark a configuration class that declares one or more @Bean methods and also triggers auto-configuration and component scanning.

  • Marks a class as a Spring Boot application

  • Enables auto-configuration of the Spring application context

  • Performs component scanning for Spring components

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

A Senior Application Developer was asked
Q. What do you understand by autowiring in Spring Boot, and can you name the different modes of autowiring?
Ans. 

Autowiring in Spring Boot is a feature that allows Spring to automatically inject dependencies into a Spring bean.

  • Autowiring eliminates the need for explicit bean wiring in the Spring configuration file.

  • There are different modes of autowiring in Spring Boot: 'byName', 'byType', 'constructor', 'autodetect', and 'no'.

  • For example, 'byName' autowiring matches and injects a bean based on the name of the bean property.

Are these interview questions helpful?
A Senior Application Developer was asked
Q. Can you explain the difference between setMaxResults() and setFetchSize() in a Query?
Ans. 

setMaxResults() limits the number of results returned by a query, while setFetchSize() determines the number of rows fetched at a time from the database.

  • setMaxResults() is used to limit the number of results returned by a query.

  • setFetchSize() determines the number of rows fetched at a time from the database.

  • setMaxResults() is typically used for pagination purposes, while setFetchSize() can improve performance by r...

A Senior Application Developer was asked
Q. What is a classloader in Java?
Ans. 

A classloader in Java is a part of the Java Runtime Environment that dynamically loads Java classes into the Java Virtual Machine.

  • Classloaders are responsible for loading classes at runtime based on the fully qualified name of the class.

  • There are different types of classloaders in Java such as Bootstrap Classloader, Extension Classloader, and Application Classloader.

  • Classloaders follow a delegation model where a c...

A Senior Application Developer was asked
Q. How is an abstract class different from an interface?
Ans. 

Abstract class can have method implementations, while interface cannot.

  • Abstract class can have method implementations, while interface cannot

  • Abstract class can have constructors, while interface cannot

  • A class can implement multiple interfaces, but can only inherit from one abstract class

Fujitsu Senior Application Developer Interview Experiences

2 interviews found

I appeared for an interview in Apr 2021.

Round 1 - Video Call 

(8 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round started slow with some basic fundamental questions around OOPS and then paced up higher to some more advanced questions around Java 8 and Java in general.

  • Q1. Can you explain the SOLID principles in Object-Oriented Design?
  • Ans. 

    SOLID principles are a set of five design principles in object-oriented programming to make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable...

  • Answered by AI
  • Q2. What is abstraction in Object-Oriented Programming?
  • Ans. 

    Abstraction in OOP is the concept of hiding complex implementation details and showing only the necessary features of an object.

    • Abstraction allows developers to focus on what an object does rather than how it does it

    • It helps in reducing complexity and improving code reusability

    • Example: In a car object, we only need to know how to drive it (interface) without worrying about the internal engine workings (implementation)

  • Answered by AI
  • Q3. How is an abstract class different from an interface?
  • Ans. 

    Abstract class can have method implementations, while interface cannot.

    • Abstract class can have method implementations, while interface cannot

    • Abstract class can have constructors, while interface cannot

    • A class can implement multiple interfaces, but can only inherit from one abstract class

  • Answered by AI
  • Q4. What is a classloader in Java?
  • Ans. 

    A classloader in Java is a part of the Java Runtime Environment that dynamically loads Java classes into the Java Virtual Machine.

    • Classloaders are responsible for loading classes at runtime based on the fully qualified name of the class.

    • There are different types of classloaders in Java such as Bootstrap Classloader, Extension Classloader, and Application Classloader.

    • Classloaders follow a delegation model where a classl...

  • Answered by AI
  • Q5. Why are Java Strings immutable in nature?
  • Ans. 

    Java Strings are immutable to ensure data integrity, thread safety, and security.

    • Immutable strings prevent accidental modification of data.

    • String pool optimization is possible due to immutability.

    • Thread safety is ensured as strings cannot be modified concurrently.

    • Security is enhanced as sensitive information cannot be altered.

  • Answered by AI
  • Q6. Why is Java considered platform independent, while the Java Virtual Machine (JVM) is platform dependent?
  • Ans. 

    Java code is compiled into bytecode which can run on any platform with JVM, making it platform independent. JVM itself is platform dependent as it needs to be installed on each platform to execute the bytecode.

    • Java code is compiled into bytecode, which is a platform-independent intermediate code

    • JVM interprets and executes the bytecode on different platforms

    • JVM needs to be installed on each platform to run Java programs

    • ...

  • Answered by AI
  • Q7. What are some standard Java pre-defined functional interfaces?
  • Ans. 

    Standard Java pre-defined functional interfaces include Function, Consumer, Predicate, Supplier, etc.

    • Function: Represents a function that accepts one argument and produces a result. Example: Function<Integer, String>

    • Consumer: Represents an operation that accepts a single input argument and returns no result. Example: Consumer<String>

    • Predicate: Represents a predicate (boolean-valued function) of one argument...

  • Answered by AI
  • Q8. What are the advantages of using the Optional class in Java?
  • Ans. 

    Optional class in Java provides a way to handle null values more effectively.

    • Prevents NullPointerException by explicitly checking for null values

    • Encourages developers to handle null values properly

    • Improves code readability and maintainability

    • Helps avoid unnecessary null checks and nested if statements

  • Answered by AI
Round 2 - Video Call 

(8 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round had questions from Microservices , Spring Boot and Hibernate. The interviewer was quite freindly and also helped
wherever I was stuck.

  • Q1. How many bean scopes are supported by Spring?
  • Ans. 

    Spring supports five bean scopes: singleton, prototype, request, session, and application.

    • Singleton scope: Default scope, only one instance per Spring container

    • Prototype scope: New instance created each time bean is requested

    • Request scope: Bean is created once per HTTP request

    • Session scope: Bean is created once per HTTP session

    • Application scope: Bean is created once per ServletContext

  • Answered by AI
  • Q2. What do you understand by autowiring in Spring Boot, and can you name the different modes of autowiring?
  • Ans. 

    Autowiring in Spring Boot is a feature that allows Spring to automatically inject dependencies into a Spring bean.

    • Autowiring eliminates the need for explicit bean wiring in the Spring configuration file.

    • There are different modes of autowiring in Spring Boot: 'byName', 'byType', 'constructor', 'autodetect', and 'no'.

    • For example, 'byName' autowiring matches and injects a bean based on the name of the bean property.

  • Answered by AI
  • Q3. Can you explain the @RestController annotation in Spring Boot?
  • Ans. 

    The @RestController annotation in Spring Boot is used to define a class as a RESTful controller.

    • Used to create RESTful web services in Spring Boot

    • Combines @Controller and @ResponseBody annotations

    • Eliminates the need to annotate each method with @ResponseBody

  • Answered by AI
  • Q4. What does the @SpringBootApplication annotation do internally?
  • Ans. 

    The @SpringBootApplication annotation is used to mark a configuration class that declares one or more @Bean methods and also triggers auto-configuration and component scanning.

    • Marks a class as a Spring Boot application

    • Enables auto-configuration of the Spring application context

    • Performs component scanning for Spring components

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

  • Answered by AI
  • Q5. Can you explain the difference between setMaxResults() and setFetchSize() in a Query?
  • Ans. 

    setMaxResults() limits the number of results returned by a query, while setFetchSize() determines the number of rows fetched at a time from the database.

    • setMaxResults() is used to limit the number of results returned by a query.

    • setFetchSize() determines the number of rows fetched at a time from the database.

    • setMaxResults() is typically used for pagination purposes, while setFetchSize() can improve performance by reduci...

  • Answered by AI
  • Q6. What are the concurrency strategies available in Hibernate?
  • Ans. 

    Hibernate provides several concurrency strategies like optimistic locking, pessimistic locking, and versioning.

    • Optimistic locking: Allows multiple transactions to read and write to the database without locking the data. It checks for conflicts before committing the transaction.

    • Pessimistic locking: Locks the data when a transaction reads it, preventing other transactions from accessing it until the lock is released.

    • Vers...

  • Answered by AI
  • Q7. Can you explain the working of Microservice Architecture?
  • Ans. 

    Microservice Architecture is an architectural style that structures an application as a collection of loosely coupled services.

    • Microservices are small, independent services that work together to form a complete application.

    • Each microservice is responsible for a specific business function and can be developed, deployed, and scaled independently.

    • Communication between microservices is typically done through APIs.

    • Microserv...

  • Answered by AI
  • Q8. What issues are generally addressed by Spring Cloud?
  • Ans. 

    Spring Cloud addresses issues related to microservices architecture and cloud-native applications.

    • Service discovery and registration

    • Load balancing

    • Circuit breakers

    • Distributed messaging

    • Configuration management

    • Fault tolerance

    • Monitoring and tracing

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

This was a Technical Cum HR round where I was first asked some basic Java related concepts and then we discussed
about my expectations from the company , learnings and growth in the forthcomig years. I would suggest be honest and
try to communicate your thoughts properly in these type of rounds to maximise your chances of getting selected.

Interview Preparation Tips

Eligibility criteriaAbove 2 years of experienceFujitsu interview preparation:Topics to prepare for the interview - Java , Microservices, Spring Boot, Hibernate, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Basic concepts of core java like OOPS principles and collection based questions.
  • Q2. Basic questions on Spring and Hibernate if mentioned in Resume.
  • Q3. Microservices and springboot related questions if shown interest in it.
  • Q4. Can be asked some SQLs as well.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview went above average and I was not too sure for a positive feedback. However, if there is an urgent requirement then there is high chance of selection.

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.

Interview questions from similar companies

I applied via Walk-in and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic Programming questions.
  • Q2. Fibonacci program
  • Ans. 

    A Fibonacci program generates a sequence where each number is the sum of the two preceding ones, starting from 0 and 1.

    • The Fibonacci sequence starts with 0 and 1.

    • Each subsequent number is the sum of the previous two: 0, 1, 1, 2, 3, 5, 8, 13, ...

    • Common implementations include recursive, iterative, and using dynamic programming.

    • Example of an iterative approach in Python: ```python def fibonacci(n): a, b = 0, 1 ...

  • Answered by AI
  • Q3. OOPS concepts.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic OOPS concepts and basic programs.

I applied via LinkedIn and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Easy logical questions
basic quant

Round 2 - Coding Test 

Easy level coding questions
Counting frequency of alphabets

Interview Preparation Tips

Interview preparation tips for other job seekers - Just go through the basics of javascript
Hoisting

Interview Questionnaire 

1 Question

  • Q1. How to use multiple dispatch in redux?
  • Ans. 

    Multiple dispatch is not a feature of Redux. It can be achieved using middleware or custom logic.

    • Middleware like redux-thunk or redux-saga can be used to dispatch multiple actions based on a single action.

    • Custom logic can be implemented in the reducer to handle multiple actions based on a single action type.

    • For example, a single 'ADD_ITEM' action can trigger multiple actions like 'UPDATE_TOTAL', 'UPDATE_HISTORY', etc.

    • M...

  • Answered by AI

Skills evaluated in this interview

I applied via Naukri.com and was interviewed before Sep 2019. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. IQ Test
  • Q2. Machine Test
  • Q3. Face To Face

Interview Preparation Tips

Interview preparation tips for other job seekers - basically there are 3 rounds:-
1. IQ Test
2. Machine Test
3. Face to Face

IQ Test is not so tough but prepare well Machine Test
Machine Test Question are like :-
Q.1 - We declare a variable in C++ like "is_this_a_variable" and in Java like "IsThisAVariable". There is underscore in between every word and first alphabet of every word is in lowercase in C++ and in Java first alphabet is in capital without underscore. Create a program in which if user input a string in a C++ variable format it will convert the input in java variable format.

Q2. Count the frequency of a string.
user input string - pqhphi
output-
p - 2
q - 1
h - 2
i - 1

Be strong in algorithms and data structure.

I applied via Walk-in and was interviewed before Sep 2019. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1.Technical Ques(OOPS Concept)and 2. Area of Interest 3. About Company 4. more

Interview Preparation Tips

Interview preparation tips for other job seekers - Hello Folks,
Sharing some tips while facing Interview Assessment or GD Round Assessment.
1. Be Confident always give the answer what they ask for, Never connect your answer with different topic.
2. Always go through Company Portal or wiki about their Operation & Function.
3. Always have positive vibes that whatever yes or No, You will surely gain something.
All the Best..!!
Are these interview questions helpful?

Interview Questionnaire 

1 Question

  • Q1. All about SQL joins,data warehouse.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared and answer only if you know the concept clearly.

I applied via Naukri.com and was interviewed before Apr 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I have visited interview location on morning 7am DLF block Hyderabad. Buy my interview was taken in evening 6:45pm. That was not an interview test it was a patience test.

Interview Questionnaire 

3 Questions

  • Q1. Tell me something about yourself
  • Ans. 

    I am a passionate software developer with 5 years of experience in developing web applications using various technologies.

    • 5 years of experience in software development

    • Proficient in developing web applications

    • Skilled in using various technologies

    • Passionate about coding and problem-solving

  • Answered by AI
  • Q2. What is the difference between encapsulation and polymorphism?
  • Q3. What do you mean by deadlock in OS?
  • Ans. 

    Deadlock is a situation in which two or more processes are unable to proceed because each is waiting for the other to release a resource.

    • Deadlock occurs when two or more processes are stuck in a circular waiting state.

    • It happens when processes compete for resources and each process holds a resource that another process needs.

    • Four necessary conditions for deadlock are mutual exclusion, hold and wait, no preemption, and ...

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: We were asked to solve a questionnaire containing 25 questions based on logical reasoning and basic mathematics. We went to the test center in their recruitment center where there were many desktops for the candidates to sit and give the test. At the entrance, they checked the letter we got from them to authenticate us.Then they gave us a login ID and password. Exactly when the test started, the portal became active and we were asked to enter the credentials. I completed the test in half the time as it was pretty easy and straightforward.
Tips: Practice simple aptitude questions for greater speed and accuracy.
Duration: 1 hour
Total Questions: 20

Round: Group Discussion
Experience: Ten candidates who were shortlisted from the written test attended the group discussion. The topic given to us was fairly simple and lucky for me, I used to work as an anchor, and being a strong feminist person, I had a lot of valid points to put forward. I was the one to start the discussion, and I felt I was the best speaker there. The topic was something that I follow regularly, yet I came across a few unique points from the other candidates.
Tips: Improve your English speaking skills. Be assertive and speak concisely.
Duration: 15 minutes

Round: HR Interview
Experience: The interview basically revolved around this one question which had a few follow-up questions, such as who all are there in my family, what are my strengths and weaknesses, and why am I fit for this job.
Tips: Be confident and honest about yourself.

Round: Technical Interview
Experience: I tried to be as calm and confident as possible during the whole of the interview

College Name: Guru Nanak Institute of Technology (GNIT)

Skills evaluated in this interview

Fujitsu Interview FAQs

How to prepare for Fujitsu Senior Application Developer 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 Coding, Javascript, Management, Python and SQL.
What are the top questions asked in Fujitsu Senior Application Developer interview?

Some of the top questions asked at the Fujitsu Senior Application Developer interview -

  1. Microservices and springboot related questions if shown interest in ...read more
  2. Basic concepts of core java like OOPS principles and collection based questions...read more
  3. Basic questions on Spring and Hibernate if mentioned in Resu...read more

Tell us how to improve this page.

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 Senior Application Developer Salary
based on 423 salaries
₹10 L/yr - ₹29 L/yr
7% more than the average Senior Application Developer Salary in India
View more details

Fujitsu Senior Application Developer Reviews and Ratings

based on 61 reviews

3.5/5

Rating in categories

3.0

Skill development

3.9

Work-life balance

3.4

Salary

3.5

Job security

3.6

Company culture

3.2

Promotions

3.1

Work satisfaction

Explore 61 Reviews and Ratings
Technical Service Engineer
1.2k salaries
unlock blur

₹2.3 L/yr - ₹16 L/yr

Application Developer
1k salaries
unlock blur

₹2.2 L/yr - ₹16 L/yr

Assistant Application Developer
689 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