Premium Employer

i

This company page is being actively managed by Gen Team. If you also belong to the team, you can get access from here

Gen Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Gen Interview Questions and Answers

Updated 14 Mar 2025
Popular Designations

21 Interview questions

An Accountant was asked 12mo ago
Q. Do you know what a Purchase Order is?
Ans. 

A purchase order is a document issued by a buyer to a seller, indicating types, quantities, and agreed prices for products or services.

  • Purchase orders are used in business transactions to ensure both parties are in agreement on the terms of the sale.

  • They typically include details such as item descriptions, quantities, prices, payment terms, and delivery dates.

  • Purchase orders help track expenses, manage inventory, ...

View all Accountant interview questions
A Production Manager was asked
Q. What do you like about product management?
Ans. 

I enjoy the strategic planning, problem-solving, and cross-functional collaboration involved in product management.

  • I like the opportunity to work on innovative products and bring them to market.

  • I enjoy analyzing market trends and customer feedback to make data-driven decisions.

  • I appreciate collaborating with various teams such as engineering, marketing, and sales to ensure successful product launches.

View all Production Manager interview questions
A Software Engineer was asked
Q. Find the memory leak in a given set of code.
Ans. 

Identify memory leak in code

  • Check for any dynamically allocated memory that is not being freed

  • Look for any infinite loops or recursive functions that consume memory

  • Use memory profiling tools like Valgrind to detect leaks

  • Check for any global variables that are not properly managed

View all Software Engineer interview questions
A Software Engineer was asked
Q. Write and use a mutex in a multithreaded environment.
Ans. 

A mutex is a synchronization primitive that ensures only one thread can access a resource at a time.

  • Create a mutex object using the appropriate library or language-specific function.

  • Lock the mutex before accessing the shared resource to prevent other threads from accessing it.

  • Unlock the mutex after finishing the operation on the shared resource to allow other threads to access it.

  • Example: pthread_mutex_t mutex; pt...

View all Software Engineer interview questions
A Senior Software Engineer was asked
Q. Design a Cricinfo system (Low-Level Design).
Ans. 

Design a cricinfo (LLD)

  • Identify the entities: players, teams, matches, scorecards, tournaments, etc.

  • Define the relationships between entities

  • Create a database schema to store the data

  • Implement APIs to fetch and update data

  • Design a UI to display the information

  • Consider scalability and performance

  • Ensure data security and privacy

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. Write a function to check if an array has continuously increasing values followed by continuously decreasing values.
Ans. 

Check if array has continuous increasing and decreasing values

  • Loop through the array and check if each element is greater than the previous one

  • Once you find the maximum element, check if the remaining elements are in decreasing order

  • If yes, return true else false

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked
Q. How do you check if a number is a power of 2?
Ans. 

To check if a number is a power of 2, we can use bitwise operations.

  • A power of 2 has only one bit set to 1, so we can use the bitwise AND operator to check if the number is a power of 2.

  • If n is a power of 2, then n & (n-1) will be 0.

  • For example, 8 (1000 in binary) is a power of 2, and 8 & 7 (0111 in binary) is 0.

View all Senior Software Engineer interview questions
Are these interview questions helpful?
A Senior Software Engineer was asked
Q. How do you sort a stack without using another data structure?
Ans. 

Sort a stack without using another data structure

  • Use recursion to pop the top element and insert it at the bottom of the remaining stack

  • Repeat until the stack is sorted in ascending order

  • Time complexity: O(n^2), space complexity: O(n) due to recursion

View all Senior Software Engineer interview questions
A Software Engineer was asked
Q. Given the head of a singly linked list, reverse the list, and return the reversed 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 r...

View all Software Engineer interview questions
An Associate Software Engineer was asked
Q. How do you find a 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.

View all Associate Software Engineer interview questions

Gen Interview Experiences

21 interviews found

Interview Questions & Answers

user image Anonymous

posted on 12 May 2015

Interview Questionnaire 

26 Questions

  • Q1. Project related stuff from current company and from internship, all the questions were from Resume itself
  • Q2. OOPS using C++, was asked almost everything from definition of class to pure virtual functions
  • Q3. Basic Linux commands
  • Q4. General bootup process when computer is turned ON
  • Ans. 

    The general bootup process involves power-on self-test (POST), loading the BIOS, initializing hardware, loading the operating system, and launching user applications.

    • Power-on self-test (POST) checks hardware components for proper functioning

    • BIOS (Basic Input/Output System) is loaded to initialize hardware and locate the operating system

    • Operating system is loaded from the boot device (e.g. hard drive, SSD)

    • User applicati...

  • Answered by AI
  • Q5. Brief intro about projects
  • Ans. 

    I have worked on diverse projects, including web development, data analysis, and machine learning applications.

    • Developed a responsive e-commerce website using React and Node.js, enhancing user experience and increasing sales by 30%.

    • Conducted data analysis for a healthcare startup, utilizing Python and SQL to derive insights that improved patient engagement strategies.

    • Implemented a machine learning model for predictive ...

  • Answered by AI
  • Q6. Discussion about my future interests
  • Q7. Where do I see myself, 5 years from now
  • Q8. Cloud computing
  • Q9. What was the hardest challenge I faced in my current project
  • Ans. 

    The hardest challenge in my current project was managing conflicting stakeholder expectations.

    • Balancing the needs and demands of different stakeholders

    • Navigating conflicting priorities and objectives

    • Finding compromises and solutions that satisfy all parties

    • Communicating effectively to manage expectations

    • Example: Dealing with a situation where the marketing team wanted to launch the product quickly, while the developmen...

  • Answered by AI
  • Q10. Which all software practices that I follow in my current project
  • Ans. 

    In my current project, I follow Agile software development practices.

    • Daily stand-up meetings to discuss progress and roadblocks

    • Sprint planning and review meetings

    • Continuous integration and deployment

    • Use of user stories and acceptance criteria

    • Regular retrospectives to improve team performance

  • Answered by AI
  • Q11. Function to reverse a string
  • Ans. 

    A function to reverse a string in JavaScript

    • Use the split() method to split the string into an array of characters

    • Use the reverse() method to reverse the array

    • Use the join() method to join the array back into a string

  • Answered by AI
  • Q12. How to implement fopen, fseek and other file handling functions in Linux, went to discuss various techniques and various constraints like handling a large file.(Almost discussed it for 50 mins)
  • Ans. 

    The fopen, fseek, and other file handling functions in Linux are implemented using various techniques and constraints.

    • fopen function is used to open a file and returns a file pointer

    • fseek function is used to set the file position indicator

    • Other file handling functions like fread, fwrite, fclose, etc. are used for reading, writing, and closing files

    • To handle large files, techniques like memory mapping, buffered I/O, and...

  • Answered by AI
  • Q13. Converting a number from one base to another, like decimal to hex, binary to hex etc etc
  • Ans. 

    Converting numbers between different bases involves understanding the positional value of digits.

    • Understand the positional value of digits in the original base.

    • Divide the number by the new base and keep track of remainders.

    • Convert remainders to corresponding digits in the new base.

    • Combine the digits to get the final converted number.

  • Answered by AI
  • Q14. How to handle the case when we have a if statement in the macro.(-----)
  • Ans. 

    Handling if statements in macros requires careful consideration of syntax and logic.

    • Use proper syntax and indentation to ensure the if statement is clear and readable.

    • Consider using nested if statements or logical operators to handle multiple conditions.

    • Test the macro with different input values to ensure the if statement behaves as expected.

  • Answered by AI
  • Q15. -----/
  • Q16. CalX(n) = calX(n-1)*calX(n-2)+calX(n-3), for n > 3 calX(n) = n, for n<=3 Upto what value of n we can find the correct value of calX(n) in C++
  • Q17. Hex representation of -17
  • Ans. 

    Hex representation of -17 is FFFFFFFF

    • Convert the decimal number -17 to binary: 17 = 0001 0001

    • Take the two's complement of the binary number: 1110 1111

    • Convert the two's complement binary number to hex: FFFF

  • Answered by AI
  • Q18. Xor of 0xFE and 0xEF
  • Ans. 

    XOR of 0xFE and 0xEF is 0x11.

    • XOR operation compares bits of two numbers and returns 1 if they are different, 0 if they are the same.

    • 0xFE in binary is 11111110, 0xEF in binary is 11101111.

    • Performing XOR operation on 0xFE and 0xEF results in 00010001, which is 0x11 in hexadecimal.

  • Answered by AI
  • Q19. -----/
  • Q20. Basic questions on networking like:-
  • Q21. Number of nodes having NULL children in binary tree with N nodes and reason for this value
  • Ans. 

    The number of nodes with NULL children in a binary tree with N nodes is N-1.

    • In a binary tree, each node can have at most 2 children.

    • The number of NULL children for each node is either 0, 1, or 2.

    • The total number of NULL children in a binary tree with N nodes is N-1.

  • Answered by AI
  • Q22. Design a class Elevator, should be scalable
  • Q23. Lot of concepts of C++ and comparison with C
  • Q24. One line codes, which can cause runtime exceptions
  • Ans. 

    One line codes that can cause runtime exceptions

    • Dividing by zero: int result = 5 / 0;

    • Accessing index out of bounds: int[] arr = new int[3]; int value = arr[3];

    • Null pointer exception: String str = null; int length = str.length();

  • Answered by AI
  • Q25. Design Patterns(Strategy, Observer and Singleton)
  • Q26. -----

Interview Preparation Tips

Round: Technical Interview
Experience: Basic questions on networking like:-
    a) IP address, Static IP, Dynamic IP
    b) DHCP, TCP, UDP
    c) HTTP, Subnet Mask

College Name: NA

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Coding Test 

One hour and two questions on DSA (medium to hard problems) through coding site link

Round 2 - Technical 

(1 Question)

  • Q1. Basic OOPs and java questions
Round 3 - Technical 

(1 Question)

  • Q1. Deep dive into Java, DSA, OS and resume
Round 4 - Behavioral 

(1 Question)

  • Q1. Basic behavioural questions

Interview Preparation Tips

Topics to prepare for Gen Software Engineer interview:
  • DSA
  • Java
  • OS
Interview preparation tips for other job seekers - This is through campus placement. They expected to be strong in fundamentals and to have a learning attitude.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about you and your experiences
  • Q2. Digital Identity related questions and participants
Round 2 - Assignment 

PMs are given a situation and asked to write user stories.

Round 3 - HR 

(2 Questions)

  • Q1. Salary expectations
  • Q2. Work life balance

Accountant Interview Questions & Answers

user image Anonymous

posted on 17 Jun 2024

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

(2 Questions)

  • Q1. Do you know Purhase order?
  • Ans. 

    A purchase order is a document issued by a buyer to a seller, indicating types, quantities, and agreed prices for products or services.

    • Purchase orders are used in business transactions to ensure both parties are in agreement on the terms of the sale.

    • They typically include details such as item descriptions, quantities, prices, payment terms, and delivery dates.

    • Purchase orders help track expenses, manage inventory, and p...

  • Answered by AI
  • Q2. What is the process of purchase?
  • Ans. 

    The process of purchase involves identifying needs, researching options, making a selection, negotiating terms, and completing the transaction.

    • Identify the need for a product or service

    • Research available options and compare prices

    • Make a selection based on budget and requirements

    • Negotiate terms such as price, delivery, and payment

    • Complete the transaction by making the purchase

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best!
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Merge two sorted arrays
Find the kth largest element in the array

Round 2 - Coding Test 

Check if we make an sorted by removing almost one element
Some basic OS concepts

Round 3 - One-on-one 

(1 Question)

  • Q1. Why you want to join gen digital ?
  • Ans. 

    I want to join Gen Digital because of their innovative projects and collaborative work environment.

    • Innovative projects: Gen Digital is known for working on cutting-edge technologies and projects.

    • Collaborative work environment: I value teamwork and believe Gen Digital fosters a culture of collaboration.

    • Career growth opportunities: I see Gen Digital as a place where I can learn and grow as a software engineer.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just grind leetcode and system design. Also don't worry if you don't do a single round good if you done round good enough they will continue with next round but make sure you solve the questions that they have asked in the previous round, because in the final round which is by the way managerial round, my manager asked those questions and checked whether I was able to answer them now.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Product you love and why?
Round 2 - One-on-one 

(1 Question)

  • Q1. What do you like about product management?
  • Ans. 

    I enjoy the strategic planning, problem-solving, and cross-functional collaboration involved in product management.

    • I like the opportunity to work on innovative products and bring them to market.

    • I enjoy analyzing market trends and customer feedback to make data-driven decisions.

    • I appreciate collaborating with various teams such as engineering, marketing, and sales to ensure successful product launches.

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant

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 

(2 Questions)

  • Q1. Threading: Write and use a mutex?
  • Ans. 

    A mutex is a synchronization primitive that ensures only one thread can access a resource at a time.

    • Create a mutex object using the appropriate library or language-specific function.

    • Lock the mutex before accessing the shared resource to prevent other threads from accessing it.

    • Unlock the mutex after finishing the operation on the shared resource to allow other threads to access it.

    • Example: pthread_mutex_t mutex; pthread...

  • Answered by AI
  • Q2. Find the memory leak in a given set of code.
  • Ans. 

    Identify memory leak in code

    • Check for any dynamically allocated memory that is not being freed

    • Look for any infinite loops or recursive functions that consume memory

    • Use memory profiling tools like Valgrind to detect leaks

    • Check for any global variables that are not properly managed

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. What are the steps to create a binary tree?
  • Q2. What is the SQL query to retrieve the highest number of employees in a particular department?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 4 interview rounds.

Round 1 - Coding Test 

7 easy coding questions

Round 2 - Technical 

(1 Question)

  • Q1. Data Structures and Algorithms, SQL and DataBase design, Java concepts, OOPS concepts, OS
Round 3 - Technical 

(1 Question)

  • Q1. DSA Medium level, SQL Medium level, Java, OOPS
Round 4 - Technical 

(1 Question)

  • Q1. Managerial round - Resume, Projects, behavioural questions. Interview was very friendly

Interview Preparation Tips

Interview preparation tips for other job seekers - Preparation is key. Be strong in fundamentals
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jul 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Databases mcq,coding test in any language and SQL and etl questions

Round 2 - HR 

(1 Question)

  • Q1. How do you handle conflicts inside the team?

Interview Preparation Tips

Topics to prepare for Gen Business Intelligence Analyst interview:
  • python
  • sql
  • informatica
  • Azure
  • databricks
Interview preparation tips for other job seekers - It's easy,but the company is not stable.layoff happens frequently

I applied via Company Website and was interviewed in May 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning And aptitude test

Round 2 - Coding Test 

C++, python and Java programming

Interview Preparation Tips

Topics to prepare for Gen Software Engineer interview:
  • C++
  • Python
Interview preparation tips for other job seekers - I am interested for this company opportunity for giving me and I am so happy and giving me for work from home job

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Gen?
Ask anonymously on communities.

Gen Interview FAQs

How many rounds are there in Gen interview?
Gen interview process usually has 2-3 rounds. The most common rounds in the Gen interview process are Technical, One-on-one Round and Coding Test.
How to prepare for Gen 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 Gen. The most common topics and skills that interviewers at Gen expect are Agile, Python, SQL, Analytical and Unit Testing.
What are the top questions asked in Gen interview?

Some of the top questions asked at the Gen interview -

  1. How to implement fopen, fseek and other file handling functions in Linux, went ...read more
  2. How to handle the case when we have a if statement in the macro.(---...read more
  3. calX(n) = calX(n-1)*calX(n-2)+calX(n-3), for n > 3 calX(n) = n, for n<=3 ...read more
What are the most common questions asked in Gen HR round?

The most common HR questions asked in Gen interview are -

  1. What are your strengths and weakness...read more
  2. Why should we hire y...read more
  3. Share details of your previous j...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4.1/5

based on 9 interview experiences

Difficulty level

Easy 17%
Moderate 83%

Duration

Less than 2 weeks 33%
2-4 weeks 67%
View more
Join Gen Powering Digital Freedom For People Everywhere.

Interview Questions from Similar Companies

Chetu Interview Questions
3.3
 • 196 Interviews
AVASOFT Interview Questions
2.9
 • 174 Interviews
Oracle Cerner Interview Questions
3.7
 • 161 Interviews
Thomson Reuters Interview Questions
4.1
 • 124 Interviews
ServiceNow Interview Questions
4.1
 • 124 Interviews
Amadeus Interview Questions
3.8
 • 115 Interviews
UKG Interview Questions
3.1
 • 111 Interviews
EbixCash Limited Interview Questions
3.9
 • 106 Interviews
SPRINKLR Interview Questions
3.0
 • 105 Interviews
View all

Gen Reviews and Ratings

based on 229 reviews

4.0/5

Rating in categories

3.7

Skill development

4.2

Work-life balance

4.1

Salary

3.2

Job security

4.0

Company culture

3.3

Promotions

3.7

Work satisfaction

Explore 229 Reviews and Ratings
Senior Software Engineer
99 salaries
unlock blur

₹12 L/yr - ₹35.1 L/yr

Software Engineer
60 salaries
unlock blur

₹7 L/yr - ₹23 L/yr

Principal Software Engineer
46 salaries
unlock blur

₹20.8 L/yr - ₹85.4 L/yr

Softwaretest Engineer
28 salaries
unlock blur

₹4.2 L/yr - ₹6 L/yr

SQA Engineer
26 salaries
unlock blur

₹6.5 L/yr - ₹15.5 L/yr

Explore more salaries
Compare Gen with

Thomson Reuters

4.1
Compare

Oracle Cerner

3.6
Compare

Chetu

3.3
Compare

R Systems International

3.3
Compare
write
Share an Interview