Upload Button Icon Add office photos

Fujitsu

Compare button icon Compare button icon Compare

Filter interviews by

Fujitsu Associate Software Engineer Interview Questions and Answers

Updated 23 Dec 2024

Fujitsu Associate Software Engineer Interview Experiences

2 interviews found

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

I applied via Recruitment Consultant and was interviewed in Dec 2021. There were 4 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1st Round: 2 simple code on array and string and question on annotation and spring boot
  • Q2. 2nd Round: 1 Code you have total 100 people and each one has some number need to find a person whos no is divisible by 3 and check number incremented by 5 not all number eg: check 1%3 then need to check 6 ...

Interview Preparation Tips

Interview preparation tips for other job seekers - be prepared for java basic codes and spring boot

Associate Software Engineer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Triplets with Given Sum Problem Given an array or list ARR consis ... read more
asked in Clarivate
Q2. Best Time to Buy and Sell Stock II Problem Statement Given the st ... read more
Q3. Intersection of Two Arrays II Given two integer arrays ARR1 and A ... read more
asked in CGI Group
Q4. Frog Jump Problem Statement A frog is positioned on the first ste ... read more
asked in Gainsight
Q5. Connecting Ropes with Minimum Cost You are given 'N' ropes, each ... read more

Interview questions from similar companies

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

I applied via campus placement at Bangalore Institute Of Technology (BIT) and was interviewed in Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

40 questions-aptitude test followed by a technical test comprising 10 questions.

Round 2 - Technical 

(1 Question)

  • Q1. Add two linked list minimum cost path print all the nodes in a tree except the leaf nodes.
  • Ans. 

    The question asks for adding two linked lists, finding the minimum cost path, and printing all nodes in a tree except the leaf nodes.

    • To add two linked lists, traverse both lists simultaneously and add corresponding nodes.

    • To find the minimum cost path, use algorithms like Dijkstra's or A*.

    • To print all nodes in a tree except the leaf nodes, perform a depth-first traversal and print non-leaf nodes.

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Mix of hr + technical questions. Didn't ask much deep in technical questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - I got rejected here

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

We have attempt all questions in that test.

Round 2 - Assignment 

They will give some questions based on technical side.

I applied via Campus Placement

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 tips
Round 2 - Aptitude Test 

Online test on cocubes which contains 60 questions in 60 minutes.

Round 3 - Technical 

(1 Question)

  • Q1. Basic questions and sudo code
Round 4 - Behavioral 

(1 Question)

  • Q1. Basically scenario based Logical Questions
Round 5 - HR 

(1 Question)

  • Q1. It is just formality asking you about are your flexibility and salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - I got this job during my campus placement. And I must save this is the best place for fresher to learn and explode new things
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Gokaraju Rangaraju Institute of Engineering and Technology, Hyderabad and was interviewed before Aug 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

MCQS based on Java and some psuedo codes to be solved

Round 2 - Coding Test 

3 questions are given ,need to write the code or instructions how to solve that problem

Round 3 - One-on-one 

(3 Questions)

  • Q1. Acid Properties
  • Ans. 

    ACID properties are a set of properties that guarantee database transactions are processed reliably.

    • Atomicity: Transactions are either fully completed or fully aborted.

    • Consistency: Database remains in a consistent state before and after the transaction.

    • Isolation: Transactions are isolated from each other until they are completed.

    • Durability: Once a transaction is committed, changes are permanent even in case of system f

  • Answered by AI
  • Q2. Second Largest element in array
  • Ans. 

    Find the second largest element in an array of strings.

    • Sort the array in descending order

    • Access the element at index 1 to get the second largest element

  • Answered by AI
  • Q3. Some HR questions

Skills evaluated in this interview

Round 1 - Technical 

(1 Question)

  • Q1. What is object oriented programming language in java
  • Ans. 

    Java is an object-oriented programming language that uses classes and objects to organize and structure code.

    • Java is based on the concept of classes and objects

    • Classes define the properties and behaviors of objects

    • Objects are instances of classes that can interact with each other

    • Java supports encapsulation, inheritance, and polymorphism

    • Examples of object-oriented programming in Java include creating a class for a car w...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Dividing programs into class or objects is called oops .
Oops are classified into following types they are:
1)class:
Class is template from which objects are created. Collection of objects is called object.It is logical Entity
2. Object :
It is an instance of class. It has some states and behaviour. It is both physical and logical Entity .
3. Abstraction:
Hiding the implementation part and showing the functionality is called Abstraction.
Ex:sending SMS where we type text but don't the internal working.
Abstraction can be achieved by
Abstract classes and interfaces
4.Encapuslation:
Binding up of code and data or Variables and methods together is called Encapsulation
Ex: capsule different medicines are binded in it
We can achieve it by getter and setter methods
5) polymorphism:
Performing the same task in different ways is called polymorphism
It can be achieved by method over loading complie time polymorphism and run time polymorphism method overriding.
a) method overloading:
Same method name but different parameters is known as method overloading
b) method overriding:
Same method name & same parameters in sub class and super class is called method overriding.
6.Inheritance:
Acquiring properties from one class to another class is called inheritance
1) single inheritance :
Single child class inherits characteristics of single parent class
Multilevel inheritance
2) for example, a Child inherits behavior from his father, and the father has inherited characteristics from his father.
3) hierarchical inheritance:
One class is inherited by multiple subclasses
4) multiple inheritance:
One class inherits features of more than one base class and is not supported in Java, but the class can implement more than one interface.
5)Hybrid Inheritance: This is a combination of single and multiple inheritances.

7)

Skills evaluated in this interview

I applied via Referral and was interviewed in Mar 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(3 Questions)

  • Q1. Application of python and features of python
  • Ans. 

    Python is a high-level programming language used for web development, data analysis, artificial intelligence, and automation.

    • Python is easy to learn and has a simple syntax

    • Python supports multiple programming paradigms such as object-oriented, functional, and procedural programming

    • Python has a vast standard library with modules for various tasks such as web development, data analysis, and machine learning

    • Python is used...

  • Answered by AI
  • Q2. Data structures types
  • Ans. 

    Data structures are ways of organizing and storing data in a computer so that it can be accessed and used efficiently.

    • Common data structures include arrays, linked lists, stacks, queues, trees, and graphs.

    • Arrays are used to store a collection of elements of the same data type.

    • Linked lists are used to store a collection of elements that are not necessarily stored in contiguous memory locations.

    • Stacks and queues are used...

  • Answered by AI
  • Q3. Linear Search Binary search
Round 3 - HR 

(4 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. What are your strengths and weaknesses?
  • Q4. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Best companies in job seekers.lewrn all interview questions

Skills evaluated in this interview

I applied via Naukri.com

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Your wish to any questions
Round 3 - HR 

(5 Questions)

  • Q1. What is your family background?
  • Q2. What are your salary expectations?
  • Q3. Where do you see yourself in 5 years?
  • Q4. What are your strengths and weaknesses?
  • Q5. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Friend advice to i create for job seekers

I applied via Company Website and was interviewed in Mar 2021. There were 5 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. 1st round Amcat Apptitude and 2 intermediate programs..
  • Q2. 2nd round techincal+managerical round. Question Based on your resume. Mostly they asked me on java, jdbc, java design pattern, sql..
  • Q3. In managerical round general questions.
  • Q4. Final Hr round.

Interview Preparation Tips

Interview preparation tips for other job seekers - I am a fresher. The interview was Good experience and interviewer also good.
The interviewer ask lot of question. Luckily I was able to answer most of the questions.
And finally he said your interview was good I move your resume to Hr like that.
Please go through the job description thoroughly word-by-word and recheck your resume to ensure. In technical round the interview fully based on your resume so please correct all the things.

Fujitsu Interview FAQs

How many rounds are there in Fujitsu Associate Software Engineer interview?
Fujitsu interview process usually has 3 rounds. The most common rounds in the Fujitsu interview process are Technical and HR.
What are the top questions asked in Fujitsu Associate Software Engineer interview?

Some of the top questions asked at the Fujitsu Associate Software Engineer interview -

  1. 2nd Round: 1 Code you have total 100 people and each one has some number need t...read more
  2. 1st Round: 2 simple code on array and string and question on annotation and spr...read more
  3. Linux and vmw...read more

Tell us how to improve this page.

Fujitsu Associate Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Fujitsu Associate Software Engineer Salary
based on 20 salaries
₹3.6 L/yr - ₹12 L/yr
17% more than the average Associate Software Engineer Salary in India
View more details

Fujitsu Associate Software Engineer Reviews and Ratings

based on 3 reviews

2.1/5

Rating in categories

3.2

Skill development

3.7

Work-life balance

3.2

Salary

2.0

Job security

3.2

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 3 Reviews and Ratings
Technical Service Engineer
1.1k salaries
unlock blur

₹4.5 L/yr - ₹17.5 L/yr

Application Developer
989 salaries
unlock blur

₹2.6 L/yr - ₹15 L/yr

Assistant Application Developer
618 salaries
unlock blur

₹2.3 L/yr - ₹8.1 L/yr

Assistant Technical Service Engineer
572 salaries
unlock blur

₹2.5 L/yr - ₹7.9 L/yr

Associate Application Developer
515 salaries
unlock blur

₹4.2 L/yr - ₹15.9 L/yr

Explore more salaries
Compare Fujitsu with

Accenture

3.8
Compare

TCS

3.7
Compare

HCLTech

3.5
Compare

Wipro

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