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

Updated 15 May 2025
Popular Designations

13 Interview questions

A Junior Engineer was asked 1mo ago
Q. What is the use of the __init__ method?
Ans. 

The __init__ method initializes an object's attributes when an instance of a class is created in Python.

  • __init__ is a special method in Python classes.

  • It is called automatically when a new object is created.

  • Used to set initial values for object attributes.

  • Example: def __init__(self, name): self.name = name

  • Allows for customization of object creation.

View all Junior Engineer interview questions
A Junior Engineer was asked 1mo ago
Q. Explain the functioning of a snake and ladder game.
Ans. 

Snake and Ladder is a board game where players navigate a grid, climbing ladders and sliding down snakes to reach the finish.

  • Players take turns rolling a die to move their token on a numbered grid.

  • Landing on a ladder allows the player to climb up to a higher number.

  • Landing on a snake causes the player to slide down to a lower number.

  • The objective is to reach the last square, usually 100, before other players.

  • For e...

View all Junior Engineer interview questions
A Junior Engineer was asked 1mo ago
Q. Write a code with class.
Ans. 

This code defines a simple class in Python to demonstrate object-oriented programming concepts.

  • Classes are blueprints for creating objects.

  • Use the 'class' keyword to define a class.

  • Attributes are variables that belong to the class.

  • Methods are functions defined within a class.

  • Example: class Dog: def bark(self): print('Woof!')

View all Junior Engineer 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
Are these interview questions helpful?
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

Feathersoft Info Solutions Interview Experiences

3 interviews found

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Nov 2024, where I was asked the following questions.

  • Q1. Explain the functioning of a snake and ladder game.
  • Ans. 

    Snake and Ladder is a board game where players navigate a grid, climbing ladders and sliding down snakes to reach the finish.

    • Players take turns rolling a die to move their token on a numbered grid.

    • Landing on a ladder allows the player to climb up to a higher number.

    • Landing on a snake causes the player to slide down to a lower number.

    • The objective is to reach the last square, usually 100, before other players.

    • For exampl...

  • Answered by AI
  • Q2. What is the use of __init__ method
  • Ans. 

    The __init__ method initializes an object's attributes when an instance of a class is created in Python.

    • __init__ is a special method in Python classes.

    • It is called automatically when a new object is created.

    • Used to set initial values for object attributes.

    • Example: def __init__(self, name): self.name = name

    • Allows for customization of object creation.

  • Answered by AI
  • Q3. Write a code with class
  • Ans. 

    This code defines a simple class in Python to demonstrate object-oriented programming concepts.

    • Classes are blueprints for creating objects.

    • Use the 'class' keyword to define a class.

    • Attributes are variables that belong to the class.

    • Methods are functions defined within a class.

    • Example: class Dog: def bark(self): print('Woof!')

  • Answered by AI

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 Recruitment Consultant and was interviewed before Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Salesforce Admin Question and what do you know about the work of Business Analyst.

Interview Preparation Tips

Interview preparation tips for other job seekers - Go through all the admin stuff and BA knowledge before appearing for the interview. It is not tough.

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

I applied via Job Portal and was interviewed in May 2021. There were 6 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How would you rate yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - be truefull

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
Are these interview questions helpful?

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

Feathersoft Info Solutions Interview FAQs

How many rounds are there in Feathersoft Info Solutions 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 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 Web Technologies, Python, SQL, Data Analysis and Database.
What are the top questions asked in Feathersoft Info Solutions interview?

Some of the top questions asked at the Feathersoft Info Solutions 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.

Overall Interview Experience Rating

4.3/5

based on 4 interview experiences

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

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