Upload Button Icon Add office photos

Feathersoft Info Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Feathersoft Info Solutions Java Developer Trainee Interview Questions and Answers

Updated 10 Sep 2022

8 Interview questions

A Java Developer Trainee was asked
Q. Write a function to find duplicate characters in a string.
Ans. 

Program to find duplicate alphabets in a string

  • Create a HashMap to store the frequency of each alphabet

  • Iterate through the string and update the frequency in the HashMap

  • Iterate through the HashMap and print the alphabets with frequency greater than 1

A Java Developer Trainee was asked
Q. Write a function to find all vowels in a given string.
Ans. 

A Java program to find vowels from a given string.

  • Create a string variable and initialize it with the given string.

  • Use a for loop to iterate through each character of the string.

  • Check if the character is a vowel using if statement and add it to a new string variable.

  • Print the new string variable containing all the vowels.

Java Developer Trainee Interview Questions Asked at Other Companies

Q1. What are 4 pillors of oops concept? And explain them with example ... read more
Q2. What is the difference between an array and a collection?
Q3. How can you find the lowest number from an ArrayList using stream ... read more
Q4. Is string mutable or immutable? And why?
Q5. Write a program using control flow statements to create two objec ... read more
A Java Developer Trainee was asked
Q. Demonstrate inheritance in Java with code.
Ans. 

Inheritance in Java allows a class to inherit properties and methods from another class.

  • Use the 'extends' keyword to create a subclass that inherits from a superclass

  • The subclass can access all public and protected members of the superclass

  • Example: class Dog extends Animal { ... }

  • The 'super' keyword is used to call the superclass constructor or method

A Java Developer Trainee was asked
Q. Explain the role of a controller in Spring.
Ans. 

Controller in Spring is responsible for handling user requests and returning appropriate responses.

  • Controller receives requests from the client and delegates them to appropriate handlers

  • It maps the incoming requests to the corresponding handler methods

  • It returns the response to the client after processing the request

  • It can also handle exceptions and errors that occur during request processing

A Java Developer Trainee was asked
Q. How do you configure the server port in a Spring Boot application?
Ans. 

To configure server port in a Spring Boot app, modify the application.properties file.

  • Open the application.properties file

  • Add the following line: server.port=8080 (or any desired port number)

  • Save the file and restart the application

A Java Developer Trainee was asked
Q. Given a string, reverse the order of its characters and return the reversed string.
Ans. 

Reverse a given string

  • Iterate through the string from end to start and append each character to a new string

  • Use StringBuilder or StringBuffer for better performance

  • Convert the string to a character array and swap the first and last characters, then move towards the middle until the entire string is reversed

A Java Developer Trainee was asked
Q. What is the use of refresh scope?
Ans. 

Refresh scope is used in Spring framework to control the lifecycle of beans.

  • Refresh scope is used to create a new instance of a bean every time it is requested.

  • It is useful when the state of a bean needs to be reset on every request.

  • To use refresh scope, add @RefreshScope annotation to the bean definition.

  • Example: @Bean @RefreshScope public MyBean myBean() { return new MyBean(); }

Are these interview questions helpful?
A Java Developer Trainee was asked
Q. Abstract and anonymous classes in java
Ans. 

Abstract classes are incomplete classes that cannot be instantiated. Anonymous classes are unnamed classes that can be created on the fly.

  • Abstract classes are declared with the 'abstract' keyword and can have abstract and non-abstract methods.

  • Anonymous classes are created using the 'new' keyword and can extend a class or implement an interface.

  • Anonymous classes are often used for event handling and callbacks.

  • Examp...

Feathersoft Info Solutions Java Developer Trainee Interview Experiences

1 interview found

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

Round 1 - Technical 

(5 Questions)

  • Q1. Reverse a given string
  • Ans. 

    Reverse a given string

    • Iterate through the string from end to start and append each character to a new string

    • Use StringBuilder or StringBuffer for better performance

    • Convert the string to a character array and swap the first and last characters, then move towards the middle until the entire string is reversed

  • Answered by AI
  • Q2. Find duplicate alphabets in a string
  • Ans. 

    Program to find duplicate alphabets in a string

    • Create a HashMap to store the frequency of each alphabet

    • Iterate through the string and update the frequency in the HashMap

    • Iterate through the HashMap and print the alphabets with frequency greater than 1

  • Answered by AI
  • Q3. Find vowels from a string
  • Ans. 

    A Java program to find vowels from a given string.

    • Create a string variable and initialize it with the given string.

    • Use a for loop to iterate through each character of the string.

    • Check if the character is a vowel using if statement and add it to a new string variable.

    • Print the new string variable containing all the vowels.

  • Answered by AI
  • Q4. Abstract and anonymous classes in java
  • Ans. 

    Abstract classes are incomplete classes that cannot be instantiated. Anonymous classes are unnamed classes that can be created on the fly.

    • Abstract classes are declared with the 'abstract' keyword and can have abstract and non-abstract methods.

    • Anonymous classes are created using the 'new' keyword and can extend a class or implement an interface.

    • Anonymous classes are often used for event handling and callbacks.

    • Example of...

  • Answered by AI
  • Q5. Demonstrate inheritance in java with code
  • Ans. 

    Inheritance in Java allows a class to inherit properties and methods from another class.

    • Use the 'extends' keyword to create a subclass that inherits from a superclass

    • The subclass can access all public and protected members of the superclass

    • Example: class Dog extends Animal { ... }

    • The 'super' keyword is used to call the superclass constructor or method

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. Explain controller in spring
  • Ans. 

    Controller in Spring is responsible for handling user requests and returning appropriate responses.

    • Controller receives requests from the client and delegates them to appropriate handlers

    • It maps the incoming requests to the corresponding handler methods

    • It returns the response to the client after processing the request

    • It can also handle exceptions and errors that occur during request processing

  • Answered by AI
  • Q2. Configuring server port in a spring boot app
  • Ans. 

    To configure server port in a Spring Boot app, modify the application.properties file.

    • Open the application.properties file

    • Add the following line: server.port=8080 (or any desired port number)

    • Save the file and restart the application

  • Answered by AI
  • Q3. Find the lowest number from an arraylist using streams
  • Ans. 

    Find the lowest number from an arraylist using streams

    • Use stream.min() method to find the lowest number

    • Pass Comparator.naturalOrder() to get the lowest number

    • Handle empty list scenario using OptionalInt

  • Answered by AI
  • Q4. Explain a previous project
  • Ans. 

    Developed a web-based inventory management system for a retail store

    • Used Java, Spring framework, and MySQL for backend development

    • Implemented user authentication and authorization using Spring Security

    • Designed the frontend using HTML, CSS, and JavaScript

    • Integrated barcode scanner for efficient inventory management

    • Conducted unit testing using JUnit and integration testing using Selenium

    • Deployed the application on AWS EC...

  • Answered by AI
  • Q5. Use of refresh scope
  • Ans. 

    Refresh scope is used in Spring framework to control the lifecycle of beans.

    • Refresh scope is used to create a new instance of a bean every time it is requested.

    • It is useful when the state of a bean needs to be reset on every request.

    • To use refresh scope, add @RefreshScope annotation to the bean definition.

    • Example: @Bean @RefreshScope public MyBean myBean() { return new MyBean(); }

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. No questions, it was more of a friendly chat for half an hour or something.

Interview Preparation Tips

Topics to prepare for Feathersoft Info Solutions Java Developer Trainee interview:
  • Core Java
Interview preparation tips for other job seekers - It's an easy interview, if you know your java well.

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Feathersoft Info Solutions?
Ask anonymously on communities.

Interview questions from similar companies

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

Interview Questionnaire 

1 Question

  • Q1. Python file handling, input,output, in a file, Sql joins, list sort in python, basics of GIS, Web service how to test

Interview Preparation Tips

Interview preparation tips for other job seekers - This is hust basics not deep dive, strog ur basics to crack

Java Developer Trainee Interview Questions Asked at Other Companies

Q1. What are 4 pillors of oops concept? And explain them with example ... read more
Q2. What is the difference between an array and a collection?
Q3. How can you find the lowest number from an ArrayList using stream ... read more
Q4. Is string mutable or immutable? And why?
Q5. Write a program using control flow statements to create two objec ... read more

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence

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

Interview Questionnaire 

1 Question

  • Q1. For fresher 1 aptitude - percentage,date and time,number system,intrest,work done problems 2 Group discussion 3 HR interview

Interview Preparation Tips

Interview preparation tips for other job seekers - First is usual aptitude after finishing it takes 30 min for result . Next g it is more of generall topic, atlast hr

Interview Questionnaire 

1 Question

  • Q1. Difference between for and for each
  • Ans. 

    For loop is used for iterating over a range of values while for each loop is used for iterating over elements of an array.

    • For loop is used when the number of iterations is known beforehand.

    • For each loop is used when the number of iterations is not known beforehand.

    • For loop can be used with any iterable object.

    • For each loop can only be used with arrays and other iterable objects.

    • For loop uses an index variable to access...

  • Answered by AI

I applied via Naukri.com and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Which collection class is used to represent key-value pairs?
  • Ans. 

    The HashMap class is used to represent key-value pairs in Java.

    • HashMap is a part of the Java Collections Framework.

    • It allows null values and only one null key.

    • It provides constant-time performance for basic operations like get and put.

    • Example: HashMap<String, Integer> map = new HashMap<>();

  • Answered by AI
  • Q2. What is abstraction?
  • Ans. 

    Abstraction is the process of simplifying complex systems by focusing on essential details and hiding unnecessary complexities.

    • Abstraction allows us to create models or representations of real-world objects or systems in software.

    • It helps in managing complexity by breaking down a system into smaller, more manageable parts.

    • Abstraction provides a level of indirection, allowing changes to be made in one part of the system...

  • Answered by AI
  • Q3. Why is try-catch used in JAVA?
  • Ans. 

    try-catch is used in Java to handle exceptions and prevent program crashes.

    • try-catch blocks are used to catch and handle exceptions that may occur during program execution.

    • It allows the program to gracefully handle errors and prevent the program from crashing.

    • The try block contains the code that may throw an exception, and the catch block handles the exception.

    • Multiple catch blocks can be used to handle different types...

  • Answered by AI
  • Q4. Which statement will we use if we want to select a statement based on integer inputs?
  • Ans. 

    The statement to use for selecting based on integer inputs is the 'switch' statement.

    • The 'switch' statement allows for multiple cases to be evaluated based on the value of an integer input.

    • Each case represents a possible value of the input, and the corresponding code block is executed if the value matches.

    • The 'switch' statement also provides a 'default' case which is executed if none of the cases match the input value.

    • ...

  • Answered by AI
  • Q5. Explain your project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Stick to basic concepts
Prepare a good project

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Explain process for SDE
  • Ans. 

    The process for Software Development Engineer involves planning, designing, coding, testing, and deploying software solutions.

    • Gather requirements from stakeholders

    • Create a design based on requirements

    • Write code to implement the design

    • Test the software for bugs and issues

    • Deploy the software for users to use

    • Iterate on feedback and make improvements

  • Answered by AI

Skills evaluated in this interview

Round 1 - Coding Test 

Topics:
Python, Django, MySQL, Automation, Technical questions

Round 2 - Technical 

(3 Questions)

  • Q1. Topics: Python, Django, MySQL, Automation, Technical questions
  • Q2. Explain Django Architecture
  • Q3. Difference between XML and JSON
  • Ans. 

    XML is a markup language while JSON is a lightweight data interchange format.

    • XML uses tags to define elements while JSON uses key-value pairs.

    • XML is more verbose and complex than JSON.

    • JSON is easier to read and parse than XML.

    • XML supports namespaces and validation while JSON does not.

    • XML is widely used in web services and document exchange while JSON is preferred for data exchange between applications.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on Python Django
Showcase your skills

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. OOP questions SQL Questions Programming structure
Round 2 - Technical 

(1 Question)

  • Q1. SQL questions MVC and C# related questions

Feathersoft Info Solutions Interview FAQs

How many rounds are there in Feathersoft Info Solutions Java Developer Trainee interview?
Feathersoft Info Solutions interview process usually has 3 rounds. The most common rounds in the Feathersoft Info Solutions interview process are Technical and HR.
How to prepare for Feathersoft Info Solutions Java Developer Trainee 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 Feathersoft Info Solutions. The most common topics and skills that interviewers at Feathersoft Info Solutions expect are Coding, Core Java, Hibernate, Oracle and RDBMS.
What are the top questions asked in Feathersoft Info Solutions Java Developer Trainee interview?

Some of the top questions asked at the Feathersoft Info Solutions Java Developer Trainee interview -

  1. Find the lowest number from an arraylist using stre...read more
  2. Demonstrate inheritance in java with c...read more
  3. Configuring server port in a spring boot ...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 144 Interviews
Affine Interview Questions
3.3
 • 51 Interviews
JMR Infotech Interview Questions
4.2
 • 33 Interviews
DynPro Interview Questions
3.8
 • 24 Interviews
Pitney Bowes Interview Questions
3.8
 • 22 Interviews
View all
Software Engineer
61 salaries
unlock blur

₹2.8 L/yr - ₹9.1 L/yr

Softwaretest Engineer
20 salaries
unlock blur

₹2.6 L/yr - ₹5.6 L/yr

Technical Support Engineer
11 salaries
unlock blur

₹3.6 L/yr - ₹9.2 L/yr

Software Developer
9 salaries
unlock blur

₹2.5 L/yr - ₹5.7 L/yr

Business Analyst
9 salaries
unlock blur

₹5.1 L/yr - ₹8.5 L/yr

Explore more salaries
Compare Feathersoft Info Solutions with

HCL Infosystems

3.9
Compare

Accel Frontline

3.9
Compare

Diverse Lynx

3.6
Compare

Pitney Bowes

3.8
Compare
write
Share an Interview