Upload Button Icon Add office photos
Engaged Employer

i

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

Gemini Solutions Verified Tick

Compare button icon Compare button icon Compare
3.2

based on 204 Reviews

Filter interviews by

Gemini Solutions Software Engineer Interview Questions and Answers

Updated 12 May 2024

Gemini Solutions Software Engineer Interview Experiences

3 interviews found

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

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

Round 1 - Coding Test 

3 Questions were asked, moderate level

Round 2 - Group Discussion 

IT industry - 1min each to everyone

Round 3 - Technical 

(1 Question)

  • Q1. Focus on projects you worked, easy - medium DSA
Round 4 - Technical 

(1 Question)

  • Q1. DSA, riddles and tech stack worked on
Round 5 - HR 

(1 Question)

  • Q1. Final discussion and behavior questions

Software Engineer Interview Questions & Answers

user image Subhankar Paul

posted on 25 Apr 2024

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

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Data Structure technical questions and others
Round 2 - Coding Test 

Coding on Linked List and map and other collectiosn

Round 3 - One-on-one 

(1 Question)

  • Q1. End to end discussion with manager
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

Aptitude and basic questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Don't remember exactly
Round 3 - One-on-one 

(1 Question)

  • Q1. Don't remember exactly

Interview questions from similar companies

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

I applied via Naukri.com and was interviewed before Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is reactjs
  • Q2. Whats is difference between angular and react
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

About front end , html, css, reasoning,

Round 2 - Technical 

(1 Question)

  • Q1. What.is let , var, const
  • Ans. 

    let, var, and const are keywords used in JavaScript to declare variables with different scopes and mutability.

    • let is used to declare variables with block scope and allows reassignment

    • var is used to declare variables with function scope and allows redeclaration

    • const is used to declare variables with block scope and does not allow reassignment, but the value can still be mutable

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. What is angular
  • Ans. 

    Angular is a popular open-source front-end web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem of libraries and tools.

    • Examples: AngularJS, Angular 2, A...

  • Answered by AI
  • Q2. Services in angular
  • Ans. 

    Services in Angular are singleton objects that can be used to share data and functionality across components.

    • Services are used to encapsulate reusable functionality, such as data fetching, logging, or authentication.

    • Services can be injected into components, directives, or other services using Angular's dependency injection system.

    • Services are typically defined using the @Injectable decorator.

    • Example: A DataService serv...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Communication skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good for freshers

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is angular
  • Ans. 

    Angular is a popular open-source front-end web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem with many libraries and tools available.

  • Answered by AI
  • Q2. What is an angular
  • Ans. 

    Angular is a popular open-source web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem with many libraries and tools available.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Technical 

(5 Questions)

  • Q1. Write a program Binary Search?
  • Ans. 

    Binary search is a divide and conquer algorithm that efficiently finds the target value within a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the middle index and compare the target value with the middle element.

    • If the target value is less than the middle element, search the left subarray. If greater, search the right subarray.

    • Repeat the process until the target value is found or the s

  • Answered by AI
  • Q2. What isCICD flow?
  • Ans. 

    CI/CD flow stands for Continuous Integration/Continuous Deployment flow, which is a software development practice where code changes are automatically built, tested, and deployed.

    • CI/CD flow involves automating the process of integrating code changes into a shared repository, running automated tests, and deploying the changes to production.

    • Continuous Integration (CI) focuses on automating the build and testing of code c...

  • Answered by AI
  • Q3. How to handle Enum feature?
  • Ans. 

    Enums are a feature in programming languages that allow you to define a set of named constants.

    • Enums can be used to improve code readability by giving meaningful names to values

    • Enums can be used in switch statements to handle different cases

    • Enums can have associated values or raw values for more flexibility

  • Answered by AI
  • Q4. Singleton handles the Syncronized ?
  • Ans. 

    Yes, Singleton handles synchronization by ensuring only one instance of a class is created and providing global access to that instance.

    • Singleton pattern restricts the instantiation of a class to one object.

    • It provides a global point of access to the instance.

    • Synchronization can be implemented in the Singleton pattern to ensure thread safety.

    • Example: Singleton pattern is commonly used in database connections to ensure

  • Answered by AI
  • Q5. What are external Libraries are used in project?
  • Ans. 

    External libraries are pre-written code that can be imported and used in a project to provide additional functionality.

    • External libraries help in reducing development time by providing ready-made solutions for common tasks.

    • Examples include React for front-end development, NumPy for scientific computing in Python, and Retrofit for making network calls in Android apps.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Screen test it will take 30min

Round 2 - Technical 

(1 Question)

  • Q1. What is react, What is dom, what is different between dom vs vdom
  • Ans. 

    React is a JavaScript library for building user interfaces. DOM stands for Document Object Model. VDOM is a virtual representation of the DOM.

    • React is a JavaScript library used for building user interfaces.

    • DOM (Document Object Model) is a programming interface for web documents.

    • VDOM (Virtual DOM) is a lightweight copy of the DOM used for performance optimization.

    • The main difference between DOM and VDOM is that VDOM is ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good experince

Skills evaluated in this interview

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

(1 Question)

  • Q1. Find repeated nos in arrays
  • Ans. 

    Find repeated numbers in arrays of strings

    • Iterate through each string in the array

    • Convert each string to an array of numbers

    • Use a hash map to track the frequency of each number

    • Identify and return the repeated numbers

  • Answered by AI
Round 2 - Behavioral 

(1 Question)

  • Q1. Current company work, reason for change, etc.

Skills evaluated in this interview

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

Case study of last project

Gemini Solutions Interview FAQs

How many rounds are there in Gemini Solutions Software Engineer interview?
Gemini Solutions interview process usually has 3-4 rounds. The most common rounds in the Gemini Solutions interview process are Technical, One-on-one Round and Coding Test.
What are the top questions asked in Gemini Solutions Software Engineer interview?

Some of the top questions asked at the Gemini Solutions Software Engineer interview -

  1. Data Structure technical questions and oth...read more
  2. DSA, riddles and tech stack worked...read more
  3. Don't remember exac...read more

Tell us how to improve this page.

Gemini Solutions Software Engineer Interview Process

based on 3 interviews in last 1 year

Interview experience

4
  
Good

People are getting interviews through

based on 3 Gemini Solutions interviews
WalkIn
Campus Placement
33%
33%
34% candidates got the interview through other sources.
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates
Gemini Solutions Software Engineer Salary
based on 227 salaries
₹4.5 L/yr - ₹12.2 L/yr
At par with the average Software Engineer Salary in India
View more details

Gemini Solutions Software Engineer Reviews and Ratings

based on 41 reviews

3.2/5

Rating in categories

3.1

Skill development

3.0

Work-Life balance

2.8

Salary & Benefits

2.7

Job Security

3.0

Company culture

2.6

Promotions/Appraisal

2.8

Work Satisfaction

Explore 41 Reviews and Ratings
Software Engineer
227 salaries
unlock blur

₹4.5 L/yr - ₹12.2 L/yr

Senior Software Engineer
209 salaries
unlock blur

₹7.7 L/yr - ₹22 L/yr

Software Engineer II
174 salaries
unlock blur

₹5.6 L/yr - ₹11.5 L/yr

Senior Software Engineer 1
87 salaries
unlock blur

₹8.3 L/yr - ₹18 L/yr

Software Engineer L1
59 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Explore more salaries
Compare Gemini Solutions with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview