Upload Button Icon Add office photos

Filter interviews by

Feathersoft Info Solutions Interview Questions, Process, and Tips

Updated 10 Sep 2022

Top Feathersoft Info Solutions Interview Questions and Answers

View all 9 questions

Feathersoft Info Solutions Interview Experiences

Popular Designations

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

Top Feathersoft Info Solutions Java Developer Trainee Interview Questions and Answers

Q1. Find the lowest number from an arraylist using streams
View answer (1)

Java Developer Trainee Interview Questions asked at other Companies

Q1. What are 4 pillors of oops concept? And explain them with example.
View answer (2)

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

Interview Preparation Tips

Interview preparation tips for other job seekers - read the website

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Jobs at Feathersoft Info Solutions

View all

Interview questions from similar companies

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Referral and was interviewed before Jan 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Java questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic questions

I applied via Campus Placement and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude round consists Logical reasoning, General Aptitude, Grammar related questions etc. All are moderate level questions.

Round 2 - Technical 

(3 Questions)

  • Q1. Explain OOPs w.r.t Java
  • Ans. 

    OOPs is a programming paradigm that uses objects to represent real-world entities. Java is an OOPs language.

    • OOPs stands for Object-Oriented Programming System

    • Java is a class-based OOPs language

    • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four pillars of OOPs

    • Objects have state and behavior

    • Java supports interfaces, which allow for multiple inheritance

    • Example: A car can be represented as an object wit...

  • Answered by AI
  • Q2. Explain about the projects that you have worked on
  • Q3. Explain how Java solves machine dependency of code execution
  • Ans. 

    Java solves machine dependency by using bytecode and virtual machine.

    • Java code is compiled into bytecode which is platform-independent

    • The bytecode is executed by the Java Virtual Machine (JVM) which is platform-specific

    • JVM translates bytecode into machine code for the specific platform

    • This allows Java code to run on any platform with a JVM installed

    • Example: A Java program compiled on Windows can run on Linux or Mac as

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Why should we hire you?
  • Q2. Tell me about yourself.

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • Java
Interview preparation tips for other job seekers - Keep it simple, Prepare basics of 1st preferred Programming Language.

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before May 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Numerical ability and logical reasoning followed by some coding mcqs

Round 2 - Technical 

(1 Question)

  • Q1. Print 1 to 100 without for loop
  • Ans. 

    Printing 1 to 100 without for loop

    • Use recursion to print numbers from 1 to 99

    • Print 100 outside the recursion

    • Use a base case to stop recursion at 100

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare from interview bit and practice mcqs

I applied via Campus Placement and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Simple aptitude test

Round 2 - One-on-one 

(1 Question)

  • Q1. General questions as per your cv

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • Aptitude
Interview preparation tips for other job seekers - Great company for freshers.. lot to learn and experience

I applied via Company Website and was interviewed before Jul 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Attended the codevita competition in final year of college.

Round 2 - Technical 

(3 Questions)

  • Q1. About College Project
  • Q2. Some very basics of java
  • Q3. Experience of college project as a team

Interview Preparation Tips

Interview preparation tips for other job seekers - Codevita is a really good platform to help you join TCS as a final year graduate in college

I applied via Campus Placement and was interviewed before Aug 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was a basic aptitude test.

Round 2 - One-on-one 

(1 Question)

  • Q1. Interview was fine. Mostly asked about my final year project.

Interview Preparation Tips

Interview preparation tips for other job seekers - Attend the interview with cool head. All the best.

I applied via Campus Placement and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Explain the mini projects and main project completed during Engineering.

Interview Preparation Tips

Topics to prepare for Infosys System Engineer interview:
  • DBMS
  • Software Engineering
  • Basic coding
Interview preparation tips for other job seekers - Just make sure the resume should be precise and you have knowledge on the things mentioned in your resume.

Be confident and have a smiling face in the interview round.

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, Database and Javascript.
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.

Feathersoft Info Solutions Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
HCL Infosystems Interview Questions
3.9
 • 140 Interviews
View all

Feathersoft Info Solutions Reviews and Ratings

based on 38 reviews

4.4/5

Rating in categories

4.3

Skill development

4.3

Work-life balance

3.4

Salary

4.1

Job security

4.1

Company culture

3.7

Promotions

4.2

Work satisfaction

Explore 38 Reviews and Ratings
Content Writer (Fresher)

Kochi,

Chennai

0-1 Yrs

Not Disclosed

Help Desk Support Engineer

Kochi

0-1 Yrs

Not Disclosed

Microsoft 365 Endpoint Administrator

Kochi

2-4 Yrs

Not Disclosed

Explore more jobs
Software Engineer
59 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Softwaretest Engineer
25 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Android Developer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Feathersoft Info Solutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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