AmbitionBox

AmbitionBox

Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
  • Home
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Awards 2024
  • Campus Placements
  • Practice Test
  • Compare Companies
+ Contribute
notification
notification
Login
  • Home
  • Communities
  • Companies
    • Companies

      Discover best places to work

    • Compare Companies

      Compare & find best workplace

    • Add Office Photos

      Bring your workplace to life

    • Add Company Benefits

      Highlight your company's perks

  • Reviews
    • Company reviews

      Read reviews for 6L+ companies

    • Write a review

      Rate your former or current company

  • Salaries
    • Browse salaries

      Discover salaries for 6L+ companies

    • Salary calculator

      Calculate your take home salary

    • Are you paid fairly?

      Check your market value

    • Share your salary

      Help other jobseekers

    • Gratuity calculator

      Check your gratuity amount

    • HRA calculator

      Check how much of your HRA is tax-free

    • Salary hike calculator

      Check your salary hike

  • Interviews
    • Company interviews

      Read interviews for 40K+ companies

    • Share interview questions

      Contribute your interview questions

  • Jobs
  • Awards
    pink star
    VIEW WINNERS
    • ABECA 2025
      VIEW WINNERS

      AmbitionBox Employee Choice Awards - 4th Edition

    • ABECA 2024

      AmbitionBox Employee Choice Awards - 3rd Edition

    • AmbitionBox Best Places to Work 2022

      2nd Edition

    Participate in ABECA 2026 right icon dark
For Employers
Upload Button Icon Add office photos
logo
Employer? Claim Account for FREE

Flexera Software

Compare button icon Compare button icon Compare
4.2

based on 71 Reviews

Play video Play video Video summary
  • About
  • Reviews
    71
  • Salaries
    736
  • Interviews
    10
  • Jobs
    24
  • Benefits
    11
  • Photos
    10
  • Posts
    1

Filter interviews by

Flexera Software Software Engineer Interview Questions and Answers

Updated 1 Apr 2023

Flexera Software Software Engineer Interview Experiences

1 interview found

Software Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Apr 2023

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(1 Question)

  • Q1. Related to DSA, language was Golang, mandatory, based on my profile
  • Add your answer
Round 3 - Technical 

(1 Question)

  • Q1. Related to DSA and my previous company work experience
  • Add your answer
Round 4 - Technical 

(1 Question)

  • Q1. DSA, Concurrency in Golnag, my previous company work experience and Cloud knowledge, Docker Kubernetes Knowledge
  • Add your answer
Round 5 - One-on-one 

(1 Question)

  • Q1. Manegerial round, with my team manager
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Understand concurrent programming in depth
2. Do not memorize coding questions
3. If stuck, honestly tell and request for some other question
4. Don't fake any past experience
Anonymous

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 Flexera Software?
Ask anonymously on communities.

Interview questions from similar companies

company Logo

Associate Software Engineer Interview Questions & Answers

Gen user image Anonymous

posted on 4 Dec 2016

I applied via Campus Placement and was interviewed in Jan 2016. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Questions on linked list
  • Add your answer
  • Q2. Questions on resume
  • Add your answer
  • Q3. About my interests
  • Add your answer
  • Q4. My interest in symantec
  • Add your answer
  • Q5. Place to work
  • Add your answer

Interview Preparation Tips

College Name: IIT Madras
Anonymous

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Four people need to cross a bridge at night with only one torch t ... read more
Add answer
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
View answers (530)
asked in Tech Mahindra
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
View answers (81)
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
View answers (22)
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more
View answers (9)
View All
company Logo

Associate Software Engineer Interview Questions & Answers

Gen user image Anonymous

posted on 4 Dec 2016

I applied via Campus Placement and was interviewed in Dec 2016. There were 5 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. How you find loop in a linked list
  • Ans. 

    To find a loop in a linked list, we use Floyd's cycle-finding algorithm.

    • Floyd's cycle-finding algorithm uses two pointers, one moving at twice the speed of the other.

    • If there is a loop in the linked list, the two pointers will eventually meet.

    • To detect the meeting point, we reset one of the pointers to the head of the linked list and move both pointers at the same speed.

    • The meeting point is the start of the loop.

  • Answered by AI
    Add your answer
  • Q2. What is LRU, MRU and LFU
  • Ans. 

    LRU, MRU and LFU are caching algorithms used to manage memory in computer systems.

    • LRU stands for Least Recently Used and removes the least recently used items from the cache when the cache is full.

    • MRU stands for Most Recently Used and removes the most recently used items from the cache when the cache is full.

    • LFU stands for Least Frequently Used and removes the least frequently used items from the cache when the cache i...

  • Answered by AI
    Add your answer
  • Q3. Camel banana problem
  • Add your answer

Interview Preparation Tips

Round: Test
Experience: coding test in hacker rank. can code in any language except in C and C++.
Duration: 1 hour
Total Questions: 2

Round: Technical Interview
Experience: In technical round the questions are on OS, basics of C(mainly in linked lists) and maths puzzle

They mostly see how you are approaching towards a problem.
It is first time that I heard the camel banana problem. So I struggled for some time and came up with a solution. He said he liked the approach but it can be optimized.

Round: HR Interview
Experience: It started with explain about yourselves. and then he asked to explain about one project with technical details. Later he asked me to explain binary search for a guy who don't know much of technical knowledge. He continued with why we only do 2 partitions why can we make it up to 3. Later he asked me what I liked most in my mobile phone. I said chatting apps. So he asked me that if I was hired as a developer to make a chatting app how will I do it.
Tips: way of thinking and way of approaching towards a problem.

Round: HR Interview
Experience: This round was focused mainly on whether I like to work in Bangalore or not. How I first heard about Symantec. how I will suit for the company. what are my future plans.

Skills: C, OS, Math Puzzles
College Name: IIT Madras

Skills evaluated in this interview

Anonymous
company Logo

Software Engineer Interview Questions & Answers

Elevate Services user image Anonymous

posted on 27 Aug 2017

I appeared for an interview in Jun 2017.

Interview Questionnaire 

2 Questions

  • Q1. What is HTML, PHP and CSS
  • Ans. 

    HTML, PHP, and CSS are programming languages used for creating and designing websites.

    • HTML (Hypertext Markup Language) is used for creating the structure and content of web pages.

    • PHP (Hypertext Preprocessor) is a server-side scripting language used for creating dynamic web pages.

    • CSS (Cascading Style Sheets) is used for styling and formatting the layout of web pages.

    • Example: HTML is used to create headings, paragraphs, ...

  • Answered by AI
    Add your answer
  • Q2. In my technical test, they asked me to replicate the privacy pages of Twitter and facebook.
  • Add your answer

Interview Preparation Tips

Round: Resume Shortlist
Experience: I was referred to by a friend so this step was comparatively easier.
Tips: Resume should be straightforward and extra and incomplete information should be avoided.

Round: Technical + HR Interview
Experience: A formal face to face interview was conducted. They tested my past knowledge about concepts related to the functioning of their company. It was a smooth interview.
Tips: Be confident, and if you are not thorough with a particular topic, be straightforward and tell the interviewer. Honesty is the best policy to crack an interview.

Round: Client interview
Experience: In this round, a conference call was held between the client in US and me. I was expected to put my exisiting knowledge in to practice to solve the problem at hand.
Tips: Be clear and concise and communicate appropriately. At this stage, a proficiency in English language and a good command over it is a must. Even if you are nervous and sweating, don't EVER show it.

Skills: Technical Analysis, Communication

Skills evaluated in this interview

Anonymous
company Logo

Software Engineer Interview Questions & Answers

Gen user image Anonymous

posted on 5 Mar 2021

I applied via LinkedIn and was interviewed in Sep 2020. There was 1 interview round.

Interview Questionnaire 

6 Questions

  • Q1. Data structure and C++
  • Add your answer
  • Q2. Reverse Linked list
  • Ans. 

    Reversing a linked list involves changing the direction of its nodes to point to the previous node instead of the next.

    • Iterative approach: Use three pointers (prev, current, next) to reverse the links.

    • Example: For list 1 -> 2 -> 3, after reversal it becomes 3 -> 2 -> 1.

    • Recursive approach: Reverse the rest of the list and adjust the pointers accordingly.

    • Example: For list 4 -> 5 -> 6, recursively revers...

  • Answered by AI
    Add your answer
  • Q3. Multi threaded queue
  • Add your answer
  • Q4. Design pattern
  • Add your answer
  • Q5. Basic C++ concepts
  • Add your answer
  • Q6. Puzzles
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Solve data structure problems
Anonymous
company Logo

Software Engineer Interview Questions & Answers

Mobileum user image Anonymous

posted on 21 Sep 2021

I applied via Naukri.com and was interviewed in Mar 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Core java concepts
  • Add your answer
  • Q2. Multithreading questions
  • Add your answer
  • Q3. Previous project details
  • Ans. 

    Developed a web application for managing customer orders and inventory

    • Used Java and Spring framework for backend development

    • Implemented a responsive user interface using HTML, CSS, and JavaScript

    • Integrated with a relational database for data storage and retrieval

    • Implemented authentication and authorization features for secure access

    • Performed unit testing and bug fixing throughout the development process

  • Answered by AI
    Add your answer
  • Q4. Java Programs
  • Add your answer

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in basics and practice coding questions to increase performance and quality of code
Anonymous
company Logo

Software Engineer Interview Questions & Answers

Backbase user image anusha jabu

posted on 22 Apr 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. More about API automation
  • Add your answer
Anonymous
Are these interview questions helpful?
company Logo

Software Engineer Interview Questions & Answers

SOTI user image Anonymous

posted on 6 Feb 2024

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Coding Test 

Coding round and level was good, one araay question and two dp questions

Round 2 - Technical 

(1 Question)

  • Q1. Interview round was also good, questions asked from stack and queues, puzzle, dbms, sql, and dsa problem
  • Add your answer
Anonymous
company Logo

Associate Software Engineer Interview Questions & Answers

Bentley Systems user image Anonymous

posted on 23 Dec 2022

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via CoCubes and was interviewed before Dec 2021. There were 5 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 - Coding Test 

There were some basic aptitude questions and OOP questions as MCQs. At the end there was a simple conding question.

Round 3 - Technical 

(2 Questions)

  • Q1. What is pre/post increment/decrement operator?
  • Ans. 

    Pre/post increment/decrement operators are used to increase/decrease the value of a variable by 1.

    • Pre-increment operator (++x) increases the value of x by 1 before using it in an expression.

    • Post-increment operator (x++) increases the value of x by 1 after using it in an expression.

    • Pre-decrement operator (--x) decreases the value of x by 1 before using it in an expression.

    • Post-decrement operator (x--) decreases the valu...

  • Answered by AI
    Add your answer
  • Q2. Projects worked on Internships
  • Ans. 

    I have worked on various projects and internships during my time as a software engineer.

    • Developed a web application for a retail company to manage inventory and sales.

    • Collaborated with a team to create a mobile app for a healthcare startup to track patient vitals.

    • Implemented a machine learning algorithm for a research project in the field of natural language processing.

    • Optimized database queries and improved performanc...

  • Answered by AI
    Add your answer
Round 4 - Technical 

(3 Questions)

  • Q1. Program to find middle of a linked list
  • Ans. 

    Program to find middle of a linked list

    • Traverse the linked list using two pointers, one moving twice as fast as the other

    • When the faster pointer reaches the end, the slower pointer will be at the middle

    • Handle even and odd length linked lists separately

  • Answered by AI
    Add your answer
  • Q2. Discussion on projects and internships
  • Add your answer
  • Q3. Other simple DSA questions
  • Add your answer
Round 5 - Technical 

(3 Questions)

  • Q1. What data structures would you use to save images?
  • Ans. 

    I would use a binary format like JPEG or PNG to save images.

    • JPEG and PNG are common binary formats used to save images.

    • These formats use compression to reduce file size without losing quality.

    • Other options include BMP, GIF, and TIFF, but they may not be as efficient.

    • Images can also be saved as arrays of pixels or as vectors, depending on the type of image.

    • The choice of data structure depends on the specific use case an...

  • Answered by AI
    Add your answer
  • Q2. Write a function to swap. What exceptions it may throw?
  • Ans. 

    Function to swap two variables and possible exceptions

    • Function should take two variables as input

    • Use a temporary variable to swap the values

    • Possible exceptions include null pointer exception or out of bounds exception

  • Answered by AI
    View 1 more answer
  • Q3. System design of a carrom board game
  • Ans. 

    Designing a carrom board game system

    • Define game rules and mechanics

    • Create game board and pieces

    • Implement player turns and scoring system

    • Include AI for single player mode

    • Consider multiplayer options and networking

    • Test and debug thoroughly

  • Answered by AI
    Add your answer

Interview Preparation Tips

Topics to prepare for Bentley Systems Associate Software Engineer interview:
  • C
  • C++
  • Javascript
  • React.Js
  • C#
Interview preparation tips for other job seekers - Keep your fundamentals strong. Do some projects. Have good communication.

Skills evaluated in this interview

Anonymous
company Logo

Software Engineer Interview Questions & Answers

Bentley Systems user image Anonymous

posted on 19 Aug 2023

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Company Website and was interviewed before Aug 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 - HR 

(2 Questions)

  • Q1. Describe a time when y ou had to learn a new kill to complete a project
  • Ans. 

    I learned a new programming language to implement a critical feature in a project, enhancing my skills and the project's success.

    • Project Requirement: I was tasked with integrating a new feature that required knowledge of Python, which I had not used before.

    • Self-Study: I dedicated evenings to online courses and tutorials, focusing on Python's syntax and libraries relevant to the project.

    • Hands-On Practice: I built small ...

  • Answered by AI
    Add your answer
  • Q2. Tell me about your resume
  • Add your answer
Round 3 - Coding Test 

Reverse a given string using for loop

Interview Preparation Tips

Topics to prepare for Bentley Systems Software Engineer interview:
  • Data Structures
  • Algorithms
  • Coding
Interview preparation tips for other job seekers - Master Data Structures and Algorithms and be prepared to talk your experience written in your resume
Anonymous
More about working at Flexera Software
  • HQ - Itasca, Illinois, United States Of America
  • Software Product
  • 201-500 Employees (India)
  • Hardware & Networking

Flexera Software Interview FAQs

How many rounds are there in Flexera Software Software Engineer interview?
Flexera Software interview process usually has 5 rounds. The most common rounds in the Flexera Software interview process are Technical, Resume Shortlist and One-on-one Round.
How to prepare for Flexera Software Software Engineer 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 Flexera Software. The most common topics and skills that interviewers at Flexera Software expect are Cloud, Automation, Equity, Javascript and SQL.

Tell us how to improve this page.

Flexera Software Interviews By Designations

  • Flexera Software Associate Software Engineer Interview Questions
  • Flexera Software Content Analyst Engineer Interview Questions
  • Flexera Software Senior Software Development Engineer Interview Questions
  • Flexera Software Associate Software Developer Interview Questions
  • Flexera Software Sales Interview Questions
  • Flexera Software Software Engineer Interview Questions

Interview Questions for Popular Designations

  • Software Developer Interview Questions
  • Senior Software Engineer Interview Questions
  • Senior Engineer Interview Questions
  • System Engineer Interview Questions
  • Associate Software Engineer Interview Questions
  • Project Engineer Interview Questions
  • Lead Engineer Interview Questions
  • Software Development Engineer Interview Questions
  • Show more
  • Lead Software Engineer Interview Questions
  • Senior Developer Interview Questions

Overall Interview Experience Rating

5/5

based on 2 interview experiences

Software Engineer Interview Questions from Similar Companies

Yodlee
Yodlee Software Engineer Interview Questions
3.9
 • 4 Interviews
SOTI
SOTI Software Engineer Interview Questions
3.2
 • 3 Interviews
Mobileum
Mobileum Software Engineer Interview Questions
3.3
 • 2 Interviews
Bottomline
Bottomline Software Engineer Interview Questions
3.4
 • 2 Interviews
SailPoint Technologies
SailPoint Technologies Software Engineer Interview Questions
4.2
 • 2 Interviews
Cornerstone OnDemand
Cornerstone OnDemand Software Engineer Interview Questions
3.5
 • 1 Interview
Backbase
Backbase Software Engineer Interview Questions
3.7
 • 1 Interview
Bentley Systems
Bentley Systems Software Engineer Interview Questions
4.3
 • 1 Interview
3Pillar Global
3Pillar Global Software Engineer Interview Questions
3.2
 • 1 Interview
Guidewire Software
Guidewire Software Software Engineer Interview Questions
4.6
 • 1 Interview
View all
Flexera Software Software Engineer Salary
based on 67 salaries
₹8.8 L/yr - ₹15.8 L/yr
31% more than the average Software Engineer Salary in India
View more details

Flexera Software Software Engineer Reviews and Ratings

based on 7 reviews

4.6/5

Rating in categories

4.5

Skill development

4.1

Work-life balance

3.9

Salary

4.4

Job security

4.6

Company culture

3.8

Promotions

4.3

Work satisfaction

Explore 7 Reviews and Ratings
Flexera Software Salaries in India
Senior Software Engineer
85 salaries
unlock blur

₹18.5 L/yr - ₹32 L/yr

Software Engineer
67 salaries
unlock blur

₹8.8 L/yr - ₹15.8 L/yr

Member Technical Staff
58 salaries
unlock blur

₹24.1 L/yr - ₹42.4 L/yr

Software Developer
23 salaries
unlock blur

₹5.6 L/yr - ₹15.5 L/yr

Senior Software Development Engineer
21 salaries
unlock blur

₹12.1 L/yr - ₹21.5 L/yr

Explore more salaries
Compare Flexera Software with
Duck Creek Technologies

Duck Creek Technologies

4.4
Compare
Mobileum

Mobileum

3.3
Compare
OnProcess Technology

OnProcess Technology

3.8
Compare
Yodlee

Yodlee

3.9
Compare
Popular Calculators
Are you paid fairly?
Monthly In-hand Salary Calculator
Gratuity Calculator
HRA Calculator
Salary Hike Calculator
  • Home >
  • Interviews >
  • Flexera Software Interview Questions
write
Share an Interview
Stay ahead in your career. Get AmbitionBox app
Awards Banner

Trusted by over 1.5 Crore job seekers to find their right fit company

80 Lakh+

Reviews

4 Crore+

Salaries

10 Lakh+

Interviews

1.5 Crore+

Users

Contribute
Search

Interview Questions

  • Reviews
  • Salaries
  • Interview Questions
  • About Company
  • Benefits
  • Jobs
  • Office Photos
  • Community
Users/Jobseekers
  • Companies
  • Reviews
  • Salaries
  • Jobs
  • Interviews
  • Salary Calculator
  • Practice Test
  • Compare Companies
Employers
  • Create a new company
  • Update company information
  • Respond to reviews
  • Invite employees to review
  • AmbitionBox Offering for Employers
  • AmbitionBox Employers Brochure
AmbitionBox Awards
  • ABECA 2025 winners awaited tag
  • Participate in ABECA 2026
  • Invite employees to rate
AmbitionBox
  • About Us
  • Our Team
  • Email Us
  • Blog
  • FAQ
  • Credits
  • Give Feedback
Terms & Policies
  • Privacy
  • Grievances
  • Terms of Use
  • Summons/Notices
  • Community Guidelines
Get AmbitionBox app

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2025 Info Edge (India) Ltd.

Follow Us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter