Upload Button Icon Add office photos

Filter interviews by

Flexagon Technosolutions Interview Questions and Answers

Be the first one to contribute and help others!

Interview questions from similar companies

I applied via Campus Placement and was interviewed in May 2020. There were 6 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1.In frst round they gave two programs like palindrome,leap year which is quite easy only, aptitude consists of 60qns .
  • Q2. 2.In second round which is technical round, again they gave one pgm which is lightly complicated and also questions will be asked based on our resume and branch.
  • Q3. 3.HR round based on your personal skill.

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to be perfect in basic coding and also aptitude,it is not much tough and also be bold while answering in technical round,try to do more projects......

I applied via Walk-in and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude Test is very straight forward, logical, communications are tested.

Round 2 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Q2. What is your family background?
  • Q3. Share details of your previous job.
  • Q4. Why are you looking for a change?
  • Q5. What are your strengths and weaknesses?
  • Q6. Tell me about yourself.
Round 3 - Technical 

(1 Question)

  • Q1. This is managers round, where a senior most probably a team lead would join to interview. Case study based questions were asked.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and prepared. Question will vary from GL to Leder reconciliation if you're applying for GL Process

I applied via Recruitment Consulltant and was interviewed before Mar 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning,vocabulary

Round 2 - One-on-one 

(2 Questions)

  • Q1. Coding qsns Java oops concept, program for palindrome, other basic programs
  • Ans. 

    Interview question for Associate Software Engineer on Java OOPs concept and basic programs including palindrome.

    • Explain OOPs concepts like inheritance, polymorphism, and encapsulation.

    • Write a program to check if a given string is a palindrome or not.

    • Write basic programs like Fibonacci series, factorial, and prime numbers.

    • Demonstrate knowledge of Java syntax and data types.

    • Use appropriate coding conventions and best pra...

  • Answered by AI
  • Q2. Write a program for differentiate odd and even nos
  • Ans. 

    Program to differentiate odd and even numbers.

    • Use modulus operator to check if number is divisible by 2

    • If remainder is 0, number is even else odd

    • Print the result accordingly

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Which is more developed country India r china

Interview Preparation Tips

Topics to prepare for Mphasis Associate Software Engineer interview:
  • Java
Interview preparation tips for other job seekers - Prepare for aptitude, and programming

I appeared for an interview before Dec 2020.

Round 1 - Face to Face 

(5 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round focused more on the Operating Systems part followed by some questions from Microservices Architecture.

  • Q1. What is a bootstrap program in an operating system?
  • Ans. 

    Bootstrap program is the initial code that runs when a computer is powered on, loading the operating system into memory.

    • Bootstrap program is stored in ROM or firmware.

    • It initializes the system hardware and loads the operating system kernel into memory.

    • Examples include BIOS in PCs and UEFI in modern systems.

  • Answered by AI
  • Q2. What is memory protection in operating systems?
  • Ans. 

    Memory protection in operating systems is a feature that prevents a process from accessing memory that has not been allocated to it.

    • Memory protection helps prevent one process from interfering with the memory of another process.

    • It ensures that each process can only access memory that has been allocated to it.

    • Examples of memory protection mechanisms include segmentation and paging.

    • Segmentation divides memory into segmen...

  • Answered by AI
  • Q3. What are the four necessary and sufficient conditions that lead to a deadlock?
  • Ans. 

    Four necessary and sufficient conditions for deadlock

    • Mutual exclusion: Resources cannot be shared between processes. Example: Process A holding Resource 1 and waiting for Resource 2, while Process B holding Resource 2 and waiting for Resource 1.

    • Hold and wait: Processes hold resources while waiting for others. Example: Process A holding Resource 1 and waiting for Resource 2, while Process B holding Resource 2 and waitin...

  • Answered by AI
  • Q4. What are the fundamental characteristics of a Microservices design?
  • Ans. 

    Microservices design is characterized by modularity, independence, scalability, and resilience.

    • Modularity: Microservices are designed as independent modules that can be developed, deployed, and scaled separately.

    • Independence: Each microservice operates independently and communicates with other services through APIs.

    • Scalability: Microservices allow for scaling specific components of an application based on demand.

    • Resili...

  • Answered by AI
  • Q5. What are the different strategies for deploying microservices?
  • Ans. 

    Different strategies for deploying microservices include blue-green deployment, canary deployment, rolling deployment, and feature flagging.

    • Blue-green deployment involves running two identical production environments, with one serving as the active environment while the other is on standby. Traffic is switched from one environment to the other once the new version is deemed stable.

    • Canary deployment gradually rolls out ...

  • Answered by AI
Round 2 - Face to Face 

(6 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

This round was preety much mixed and contained questions from DBMS, Java and more importantly Spring Boot.

  • Q1. Why is normalization needed in a database?
  • Ans. 

    Normalization is needed in a database to reduce data redundancy, improve data integrity, and optimize database performance.

    • Eliminates data redundancy by breaking down data into smaller tables

    • Reduces update anomalies and inconsistencies in data

    • Improves data integrity by enforcing relationships between tables

    • Optimizes database performance by reducing storage space and improving query efficiency

  • Answered by AI
  • Q2. What are views in SQL?
  • Ans. 

    Views in SQL are virtual tables that are generated based on the result set of a SELECT query.

    • Views are not stored physically in the database, but are dynamically generated when queried.

    • They can be used to simplify complex queries by encapsulating logic and joining multiple tables.

    • Views can also be used to restrict access to certain columns or rows of a table.

    • Example: CREATE VIEW vw_employee AS SELECT emp_id, emp_name F

  • Answered by AI
  • Q3. What is dependency injection?
  • Ans. 

    Dependency injection is a design pattern where components are given their dependencies rather than creating them internally.

    • Allows for easier testing by providing mock dependencies

    • Promotes loose coupling between components

    • Improves code reusability and maintainability

    • Examples: Constructor injection, Setter injection, Interface injection

  • Answered by AI
  • Q4. What is the use of profiles in Spring Boot?
  • Ans. 

    Profiles in Spring Boot allow for different configurations to be applied based on the environment or specific needs.

    • Profiles can be used to define different sets of configurations for different environments such as development, testing, and production.

    • By using profiles, you can easily switch between configurations without changing the code.

    • Profiles are typically defined in application.properties or application.yml file...

  • Answered by AI
  • Q5. What are the various access specifiers in Java?
  • Ans. 

    Access specifiers in Java control the visibility of classes, methods, and variables.

    • There are four access specifiers in Java: public, protected, default (no specifier), and private.

    • Public: accessible from any other class.

    • Protected: accessible within the same package or subclasses.

    • Default: accessible only within the same package.

    • Private: accessible only within the same class.

  • Answered by AI
  • Q6. What is a JIT compiler?
  • Ans. 

    JIT compiler stands for Just-In-Time compiler, which compiles code during runtime instead of ahead of time.

    • JIT compiler translates bytecode into machine code on the fly

    • Improves performance by optimizing frequently executed code

    • Examples include Java HotSpot, .NET CLR's JIT compiler

  • Answered by AI
Round 3 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

This is a cultural fitment testing round .HR was very frank and asked standard questions. Then we discussed about my role.

  • Q1. Why should we hire you?
  • Q2. Why are you looking for a job change?

Interview Preparation Tips

Eligibility criteriaAbove 2 years of experienceMphasis interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Business processes
  • Q2. Strong behavioral Competency

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and clear on the answers

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

Interview Questionnaire 

1 Question

  • Q1. Process related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - it's good

I applied via Walk-in and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was basically logical questions on maths, grammar,& on comprehensive passage

Round 2 - HR 

(1 Question)

  • Q1. It was on self introduction.& Previous company working had been asked by HR

Interview Preparation Tips

Interview preparation tips for other job seekers - It is very nice company to work on & can learn alot of good things.

Associate Interview Questions & Answers

WNS user image Anonymous

posted on 14 Jul 2021

I applied via LinkedIn and was interviewed before Jul 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is companies future goals?

Interview Preparation Tips

Interview preparation tips for other job seekers - Grow with company

Interview Questionnaire 

2 Questions

  • Q1. What is the salary expected
  • Q2. I told that besad on our company CCT , that what u are kept for freshers

Interview Preparation Tips

Interview preparation tips for other job seekers - When iam going to interview first I was tansioned alot, but we should not fear , then after when we enter we should give respect to sir or mam ,hr ,after when I intered to interview I was scared, then the hr was want to test me my knowledge and skills , so after that hr sir was asked me the questions , and my slef I thought one thing that, I should have self confidence and I will get the job , so that relifed one secound and , I anwered all the questions , without fail , that the main thing we should not fear ,and we should check the resume , when we are going to inside the interview room , and we should have the confidence self confidence,then u wile be the one that u reach ur goals ,thank u

Interview Questionnaire 

1 Question

  • Q1. 1. difference between applicationContext and beanFactory. 2. questions related to synchronization in multi threading.

Tell us how to improve this page.

Interview Questions from Similar Companies

Flipkart Interview Questions
3.9
 • 1.4k Interviews
WNS Interview Questions
3.4
 • 1.1k Interviews
Tata Motors Interview Questions
4.2
 • 1k Interviews
Infosys BPM Interview Questions
3.6
 • 972 Interviews
Bharti Airtel Interview Questions
3.9
 • 889 Interviews
Google Interview Questions
4.4
 • 853 Interviews
Mphasis Interview Questions
3.4
 • 816 Interviews
KPMG India Interview Questions
3.5
 • 807 Interviews
DXC Technology Interview Questions
3.7
 • 806 Interviews
View all

Flexagon Technosolutions Reviews and Ratings

based on 8 reviews

4.5/5

Rating in categories

4.7

Skill development

4.4

Work-life balance

4.4

Salary

4.4

Job security

4.7

Company culture

4.5

Promotions

4.4

Work satisfaction

Explore 8 Reviews and Ratings
Software Engineer
19 salaries
unlock blur

₹2 L/yr - ₹6.6 L/yr

Software Developer
14 salaries
unlock blur

₹3.1 L/yr - ₹8 L/yr

Software Testing Engineer
5 salaries
unlock blur

₹4.2 L/yr - ₹6 L/yr

Softwaretest Engineer
5 salaries
unlock blur

₹4 L/yr - ₹5 L/yr

Information Technology Recruiter
5 salaries
unlock blur

₹2.2 L/yr - ₹4.2 L/yr

Explore more salaries
Compare Flexagon Technosolutions with

iEnergizer

4.6
Compare

Bharti Airtel

3.9
Compare

WNS

3.4
Compare

Tata Motors

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