Upload Button Icon Add office photos

Filter interviews by

Feathersoft Info Solutions Interview Questions, Process, and Tips for Freshers

Updated 10 Sep 2022

Top Feathersoft Info Solutions Interview Questions and Answers for Freshers

View all 9 questions

Feathersoft Info Solutions Interview Experiences for Freshers

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

I applied via Campus Placement and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about yourself
  • Q2. Why IT
  • Q3. About my project
  • Q4. Few mechanical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - General questions

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

Interview Questionnaire 

2 Questions

  • Q1. Mostly puzzles and one case study
  • Q2. They asked me questions about my interests and hobbies

Interview Preparation Tips

Round: Test
Experience: There were three sets of question paper. We were sitting according to our roll number then question paper with rough sheet were distributed and we were allowed 1 hour to finish that. There was no negative marking.
Tips: For aptitude practice data interpretation and data sufficiency
Duration: 1 hour
Total Questions: 30

Round: Group Discussion
Duration: 15 minutes

Round: Technical Interview
Tips: Practice puzzles and case study for this round

Round: HR Interview
Tips: Be yourself

College Name: NIT Rourkela

Interview Questionnaire 

18 Questions

  • Q1. Tell me about your yourself
  • Ans. 

    I am a detail-oriented business analyst with experience in data analysis and process improvement.

    • I have a Bachelor's degree in Business Administration

    • I have worked with various stakeholders to identify business needs and requirements

    • I am proficient in SQL and Excel for data analysis

    • I have experience in process improvement and project management

    • I am a strong communicator and collaborator

  • Answered by AI
  • Q2. Tell us about your training and internships
  • Ans. 

    I have completed a business analyst certification course and have interned at a software development company.

    • Completed a business analyst certification course from XYZ Institute

    • Interned at ABC Software Development Company for 6 months

    • Worked on requirement gathering, documentation and analysis for a project

    • Assisted senior business analysts in creating project plans and reports

  • Answered by AI
  • Q3. What is the role of Instrumentation Department? (my training)
  • Ans. 

    The Instrumentation Department is responsible for designing, installing, and maintaining control systems and instruments used in industrial processes.

    • Designing and implementing control systems for industrial processes

    • Installing and maintaining instruments used in industrial processes

    • Ensuring accuracy and reliability of instruments and control systems

    • Collaborating with other departments to optimize processes and improve...

  • Answered by AI
  • Q4. Why do you want to join Affine Analytics?
  • Ans. 

    I am excited to join Affine Analytics because of their reputation for delivering innovative solutions and their focus on employee growth.

    • Affine Analytics has a strong track record of delivering cutting-edge solutions to clients across industries.

    • I am impressed by the company's commitment to employee growth and development, as evidenced by their training and mentorship programs.

    • I am excited about the opportunity to work...

  • Answered by AI
  • Q5. Why Data anayltics? Why not a technical job in your field?
  • Ans. 

    Data analytics allows me to use my technical skills to solve business problems and make data-driven decisions.

    • Data analytics helps me to identify patterns and trends in data that can be used to improve business processes.

    • It allows me to work with large datasets and use statistical methods to extract insights.

    • I can use my technical skills to develop and implement data models and algorithms.

    • Data analytics is a growing fi...

  • Answered by AI
  • Q6. If I keep two diodes in series will it work as a transistor? (EC branch)
  • Ans. 

    No, two diodes in series cannot work as a transistor.

    • Transistors have three terminals while diodes have two.

    • Transistors can amplify signals while diodes cannot.

    • Transistors can be used as switches while diodes cannot.

    • Diodes in series will only increase the voltage drop.

    • Transistors have different modes of operation such as common emitter, common base, and common collector.

  • Answered by AI
  • Q7. What exactly have you accomplished with the drone? (my final year project)
  • Ans. 

    I developed a drone that can detect and monitor forest fires.

    • Designed and built a drone with thermal imaging camera

    • Integrated machine learning algorithm to detect fire

    • Tested and validated the drone in a controlled forest environment

    • Presented the project at a national engineering conference

  • Answered by AI
  • Q8. How frequently do you play Badminton? (Hobby)
  • Ans. 

    I play badminton twice a week as a hobby.

    • I enjoy playing badminton as a way to stay active and relieve stress.

    • I usually play with friends or family members at a local community center.

    • I have been playing badminton for several years and have improved my skills over time.

  • Answered by AI
  • Q9. Do you have any problem working in Bangalore?
  • Ans. 

    No, I don't have any problem working in Bangalore.

    • I am familiar with the city and its culture

    • I have worked in Bangalore before and enjoyed my experience

    • I am open to new experiences and challenges

    • I am willing to adapt to the local environment and work culture

  • Answered by AI
  • Q10. Do you have any questions for us?
  • Q11. Which football club do you follow? (My answer: Real Madrid) (Que based on hobby)
  • Q12. Why is Real Madrid your favorite?
  • Ans. 

    Real Madrid is my favorite because of their rich history, success, and style of play.

    • Real Madrid has won a record 13 Champions League titles, which is a testament to their success

    • Their style of play is attractive and entertaining to watch

    • The club has a rich history and has had some of the greatest players in football history, such as Cristiano Ronaldo and Zinedine Zidane

  • Answered by AI
  • Q13. Assume you are the CEO of Flipkart. Your board has decided to go App only. What factors would you consider before making your final decision. (You have the relevant data from your website of last 7 years ...
  • Ans. 

    Factors to consider before going App only as CEO of Flipkart

    • Analyze the data from website and app to understand user behavior

    • Evaluate the impact on sales and revenue

    • Consider the potential loss of customers who prefer website over app

    • Assess the cost of developing and maintaining the app

    • Evaluate the competition and their strategies

    • Consider the impact on brand image and customer loyalty

    • Assess the feasibility of providing ...

  • Answered by AI
  • Q14. The Horse Puzzle
  • Q15. 3 Ants triangle puzzle
  • Q16. 3 Jars puzzle (Apple/Orange puzzle)
  • Q17. I have two jars of 5 litres and 3 litres. How can I measure 4 litres? (Assume: Infinite supply of water and no third jar is present)
  • Q18. A revolver with 2 bullets puzzle

Interview Preparation Tips

Round: Test
Experience: The first 10 questions were Data Interpretation type. There were around 4 to 5 logic questions. The rest were quantitative questions.
The questions were pretty basic.
Tips: The aim is to check the speed of your calculations.
Duration: 30 minutes
Total Questions: 23

Round: Group Discussion
Tips: Speak relevant points and you will be fine.
High proficiency in English is a must.
Duration: 10 minutes

Round: Puzzle Interview
Experience: The interview was great and lasted around 35-40 minutes. The interviewer gave ample amount of time to solve the questions.
To answer the questions was ofcourse important but approach to your final answer is very important as well. If you already know the answer but fail to explain the approach to the interviewer, you will get rejected.
Tips: Keep the interviewer in the loop and keep explaining him what you are thinking.
Fluent English is very important as well.

Round: HR Interview
Experience: The interviewers were very friendly and the interview lasted around 15 min.
Tips: Have one or two favorite subject/s from which you can answer any question thrown at you.
Be well versed about your final year project.
Do not put rubbish in your resume as they read the entire resume.

Skills: Enthusiasm, Projects, Proficiency In English, Logical Puzzles, Logical Thinking
College Name: NIT Surat
Funny Moments: As the HR interviewer is an alumni of my college, we had some chat about the college. This made the interview mood very light.

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 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
 • 142 Interviews
Affine Interview Questions
3.3
 • 49 Interviews
Pitney Bowes Interview Questions
3.7
 • 21 Interviews
DynPro Interview Questions
3.8
 • 20 Interviews
Diverse Lynx Interview Questions
3.7
 • 19 Interviews
Avontix Interview Questions
3.9
 • 19 Interviews
View all

Feathersoft Info Solutions Reviews and Ratings

based on 40 reviews

4.4/5

Rating in categories

4.3

Skill development

4.3

Work-life balance

3.5

Salary

4.1

Job security

4.1

Company culture

3.7

Promotions

4.2

Work satisfaction

Explore 40 Reviews and Ratings
Junior DevOps Engineer

Kochi

0-1 Yrs

Not Disclosed

Lead Generation & Inside Sales Executive

Kochi,

Chennai

0-3 Yrs

Not Disclosed

Product Owner

Kochi,

Chennai

8-13 Yrs

Not Disclosed

Explore more jobs
Software Engineer
61 salaries
unlock blur

₹2.8 L/yr - ₹9.1 L/yr

Softwaretest Engineer
25 salaries
unlock blur

₹2.6 L/yr - ₹5.5 L/yr

Software Developer
10 salaries
unlock blur

₹2.5 L/yr - ₹5.7 L/yr

Technical Support Engineer
10 salaries
unlock blur

₹3.6 L/yr - ₹9.2 L/yr

Android Developer
9 salaries
unlock blur

₹4.4 L/yr - ₹7 L/yr

Explore more salaries
Compare Feathersoft Info Solutions with

HCL Infosystems

3.9
Compare

Accel Frontline

4.0
Compare

Diverse Lynx

3.7
Compare

Pitney Bowes

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