Upload Button Icon Add office photos

Feathersoft Info Solutions

Compare button icon Compare button icon Compare

Filter interviews by

Feathersoft Info Solutions Interview Questions and Answers for Freshers

Updated 15 May 2025
Popular Designations

10 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

View all Java Developer Trainee interview questions
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.

View all Java Developer Trainee interview questions
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

View all Java Developer Trainee interview questions
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

View all Java Developer Trainee interview questions
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

View all Java Developer Trainee interview questions
A Java Developer Trainee was asked
Q. How can you 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

View all Java Developer Trainee interview questions
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

View all Java Developer Trainee interview questions
Are these interview questions helpful?
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(); }

View all Java Developer Trainee interview questions
An Intern was asked
Q. What do you know about the company?
Ans. 

The company is a leading innovator in technology solutions, focusing on enhancing user experience and operational efficiency.

  • Founded in 2010, the company has rapidly grown to become a market leader.

  • Offers a diverse range of products, including software, hardware, and cloud services.

  • Committed to sustainability, implementing eco-friendly practices in operations.

  • Recognized for exceptional customer service, receiving ...

View all Intern interview questions
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...

View all Java Developer Trainee interview questions

Feathersoft Info Solutions Interview Experiences for Freshers

2 interviews 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

Intern Interview Questions & Answers

user image Anonymous

posted on 9 Aug 2021

I applied via Walk-in and was interviewed in Jul 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Abut the company
  • Ans. 

    The company is a leading innovator in technology solutions, focusing on enhancing user experience and operational efficiency.

    • Founded in 2010, the company has rapidly grown to become a market leader.

    • Offers a diverse range of products, including software, hardware, and cloud services.

    • Committed to sustainability, implementing eco-friendly practices in operations.

    • Recognized for exceptional customer service, receiving multi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - read the website

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 Feathersoft Info Solutions?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral and was interviewed before Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Related to work profile
  • Q2. Related to interests

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, go well groomed

Interview Questionnaire 

1 Question

  • Q1. SDLC Model

Interview Preparation Tips

Interview preparation tips for other job seekers - Nice interview

I applied via Naukri.com and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basics of python, project related questions
  • Q2. Basic SQL, few simple problem solving questions
Round 2 - HR 

(2 Questions)

  • Q1. Interests, hobbies ,general HR questions
  • Q2. Expected hike, salary, work timings preferred

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for basic python and sql.

I applied via Naukri.com and was interviewed in Mar 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. C2H profile basic technology based question s only

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your answer

Interview Questionnaire 

3 Questions

  • Q1. Test scenarios to test ATM machine
  • Ans. 

    Test scenarios to test ATM machine

    • Test card insertion and ejection

    • Test PIN entry and validation

    • Test cash withdrawal and balance update

    • Test receipt printing

    • Test network connectivity and error handling

  • Answered by AI
  • Q2. Explain about SQL joines
  • Ans. 

    SQL joins are used to combine data from two or more tables based on a related column between them.

    • There are four types of SQL joins: inner join, left join, right join, and full outer join.

    • Inner join returns only the matching rows from both tables.

    • Left join returns all the rows from the left table and matching rows from the right table.

    • Right join returns all the rows from the right table and matching rows from the left ...

  • Answered by AI
  • Q3. Explain about Ur previous project

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident ,don't get confused with questions be calm and understand the questions and answer

Skills evaluated in this interview

Are these interview questions helpful?

I appeared for an interview in Mar 2021.

Interview Questionnaire 

1 Question

  • Q1. Oops, asp.net, MVC, design patterns

Interview Preparation Tips

Interview preparation tips for other job seekers - Get prepared well, if it's your day..you will definitely crack it.

Interview Preparation Tips

Round: Test
Experience: It was nice set of mixed bag questions each challenging your brain to scratch more and find the trick.
Tips: Be calm in solving the questions, Practice few tricks to solve

work,time,distance,number series problem etc. quickly to help save the

time.
Duration: 20 minuntes minutes
Total Questions: 25

Round: Resume Shortlist
Experience: I think resume played a important role in selection processes.
Tips: Make it simple and HIGHLIGHT your good work and experiences.Interviewer don't have time to go through whole crap what we write so basically focus on highlighting your achievements and internships.

Round: Group Discussion
Experience: People are dying to take the opportunity and speak.You will be facing a fish market in few cases, rest it is calm and everyone is given a chance to put forward there point.
Tips: Generally u have to decide which side of the boat u want to be on.

Either go against the topic or in favor whichever you are more

comfortable with.

College Name: IIT ROORKEE

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

Feathersoft Info Solutions Interview FAQs

How many rounds are there in Feathersoft Info Solutions interview for freshers?
Feathersoft Info Solutions interview process for freshers usually has 3 rounds. The most common rounds in the Feathersoft Info Solutions interview process for freshers are Technical and HR.
How to prepare for Feathersoft Info Solutions interview for freshers?
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 Data Analysis, Computer Science, Python, Basic and Machine Learning.
What are the top questions asked in Feathersoft Info Solutions interview for freshers?

Some of the top questions asked at the Feathersoft Info Solutions interview for freshers -

  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

Feathersoft Info Solutions Reviews and Ratings

based on 46 reviews

4.3/5

Rating in categories

4.1

Skill development

4.3

Work-life balance

3.5

Salary

3.9

Job security

4.0

Company culture

3.6

Promotions

4.0

Work satisfaction

Explore 46 Reviews and Ratings
Data Analyst

Kochi,

Chennai

1-2 Yrs

₹ 2.9-4 LPA

Technical Project Manager

Kochi,

Chennai

11-12 Yrs

Not Disclosed

Financial Reporting Specialist

Kochi,

Chennai

3-8 Yrs

Not Disclosed

Explore more jobs
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

4.1
Compare

Diverse Lynx

3.6
Compare

Pitney Bowes

3.8
Compare
write
Share an Interview