Upload Button Icon Add office photos

Filter interviews by

Geekyants Software Software Engineer Interview Questions, Process, and Tips

Updated 9 Jan 2025

Top Geekyants Software Software Engineer Interview Questions and Answers

View all 7 questions

Geekyants Software Software Engineer Interview Experiences

10 interviews found

Software Engineer Interview Questions & Answers

user image Mukul Kaushik

posted on 9 Jan 2025

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

(2 Questions)

  • Q1. Diff btw vite and webpack
  • Q2. What is currying in js
Round 2 - Technical 

(2 Questions)

  • Q1. What is currying in javascript?
  • Q2. Diff btw webpack and vite

Interview Preparation Tips

Interview preparation tips for other job seekers - Just cover the basics of javascript. Learn about polyfills.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Basic flutter coding questions

Software Engineer Interview Questions Asked at Other Companies

asked in Qualcomm
Q1. Bridge and torch problem : Four people come to a river in the nig ... read more
asked in Capgemini
Q2. In a dark room,there is a box of 18 white and 5 black gloves. You ... read more
asked in TCS
Q3. Find the Duplicate Number Problem Statement Given an integer arra ... read more
Q4. Tell me something about yourself. Define encapsulation. What is i ... read more
asked in Paytm
Q5. Puzzle : 100 people are standing in a circle .each one is allowed ... read more

Software Engineer Interview Questions & Answers

user image Pritam Debnath

posted on 11 Sep 2024

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

I applied via Job Portal and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

There was an automated machine coding round where i had to solve multiple problems as well as answer multiple questions related to Javascript and the development process as a whole.

Round 2 - Technical 

(1 Question)

  • Q1. Explain promises in JS and async/await.
  • Ans. 

    Promises in JS are objects representing the eventual completion or failure of an asynchronous operation. Async/await is a syntactic sugar for working with promises.

    • Promises are used to handle asynchronous operations in JavaScript.

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

    • Async/await is a modern way to work with asynchronous code in JavaScript, making it easier to read and write.

    • Async functions...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up basic framework concepts and logic building

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - Assignment 

Had to brief about myself, my technical skills and projects. Few Technical questions regarding the tech stack and casual discussion.

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you have strong foundational knowledge.

Geekyants Software interview questions for designations

 Software Engineer III

 (1)

 Software Developer

 (1)

 Software Engineer2

 (1)

 Senior Software Engineer 1

 (1)

 Software Development Engineer Intern

 (1)

 Senior Java Developer

 (1)

 IOS Developer

 (1)

 Sdet

 (1)

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

I was interviewed before Oct 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. React Todo List
  • Q2. Closure in Javascript
  • Ans. 

    Closure in JavaScript allows a function to access variables from its outer scope even after the outer function has finished executing.

    • Closure is created when a function is defined within another function and the inner function references variables from the outer function.

    • The inner function maintains a reference to the outer function's scope, allowing it to access those variables even after the outer function has return...

  • Answered by AI

Skills evaluated in this interview

Get interview-ready with Top Geekyants Software Interview Questions

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 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 - Automated bot interview 

(1 Question)

  • Q1. Just basic questions about you and why you want to join This organisation
Round 3 - Automated bot interview 

(1 Question)

  • Q1. Nothing big, simple array related questions,
Round 4 - One-on-one 

(1 Question)

  • Q1. Just showcase your college/personal projects and random array questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing great about company,lot of internal politics will be there, forgot about your position,they won't even treat you as a human,If you a fresher try to avoid this organization at any cost .
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Simple coding test. LC medium

Round 2 - Technical 

(1 Question)

  • Q1. Basics of work experience. Slight changes to questions asked in round 1 and scenario-based questions

I applied via Internshala and was interviewed in Dec 2021. There were 3 interview rounds.

Round 1 - Coding Test 

They mostly ask some basic dsa questions in the automated interview

Round 2 - Technical 

(1 Question)

  • Q1. The interviewer was very friendly and ask me some basic of react js and some basic of how internet works
Round 3 - HR 

(1 Question)

  • Q1. Was very easy they ask me really basic ye questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with the tech stack and some basic of dsa
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via eLitmus and was interviewed before Sep 2022. There were 4 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 

General coding test includes basic DSA, understanding of FE, BE, DB, etc.,

Round 3 - One-on-one 

(1 Question)

  • Q1. 1:1 discussion to understand the candidate's profile
Round 4 - HR 

(1 Question)

  • Q1. Salary, policies, engagements discussion

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. How do you structure your project?
  • Q2. What are the design patterns that you know and why do we use those?
  • Ans. 

    Design patterns are reusable solutions to common software problems.

    • Creational patterns: Singleton, Factory, Abstract Factory, Builder

    • Structural patterns: Adapter, Bridge, Composite, Decorator, Facade, Flyweight, Proxy

    • Behavioral patterns: Chain of Responsibility, Command, Interpreter, Iterator, Mediator, Memento, Observer, State, Strategy, Template Method, Visitor

    • We use design patterns to improve code readability, maint...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a good grip on the basics of the technology for which you are getting interviewed.

Skills evaluated in this interview

Geekyants Software Interview FAQs

How many rounds are there in Geekyants Software Software Engineer interview?
Geekyants Software interview process usually has 2-3 rounds. The most common rounds in the Geekyants Software interview process are Technical, Coding Test and HR.
How to prepare for Geekyants 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 Geekyants Software. The most common topics and skills that interviewers at Geekyants Software expect are Javascript, Html5, Typescript, JSON and Redux.
What are the top questions asked in Geekyants Software Software Engineer interview?

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

  1. What are the design patterns that you know and why do we use tho...read more
  2. What is currying in javascri...read more
  3. Explain promises in JS and async/awa...read more

Tell us how to improve this page.

Geekyants Software Software Engineer Interview Process

based on 8 interviews

2 Interview rounds

  • Technical Round - 1
  • Technical Round - 2
View more
Geekyants Software Software Engineer Salary
based on 113 salaries
₹5 L/yr - ₹16.8 L/yr
21% more than the average Software Engineer Salary in India
View more details

Geekyants Software Software Engineer Reviews and Ratings

based on 16 reviews

3.5/5

Rating in categories

3.0

Skill development

3.7

Work-life balance

3.0

Salary

3.2

Job security

3.5

Company culture

2.8

Promotions

3.0

Work satisfaction

Explore 16 Reviews and Ratings
Software Engineer
113 salaries
unlock blur

₹5 L/yr - ₹16.8 L/yr

Senior Software Engineer
60 salaries
unlock blur

₹11.5 L/yr - ₹25 L/yr

Software Engineer III
45 salaries
unlock blur

₹10.5 L/yr - ₹19 L/yr

Software Developer
42 salaries
unlock blur

₹5 L/yr - ₹14 L/yr

Software Engineer2
28 salaries
unlock blur

₹7.5 L/yr - ₹12.5 L/yr

Explore more salaries
Compare Geekyants Software with

CRED

3.5
Compare

Postman

3.6
Compare

Freshworks

3.5
Compare

Zoho

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