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

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

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
1w (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 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

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

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

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

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
Azure Cloud Infrastructure Engineer

Kochi

2-5 Yrs

Not Disclosed

Data Analyst

Kochi,

Chennai

1-2 Yrs

₹ 2.9-4 LPA

Technical Project Manager

Kochi,

Chennai

11-12 Yrs

Not Disclosed

Explore more jobs
Software Engineer
61 salaries
unlock blur

₹3.5 L/yr - ₹7.9 L/yr

Softwaretest Engineer
20 salaries
unlock blur

₹2.6 L/yr - ₹5.6 L/yr

Technical Support Engineer
11 salaries
unlock blur

₹4.1 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