Upload Button Icon Add office photos

Filter interviews by

Future Generali India Life Insurance Softwaretest Engineer Interview Questions and Answers

Updated 14 Apr 2022

Future Generali India Life Insurance Softwaretest Engineer Interview Experiences

1 interview found

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

Round 1 - Telephonic Call 

(2 Questions)

  • Q1. Basic questions like tell me about yourself and your experience and relevant experience in Insurance industry.
  • Q2. Tell me about yourself? , What is your relevant experience in insurance industry.
Round 2 - Technical 

(1 Question)

  • Q1. More about insurance terms and questions on how to perform testing. Basic terms and terminology in insurance and testing.
Round 3 - Aptitude Test 

Baisc aptitude test not very difficult to crack.

Interview Preparation Tips

Topics to prepare for Future Generali India Life Insurance Softwaretest Engineer interview:
  • Life Insurance
  • Insurance terminology
  • SDLC Life Cycle
  • STLC
  • Testing terminologies
Interview preparation tips for other job seekers - Be prepared with insurance terms and terminologies. Also prepare for testing terminologies and techniques.

Interview questions from similar companies

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

I applied via Job Portal and was interviewed before Nov 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all tips
Round 2 - Aptitude Test 

J a v a, s p

Round 3 - Technical 

(3 Questions)

  • Q1. What is spring ?
  • Ans. 

    Spring is a lightweight framework for building Java applications.

    • Provides comprehensive infrastructure support for developing Java applications

    • Promotes good design practices such as dependency injection and aspect-oriented programming

    • Facilitates easier integration with other frameworks and libraries

    • Includes modules like Spring Core, Spring MVC, Spring Security, etc.

    • Example: Inversion of Control (IoC) container in Sprin...

  • Answered by AI
  • Q2. What is difference between spring and spring boot
  • Ans. 

    Spring is a framework for building Java applications, while Spring Boot is an extension that simplifies the setup and development process.

    • Spring is a comprehensive framework for building Java applications, providing features like dependency injection, aspect-oriented programming, and more.

    • Spring Boot is an extension of the Spring framework that simplifies the setup and development process by providing defaults for conf...

  • Answered by AI
  • Q3. What is design pattern
  • Ans. 

    Design pattern is a reusable solution to a commonly occurring problem in software design.

    • Design patterns help in creating efficient, scalable, and maintainable software.

    • They provide a common language for developers to communicate and understand each other's code.

    • Examples include Singleton, Factory, Observer, and Strategy patterns.

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at VNR Vignan Jyothi Institute of Engineering and Technology, Hyderabad and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Coding Test 

5 coding questions, 2-medium and 3 easy - medium

Round 2 - Technical 

(4 Questions)

  • Q1. Linked List Concept
  • Q2. DSA: prime no. or not optimal approach
  • Ans. 

    Optimal approach for checking if a number is prime or not using DSA

    • Optimal approach for checking prime numbers is to iterate up to square root of the number

    • Use trial division method to check divisibility by numbers up to square root of the number

    • Time complexity of this approach is O(sqrt(n))

  • Answered by AI
  • Q3. Class, object with real time examples
  • Ans. 

    A class is a blueprint for creating objects, which are instances of the class. Objects have attributes and behaviors.

    • Classes define the structure and behavior of objects.

    • Objects are instances of classes and have their own unique attributes and behaviors.

    • Example: Class 'Car' with attributes like 'color' and behaviors like 'drive'. Object 'myCar' is an instance of 'Car' with color 'red' and can drive.

    • Example: Class 'Pers...

  • Answered by AI
  • Q4. SQL types of normal forms
  • Ans. 

    SQL normal forms are levels of organization for relational databases to reduce redundancy and improve data integrity.

    • First normal form (1NF) - Eliminate repeating groups and ensure each column contains atomic values.

    • Second normal form (2NF) - Meet 1NF requirements and have all non-key attributes fully functionally dependent on the primary key.

    • Third normal form (3NF) - Meet 2NF requirements and have no transitive depend...

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. About Projects and contribution in that
  • Q2. Managerial Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on projects, dsa, subjects, and sql mainly

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Basic oops consept.
Round 2 - One-on-one 

(1 Question)

  • Q1. About your last work experience
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Laravel function
  • Q2. MySQL querirs
  • Q3. Deal with millions data on db
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected

I applied via Campus Placement

Round 1 - Technical 

(1 Question)

  • Q1. Easy coding questions
Round 2 - One-on-one 

(1 Question)

  • Q1. DSA questions , palindrome
Round 3 - HR 

(1 Question)

  • Q1. Why are you joining this company
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Easy level DSA questions are there

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about yourself
  • Q2. Projects discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(6 Questions)

  • Q1. What is opps explain in details
  • Ans. 

    Object-oriented programming (OOP) is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems

    • It involves concepts like classes, objects, inheritance, polymorphism, and encapsulation

    • Example: In a banking system, you can have classes like Account, Customer, and Tra

  • Answered by AI
  • Q2. What is string and string builder
  • Ans. 

    String is a sequence of characters, while StringBuilder is a mutable sequence of characters used for manipulating strings efficiently.

    • String is immutable in Java, meaning once created, it cannot be changed.

    • StringBuilder is mutable and allows for efficient manipulation of strings.

    • String concatenation using '+' operator creates a new string object each time, while StringBuilder's append method modifies the existing objec...

  • Answered by AI
  • Q3. What is boxing and unboxing
  • Ans. 

    Boxing is the process of converting a value type to a reference type, while unboxing is the opposite process.

    • Boxing is done implicitly by the compiler when a value type is assigned to a reference type variable.

    • Unboxing requires explicit casting to convert a reference type back to a value type.

    • Example: int num = 10; object obj = num; // Boxing

    • Example: int num2 = (int)obj; // Unboxing

  • Answered by AI
  • Q4. What is difference btw interface and abstract and why we use them
  • Ans. 

    Interfaces define a contract for classes to implement, while abstract classes can have both abstract and concrete methods.

    • Interfaces can only have abstract methods and constants, while abstract classes can have both abstract and concrete methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used for achieving multiple inheritance in Java, while abstract classes ar...

  • Answered by AI
  • Q5. What r the validations used in asp.net
  • Ans. 

    ASP.NET uses various validations like RequiredFieldValidator, RangeValidator, RegularExpressionValidator, etc.

    • RequiredFieldValidator - Ensures a field is not left blank

    • RangeValidator - Validates if a value falls within a specified range

    • RegularExpressionValidator - Validates input based on a specified pattern

  • Answered by AI
  • Q6. What is API and what are its type
  • Ans. 

    API stands for Application Programming Interface. It defines the methods and data formats that applications can use to communicate with each other.

    • APIs can be classified into different types such as RESTful APIs, SOAP APIs, and GraphQL APIs.

    • RESTful APIs use standard HTTP methods like GET, POST, PUT, DELETE to perform operations on resources.

    • SOAP APIs use XML-based messaging protocol for communication between applicatio...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Paramount Health Services Tpa Junior Software Developer interview:
  • Web Api
  • ASP.Net
  • C#.Net
  • Java script
  • Html css
Interview preparation tips for other job seekers - Simple interview process just make the basics concepts clear and you will be selected

Skills evaluated in this interview

I applied via campus placement at Birla Institute of Technology (BIT), Ranchi and was interviewed in Aug 2021. There were 2 interview rounds.

Round 1 - Coding Test 

There were 2coding questions. I don't remember the exact coding questions but they were of moderate level. Basically, arrays and linked-list questions.

Round 2 - Technical 

(2 Questions)

  • Q1. Prior to the technical interview, there was pre-placement talk in the morning as the talk ended they started the interviews.
  • Q2. Introduction questions on JAVA i.e. diff. between c++ and java, oops concept, discussion on a programming question Data structures related questions. All questions were basically from what you mentioned in...

Interview Preparation Tips

Topics to prepare for Aegon Life Insurance Software Trainee interview:
  • Java
  • Data Structures
  • C++
  • Programming
Interview preparation tips for other job seekers - Just prepare what you have mentioned in your resume.
and programming language
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

After 3 sections of aptitude, English and core subjects, there were two coding problems both based on string one was easy and other was medium.

Round 2 - Technical 

(5 Questions)

  • Q1. Explain the projects in your resume
  • Ans. 

    Developed a web-based project management tool for tracking tasks and deadlines

    • Utilized HTML, CSS, JavaScript for front-end development

    • Used PHP and MySQL for back-end functionality

    • Implemented user authentication and authorization features

    • Integrated calendar and notification system for task reminders

  • Answered by AI
  • Q2. Explain the backend side of your project
  • Ans. 

    The backend of my project is responsible for handling server-side logic and data processing.

    • Implemented RESTful APIs for communication between frontend and backend

    • Used Node.js and Express for server-side scripting

    • Utilized MongoDB for database management

    • Implemented authentication and authorization using JWT tokens

  • Answered by AI
  • Q3. How did you implement concepts of OOP in your projects
  • Ans. 

    I implemented concepts of OOP in my projects by creating classes, objects, inheritance, encapsulation, and polymorphism.

    • Used classes to represent real-world entities

    • Implemented inheritance to reuse code and create a hierarchy of classes

    • Utilized encapsulation to hide data and restrict access to it

    • Applied polymorphism to allow objects of different classes to be treated as objects of a common superclass

  • Answered by AI
  • Q4. How to handle duplicate entries in the database
  • Ans. 

    Duplicate entries in the database can be handled by using unique constraints, deduplication scripts, or merging duplicate records.

    • Use unique constraints in the database schema to prevent duplicate entries.

    • Implement deduplication scripts to regularly scan and remove duplicate records.

    • Merge duplicate records by updating one record with the information from the other duplicate record.

  • Answered by AI
  • Q5. Write a code to tell whether a string is palindrome or not
  • Ans. 

    Code to check if a string is a palindrome or not

    • Create a function that takes a string as input

    • Remove all non-alphanumeric characters and convert to lowercase

    • Compare the string with its reverse to check if it's a palindrome

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Principal Global Services Software Developer interview:
  • Java
  • Backend
  • OOPS
  • DBMS
Interview preparation tips for other job seekers - Be confident, it is easy to crack

Skills evaluated in this interview

Future Generali India Life Insurance Interview FAQs

How many rounds are there in Future Generali India Life Insurance Softwaretest Engineer interview?
Future Generali India Life Insurance interview process usually has 3 rounds. The most common rounds in the Future Generali India Life Insurance interview process are Telephonic Call, Technical and Aptitude Test.

Tell us how to improve this page.

Future Generali India Life Insurance Softwaretest Engineer Salary
based on 5 salaries
₹3.7 L/yr - ₹7.4 L/yr
6% less than the average Softwaretest Engineer Salary in India
View more details
Sales Manager
383 salaries
unlock blur

₹2.2 L/yr - ₹6 L/yr

Deputy Manager
236 salaries
unlock blur

₹4 L/yr - ₹15.9 L/yr

Assistant Branch Manager
235 salaries
unlock blur

₹3.8 L/yr - ₹6.6 L/yr

Senior Executive
225 salaries
unlock blur

₹2.2 L/yr - ₹7.4 L/yr

Senior Sales Manager
225 salaries
unlock blur

₹3 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Future Generali India Life Insurance with

ICICI Lombard General Insurance Company

3.7
Compare

HDFC Ergo General Insurance

3.9
Compare

Bajaj Allianz General Insurance

3.9
Compare

Reliance General Insurance

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