Upload Button Icon Add office photos
Engaged Employer

i

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

Geeks Invention Verified Tick

Compare button icon Compare button icon Compare
5.0

based on 18 Reviews

Filter interviews by

Geeks Invention Senior Software Developer Interview Questions and Answers

Updated 11 Dec 2023

Geeks Invention Senior Software Developer Interview Experiences

2 interviews found

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

I applied via LinkedIn and was interviewed before Dec 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 - Coding Test 

Given an unsorted array of integers, find the length of the longest increasing subsequence.

Round 3 - Technical 

(1 Question)

  • Q1. Evaluative questions in the technical round covered both skills and web development comprehensive .
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Dec 2022. There were 3 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 

Given an integer array, find the contiguous subarray with the largest product.

Round 3 - Technical 

(1 Question)

  • Q1. Skill-based questions and a focus on web development knowledge characterized the technical interview.

Senior Software Developer Interview Questions Asked at Other Companies

asked in Freshworks
Q1. Intersection of Linked List Problem You are provided with two sin ... read more
asked in Freshworks
Q2. Middle of Linked List Problem Statement Given the head node of a ... read more
asked in Freshworks
Q3. Overlapping Intervals Problem Statement You are given the start a ... read more
asked in SAP
Q4. Sum of Maximum and Minimum Elements Problem Statement Given an ar ... read more
asked in Freshworks
Q5. Cube Sum Pairs Problem Statement Given a positive integer N, find ... read more

Interview questions from similar companies

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

(2 Questions)

  • Q1. Remove cyclic dependency in spring
  • Ans. 

    To remove cyclic dependency in Spring, use interfaces, setter injection, or constructor injection.

    • Use interfaces to break the cyclic dependency

    • Use setter injection to inject dependencies after bean creation

    • Use constructor injection to pass dependencies during bean creation

  • Answered by AI
  • Q2. Write the code of reverse linkedlist
  • Ans. 

    Code to reverse a linked list

    • Create three pointers: prev, current, next

    • Iterate through the linked list, updating pointers accordingly

    • Set the next pointer of current to prev to reverse the list

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design system for parkin
  • Ans. 

    Design a system for parking management

    • Include features for vehicle registration and tracking

    • Implement payment processing for parking fees

    • Utilize sensors for real-time parking availability updates

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. About self in a short way
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Roles and responsibilities
  • Q2. Problem based questions
  • Q3. Code test & discussions over best practices, best solutions, time and space complexities
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Nuts and bolts game, to output date in a certain format, one SQL query

Round 2 - Technical 

(2 Questions)

  • Q1. Stacks and Queues
  • Q2. Linked lists, arrays, and many more basic fundamental Dsa questions.
Round 3 - Technical 

(2 Questions)

  • Q1. More about your resume projects.
  • Q2. Puzzles and reasoning is asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Try Puzzles on gfg, knows your projects that you have mentioned in your cv or resume, basic dsa is mostly asked with a focus on dbms.

Software Engineer Interview Questions & Answers

Cerence user image Shubham Ganesh Vitore

posted on 29 Jul 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. What is the design pattern? Singleton Design patter
  • Ans. 

    Singleton design pattern ensures a class has only one instance and provides a global point of access to it.

    • Used when only one instance of a class is needed throughout the system

    • Provides a global access point to the instance

    • Implemented by creating a static method to return the same instance each time it is called

  • Answered by AI
  • Q2. Difference Hashmap and Concurrent Hashmap
  • Ans. 

    HashMap is not thread-safe, while ConcurrentHashMap allows multiple threads to read and write concurrently.

    • HashMap is not synchronized and not thread-safe, while ConcurrentHashMap is synchronized and thread-safe.

    • ConcurrentHashMap allows multiple threads to read and write concurrently without any external synchronization, while HashMap requires external synchronization for concurrent access.

    • ConcurrentHashMap achieves hi...

  • Answered by AI
  • Q3. Collection Framework
  • Q4. Difference between list , set
  • Ans. 

    List is an ordered collection of elements with duplicates allowed, while set is an unordered collection of unique elements.

    • List maintains the order of elements, while set does not guarantee any specific order.

    • List allows duplicate elements, while set does not allow duplicates.

    • Example: List - [1, 2, 3, 1], Set - {1, 2, 3}

  • Answered by AI

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Find in rotated sorted array
  • Ans. 

    Search for a target value in a rotated sorted array.

    • Use binary search to find the pivot point where the array is rotated.

    • Determine which half of the array the target value lies in based on the pivot point.

    • Continue binary search in the appropriate half of the array to find the target value.

  • Answered by AI
  • Q2. Design IMDB. how will you manage concurrent ratings
  • Ans. 

    Design IMDB with concurrent ratings management

    • Implement a locking mechanism to ensure only one user can update a rating at a time

    • Use a queue system to handle multiple rating requests in an orderly manner

    • Consider using distributed systems to handle high concurrency levels

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Design vehicle rental system. Api design
  • Ans. 

    Design a vehicle rental system API

    • Create endpoints for listing available vehicles, booking a vehicle, and returning a vehicle

    • Include authentication and authorization mechanisms for users and admins

    • Implement payment gateway integration for processing rental payments

    • Include features like vehicle search, filtering, and reviews/ratings

    • Consider scalability and performance optimizations for handling high traffic

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Promises in javascript
  • Ans. 

    Promises in JavaScript are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Oct 2023. There were 5 interview rounds.

Round 1 - Aptitude Test 

CCAT has around 40-50 questions to be solved within 15 minutes

Round 2 - Coding Test 

Codility test has some basic coding questions that come along with an IDE

Round 3 - Technical 

(1 Question)

  • Q1. About NodeJS, React, APIs
Round 4 - Technical 

(1 Question)

  • Q1. Mostly about system design, code in depth, code architecture, security
Round 5 - HR 

(1 Question)

  • Q1. Mostly about explaining how it works at the company, questions on personal work preferences etc

Geeks Invention Interview FAQs

How many rounds are there in Geeks Invention Senior Software Developer interview?
Geeks Invention interview process usually has 3 rounds. The most common rounds in the Geeks Invention interview process are Resume Shortlist, Coding Test and Technical.
What are the top questions asked in Geeks Invention Senior Software Developer interview?

Some of the top questions asked at the Geeks Invention Senior Software Developer interview -

  1. Skill-based questions and a focus on web development knowledge characterized th...read more
  2. Evaluative questions in the technical round covered both skills and web develop...read more

Tell us how to improve this page.

Geeks Invention Senior Software Developer Interview Process

based on 2 interviews

Interview experience

5
  
Excellent
View more

Geeks Invention Senior Software Developer Reviews and Ratings

based on 2 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 2 Reviews and Ratings
Software Developer
4 salaries
unlock blur

₹20 L/yr - ₹35 L/yr

Explore more salaries
Compare Geeks Invention with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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