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. 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. 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.

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 Oracle
Q3. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Fujitsu
Q4. What do you understand by autowiring in Spring Boot, and can you ... 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. 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

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...

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

What are the roles & responsibilities of a Senior Application Developer at Fujitsu?

Application Development

  • Design and develop high-quality applications
  • Participate in all phases of software engineering life cycle

Read full roles & responsibilities

A Senior Application Developer was asked
Q. 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 (implementat...

Fujitsu HR Interview Questions

28 questions and answers

Q. Why are you learning the Japanese language?
Q. What is your future goal?
Q. Tell me about how you handle critical situations.
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...

Are these interview questions helpful?
🔥 Asked by recruiter 2 times
A Senior Application Developer was asked
Q. 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

A Senior Application Developer was asked
Q. 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

🔥 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

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 Hub
4d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Fujitsu?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. How to use multiple dispatch in redux?

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Basic java, core java

Interview Questionnaire 

1 Question

  • Q1. In C# --> Abstraction, Interface , Abstract Method, Abstract Class, Polymorphisms, Encapsulation ,Inheritance, Serialization,

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before May 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Java Spring Boot Structure
  • Q2. Design a complete solution with Java Spring boot, Spring Data, DB Integration
  • Q3. OOPS Concepts
  • Q4. Maven Build and Deployment
  • Q5. Angular build and deployment

Interview Preparation Tips

Interview preparation tips for other job seekers - Be yourself and answer exactly to the point.
No hamming or going around.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Aug 2020. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Aws vpc gateway questions, devops drawback
  • Q2. Interfaces in oops
  • Ans. 

    Interfaces define a contract for classes to implement certain methods and properties.

    • Interfaces allow for polymorphism and loose coupling.

    • Classes can implement multiple interfaces.

    • Interfaces cannot be instantiated on their own.

    • Interfaces can have default method implementations.

    • Interfaces can be used to enforce design patterns like the adapter pattern.

  • Answered by AI
  • Q3. Meta programing

Interview Preparation Tips

Interview preparation tips for other job seekers - Not at all good experience. Looks like the structure is baffled now after pandemic hit. First of all HR people, they have so much attitude that you can't even ask them any query regarding your JD or project. Secondly there are many rounds but it all depends upon the interviewer mood only and only. Because you are not hired for a direct project, so if the interviewer is egoistic and high attitude, then it's difficult to get positive feedback even if round well all well. Disappointing experience. Suggestion would be to put right people for talent selection. If people are kept in similar way, every new candidate might have negative experience.

Interview Questionnaire 

2 Questions

  • Q1. Tell about you
  • Q2. What is computer networking

Interview Preparation Tips

Interview preparation tips for other job seekers - 1 round will be aptitude test and 2 nd round will be group discussion and finally there will be technical hr and general hr round

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. Basic questions related to skillset

Software Developer Interview Questions & Answers

Accenture user image Mutyalamma Siddannagari

posted on 2 Nov 2021

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

Interview Questionnaire 

1 Question

  • Q1. Related to job role

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall interview was good. most of the questions they have asked basics of SQL, SSIS transformations etc.

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. Can be asked some SQLs as we...read more
  2. Microservices and springboot related questions if shown interest in ...read more
  3. Basic concepts of core java like OOPS principles and collection based questions...read more

Tell us how to improve this page.

Fujitsu Senior Application Developer Salary
based on 416 salaries
₹14 L/yr - ₹25.9 L/yr
5% more than the average Senior Application Developer Salary in India
View more details

Fujitsu Senior Application Developer Reviews and Ratings

based on 63 reviews

3.6/5

Rating in categories

3.1

Skill development

4.0

Work-life balance

3.5

Salary

3.4

Job security

3.6

Company culture

3.2

Promotions

3.2

Work satisfaction

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

₹2.3 L/yr - ₹14 L/yr

Application Developer
1k salaries
unlock blur

₹1.3 L/yr - ₹15.7 L/yr

Assistant Application Developer
695 salaries
unlock blur

₹2.5 L/yr - ₹7 L/yr

Assistant Technical Service Engineer
602 salaries
unlock blur

₹2.5 L/yr - ₹7.9 L/yr

Associate Application Developer
574 salaries
unlock blur

₹5.6 L/yr - ₹13.6 L/yr

Explore more salaries
Compare Fujitsu with

Accenture

3.7
Compare

TCS

3.5
Compare

Cognizant

3.7
Compare

Capgemini

3.7
Compare
write
Share an Interview