Premium Employer

i

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

Ginesys Verified Tick Work with us arrow

Compare button icon Compare button icon Compare

Filter interviews by

Ginesys Software Engineer Interview Questions and Answers

Updated 27 May 2025

Ginesys Software Engineer Interview Experiences

2 interviews found

Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I appeared for an interview in Jan 2025.

Round 1 - Aptitude Test 

Multiple-choice questions and coding problems.

Round 2 - Coding Test 

They will likely present you with a problem involving the generation of an SKU code for different products using the same function and may request an explanation of the code line by line if you can write it.

Round 3 - Technical 

(2 Questions)

  • Q1. What questions can be expected regarding the technologies listed in your resume?
  • Ans. 

    Questions about the technologies listed in your resume may include asking about your experience, projects, challenges faced, and future plans.

    • Experience with the technology listed

    • Projects completed using the technology

    • Challenges faced while working with the technology

    • Future plans for learning or using the technology

  • Answered by AI
  • Q2. Questions related to database.
Round 4 - Discusssion with CTO 

(2 Questions)

  • Q1. The interviewer will inquire about your background, including your family details.
  • Q2. No further comments thank you
Round 5 - HR 

(1 Question)

  • Q1. What are your current and expected cost-to-company (CTC) figures?
  • Ans. 

    I am currently earning X amount and expecting Y amount based on my experience and skills.

    • Provide your current salary figure

    • Mention your expected salary based on your experience and skills

    • Consider factors like industry standards and cost of living when determining expected CTC

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Avoid pursuing interviews with this company, as they are unlikely to provide significant raises and require you to sign a two-year bond due to their insecurity regarding company practices and potential exploitation.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. Questions related to middleware.
  • Q2. Sql basic join questions

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
asked in Capgemini
Q2. In a dark room, there is a box of 18 white and 5 black gloves. Yo ... read more
Q3. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q4. Puzzle : 100 people are standing in a circle .each one is allowed ... read more
asked in TCS
Q5. Find the Duplicate Number Problem Statement Given an integer arra ... read more

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

Interview questions from similar companies

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

Interview Questionnaire 

3 Questions

  • Q1. Basic oops question, sql question
  • Q2. Basic and advance php question
  • Q3. Some logical question( puzzle)

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear your basic concepts of php before attending interview

Interview Questionnaire 

1 Question

  • Q1. Php oops concepts are their primary focus
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Sep 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

As usual interview with an aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. Two coding questions
  • Q2. Two puzzle and iq
Round 3 - One-on-one 

(2 Questions)

  • Q1. Subject and project
  • Q2. Puzzle and iq test

Interview Preparation Tips

Interview preparation tips for other job seekers - It’s a fresher interview
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Mar 2025, where I was asked the following questions.

  • Q1. Very Easy Interview anybody can crack this .
  • Q2. Nothing only plain PHP as the Senior Engineers don't know apart form this

Interview Preparation Tips

Interview preparation tips for other job seekers - Read PHP concepts and prepare basic Coding question in PHP and OOPS concepts
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
  • Q1. Write a code for Fibonacci series
  • Q2. Difference between session and cookies
  • Ans. 

    Sessions store user data on the server, while cookies store data on the client-side browser.

    • Sessions are stored on the server, while cookies are stored on the user's browser.

    • Sessions can hold larger amounts of data compared to cookies.

    • Cookies have an expiration date, while sessions typically expire after a period of inactivity.

    • Example: A session might store user login status, while a cookie might store user preferences...

  • Answered by AI
Are these interview questions helpful?

I appeared for an interview in May 2022.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

  • Q1. 

    Rectangle Area Calculation

    Given a list of rectangles, where each rectangle is represented by an array of four integers indicating its bottom-left and top-right corners, calculate the total area covered b...

  • Ans. 

    Calculate total area covered by a list of rectangles on a plane.

    • Iterate through each rectangle and calculate its area

    • Check for overlapping areas between rectangles

    • Sum up the total area covered by all rectangles

  • Answered by AI
Round 2 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Oops concepts and 1 DSA problem

  • Q1. 

    Bit Set Problem Statement

    You are provided with a string, termed as DIGIT_PATTERN, which consists solely of digits. The objective is to identify the first digit that repeats in the sequence. If there's no...

  • Ans. 

    Identify the first repeating digit in a given string of digits.

    • Iterate through the string and keep track of seen digits using a set.

    • Return the first digit that repeats, or -1 if no digit repeats.

    • Time complexity: O(n), where n is the length of the input string.

  • Answered by AI
Round 3 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

Firstly Some general questions and then suddenly a cosing question with modifications

  • Q1. 

    Print All Permutations of a String

    Given an input string STR, generate and print all possible permutations of the string.

    Input:

    str

    Output:

    All permutations of the input string, each on a new line.

    ...

  • Ans. 

    Generate and print all possible permutations of a given input string.

    • Use recursion to generate all permutations by swapping characters in the string.

    • Maintain a visited array to keep track of characters already used in a particular permutation.

    • Print each permutation as it is generated.

    • Handle duplicate characters by skipping swapping if the character is already in the current position.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from TIET - Thapar Institute of Engineering And Technology. I applied for the job as Software Engineer in GurgaonEligibility criteria7.5 CgpaGreyOrange interview preparation:Topics to prepare for the interview - DSA, OOPs, OS, DBMS, projects, PuzzlesTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : You should be perfect in what you know
Tip 2 : Prepare atleast DSA standard questions very well
Tip 3 : Don't ignore OOPs, they are asked very frequently.

Application resume tips for other job seekers

Tip 1 : Add good projects
Tip 2 : Must mention all your coding profiles and github where you worked.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Feb 2022. There were 4 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 - One-on-one 

(1 Question)

  • Q1. The interviewer asked Basic SQL and Linux OS-related questions.
Round 3 - Technical 

(2 Questions)

  • Q1. The interviewer asked questions regarding projects and experience.
  • Q2. The interviewer asked some aptitude and logical reasoning questions.
Round 4 - HR 

(1 Question)

  • Q1. Salary negotiations.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good organization for freshers and people with no/limited experience.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Oct 2022. There were 7 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 - Coding Test 

HackerRanck Test which includes some mcq and PHP test

Round 3 - Technical 

(1 Question)

  • Q1. SQL question PHP OOPs Unit Testing Microservices Agile Methodologies
Round 4 - Technical 

(1 Question)

  • Q1. SQL Questions PHP OOPs Unit Testing
Round 5 - One-on-one 

(1 Question)

  • Q1. Related to your work experience
Round 6 - One-on-one 

(1 Question)

  • Q1. Related to your work experience
Round 7 - HR 

(1 Question)

  • Q1. Final round as Salary Negotiation

Interview Preparation Tips

Interview preparation tips for other job seekers - As a new software engineer at Entrata India, you can expect to work with a team of highly skilled professionals who are passionate about their work and committed to excellence. The company provides excellent training opportunities to help you sharpen your skills and stay up-to-date with the latest technologies and best practices in the industry.

Ginesys Interview FAQs

How many rounds are there in Ginesys Software Engineer interview?
Ginesys interview process usually has 5 rounds. The most common rounds in the Ginesys interview process are HR, Aptitude Test and Coding Test.
What are the top questions asked in Ginesys Software Engineer interview?

Some of the top questions asked at the Ginesys Software Engineer interview -

  1. Questions related to databa...read more
  2. Questions related to middlewa...read more
  3. Sql basic join questi...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 2 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more
Join Ginesys Connections That Power Your Future
Ginesys Software Engineer Salary
based on 5 salaries
₹4 L/yr - ₹6 L/yr
47% less than the average Software Engineer Salary in India
View more details

Ginesys Software Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

4.0

Work-life balance

3.0

Salary

3.0

Job security

4.0

Company culture

4.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Functional Consultant
29 salaries
unlock blur

₹3.6 L/yr - ₹7.5 L/yr

Business Analyst
25 salaries
unlock blur

₹2 L/yr - ₹9.7 L/yr

Business Development Manager
18 salaries
unlock blur

₹4.8 L/yr - ₹9 L/yr

Executive Accountant
12 salaries
unlock blur

₹3.7 L/yr - ₹4.7 L/yr

Functional Associate
12 salaries
unlock blur

₹3.6 L/yr - ₹5.8 L/yr

Explore more salaries
Compare Ginesys with

Ascent HR Technologies Private Limited

3.7
Compare

Vyapar

3.5
Compare

Entrata

4.1
Compare

CodeClouds

4.4
Compare
write
Share an Interview