Upload Button Icon Add office photos
Engaged Employer

i

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

GSPANN Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

GSPANN Technologies Interview Questions, Process, and Tips

Updated 6 Mar 2025

Top GSPANN Technologies Interview Questions and Answers

View all 16 questions

GSPANN Technologies Interview Experiences

Popular Designations

37 interviews found

Round 1 - Coding Test 

They ask you to share your screen and ask you to write the code. It is easy if you have prepared well

Round 2 - Technical 

(2 Questions)

  • Q1. Aggregation & grouping in spark
  • Ans. 

    Aggregation & grouping in Spark

    • Aggregation is the process of combining data from multiple sources into a single result

    • Grouping is the process of dividing data into groups based on a specific criteria

    • Spark provides various functions for aggregation and grouping such as groupBy, reduceByKey, aggregateByKey, etc.

    • These functions can be used to perform operations like sum, count, average, etc. on grouped data

  • Answered by AI
  • Q2. Easy if you know basics of SQL coding
Round 3 - HR 

(2 Questions)

  • Q1. What are your salary expectations?
  • Q2. They will shortlist the salary based on the skillset
Round 4 - 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 Resume tips

Interview Preparation Tips

Interview preparation tips for other job seekers - Attend with confidence, practice more code, you'll get this company

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. K Largest Elements Problem Statement You are given an integer k and an array of integers that contain numbers in random order. Write a program to find the k largest numbers from the given array. You need to save them in an array and return ... read more
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Mar 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 Resume tips
Round 2 - Technical 

(5 Questions)

  • Q1. Questions asked from resume
  • Q2. Spark optimisation techniques
  • Ans. 

    Spark optimisation techniques

    • Partitioning data to reduce shuffling

    • Caching frequently used data

    • Using broadcast variables for small data

    • Avoiding unnecessary data shuffling

    • Tuning memory allocation and garbage collection

    • Using efficient data formats like Parquet

    • Using appropriate hardware configurations

    • Optimizing SQL queries using DataFrame and Dataset APIs

  • Answered by AI
  • Q3. Explain spark architecture
  • Ans. 

    Spark architecture is a distributed computing system that provides high-level APIs for processing large datasets.

    • Spark architecture consists of a cluster manager, a distributed storage system, and a set of worker nodes.

    • The cluster manager, such as Apache Mesos or Hadoop YARN, allocates resources and schedules tasks.

    • The distributed storage system, like Hadoop Distributed File System (HDFS), stores the data across the cl...

  • Answered by AI
  • Q4. Hive related questions
  • Q5. Explain your project
Round 3 - Technical 

(1 Question)

  • Q1. More in-depth questions from whatever skills mentioned in resume
Round 4 - HR 

(1 Question)

  • Q1. Final round result and salary discussion

Interview Preparation Tips

Topics to prepare for GSPANN Technologies Software Engineer interview:
  • SQL
  • Python
  • Java
  • Data Warehousing
  • Spark
  • Pyspark
Interview preparation tips for other job seekers - Prepare for whatever skills mentioned in resume, some basic coding questions and sql's were asked.

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
GSPANN Technologies Interview Questions and Answers for Freshers
illustration image
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 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 Resume tips
Round 2 - Technical 

(1 Question)

  • Q1. Java technical questions
Round 3 - Technical 

(1 Question)

  • Q1. Spring boot questions
Round 4 - HR 

(1 Question)

  • Q1. Self introduction, communication skills

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (197)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Feb 2022. There were 2 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 Resume tips
Round 2 - Technical 

(6 Questions)

  • Q1. How to add dependency SDKs for perticular build flavour.
  • Ans. 

    To add dependency SDKs for a particular build flavor, modify the build.gradle file and specify the dependencies for that flavor.

    • Open the build.gradle file for your project

    • Locate the section for the desired build flavor

    • Inside the dependencies block, add the necessary SDK dependencies

    • Sync the project to apply the changes

  • Answered by AI
  • Q2. Kotlin Basics & Android Platform
  • Q3. Java programming language and Oops concepts in depth.
  • Q4. What is MVVM architecture and it's Advantages.
  • Ans. 

    MVVM is a software architecture pattern that separates the user interface from the business logic.

    • MVVM stands for Model-View-ViewModel.

    • Model represents the data and business logic.

    • View represents the user interface.

    • ViewModel acts as a mediator between the View and Model.

    • Advantages include easier testing, separation of concerns, and improved maintainability.

    • Example: Xamarin.Forms uses MVVM architecture for cross-platfor

  • Answered by AI
  • Q5. What RX Java and RXAndroid
  • Ans. 

    RX Java and RXAndroid are reactive programming libraries for Java and Android respectively.

    • RX Java and RXAndroid allow for asynchronous and event-based programming.

    • They use Observables and Subscribers to handle data streams.

    • They simplify complex code and make it easier to handle concurrency.

    • Example use cases include network requests and UI updates.

    • RXJava is used in popular Android libraries like Retrofit and Room.

  • Answered by AI
  • Q6. What are Coroutines in Kotlin and it's Advantages Over Multithreading.
  • Ans. 

    Coroutines are lightweight threads in Kotlin that allow for asynchronous programming without the overhead of traditional multithreading.

    • Coroutines are cooperative, meaning they can pause and resume execution at specific points in the code.

    • They are more efficient than multithreading because they don't require creating new threads for each task.

    • Coroutines can be used for both CPU-bound and IO-bound tasks.

    • They simplify er...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for All the basics of Android, Git and CICD questions.

Skills evaluated in this interview

Technical Lead Interview Questions asked at other Companies

Q1. 1. Explain 5 mins the flow from requirement analysis to production deployment and tools used in the process. 2. What is auto-scaling in a microservices architecture? 3. Difference between micro-service and serverless. 4. If you were going t... read more
View answer (4)

GSPANN Technologies interview questions for popular designations

 Software Engineer

 (5)

 Technical Lead

 (3)

 Senior Software Engineer

 (3)

 Big Data Engineer

 (2)

 Project Manager

 (1)

 Graphic Designer

 (1)

 Data Analyst

 (1)

 Team Leader (Technical)

 (1)

Interview Questions & Answers

user image

posted on 22 Apr 2023

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

I applied via Approached by Company and was interviewed before Apr 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 Resume tips
Round 2 - Technical 

(3 Questions)

  • Q1. Devops tools, Jenkins, Azure devops, Devsecops tools
  • Q2. Devsecops tools
  • Q3. Zeal to learn new technologies
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be thorough with basics

Get interview-ready with Top GSPANN Technologies Interview Questions

HR Manager Interview Questions & Answers

user image Anonymous

posted on 21 Apr 2023

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

I applied via Naukri.com and was interviewed before Apr 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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. About HR recruitments and Hiring
Round 3 - One-on-one 

(1 Question)

  • Q1. About Bulk Hiring process

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well

HR Manager Interview Questions asked at other Companies

Q1. Can you explain the meaning of performance Management as stated in your CV
View answer (5)

Jobs at GSPANN Technologies

View all

I applied via Recruitment Consultant and was interviewed in Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Understanding of any Cloud
  • Q2. Be thorough with Python and Pyspark and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on SQL, Python, Spark and cloud is mandatory for BIgData Engineer role.

Big Data Engineer Interview Questions asked at other Companies

Q1. Difference between partitioning and bucketing. Types of joins in spark Optimization Techniques in spark Broadcast variable and broadcast join Difference between ORC and Parquet Difference between RDD and Dataframe Architecture of our projec... read more
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

GSPANN Technologies Interview FAQs

How many rounds are there in GSPANN Technologies interview?
GSPANN Technologies interview process usually has 2-3 rounds. The most common rounds in the GSPANN Technologies interview process are Technical, HR and Coding Test.
How to prepare for GSPANN Technologies 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 GSPANN Technologies. The most common topics and skills that interviewers at GSPANN Technologies expect are Java, Javascript, SQL, AWS and Microservices.
What are the top questions asked in GSPANN Technologies interview?

Some of the top questions asked at the GSPANN Technologies interview -

  1. How to add dependency SDKs for perticular build flavo...read more
  2. What are Coroutines in Kotlin and it's Advantages Over Multithreadi...read more
  3. What is a Fact and Different types of fac...read more
How long is the GSPANN Technologies interview process?

The duration of GSPANN Technologies interview process can vary, but typically it takes about less than 2 weeks to complete.

Recently Viewed

INTERVIEWS

Johnson & Johnson

No Interviews

INTERVIEWS

Johnson & Johnson

No Interviews

JOBS

Johnson & Johnson

No Jobs

SALARIES

BuyerForesight

INTERVIEWS

PepsiCo

No Interviews

SALARIES

Johnson & Johnson

DESIGNATION

SALARIES

GSPANN Technologies

SALARIES

BuyerForesight

INTERVIEWS

PepsiCo

No Interviews

Tell us how to improve this page.

GSPANN Technologies Interview Process

based on 36 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 791 Interviews
CitiusTech Interview Questions
3.4
 • 269 Interviews
View all

Fast track your campus placements

View all

GSPANN Technologies Reviews and Ratings

based on 434 reviews

4.3/5

Rating in categories

3.9

Skill development

4.3

Work-life balance

4.1

Salary

4.1

Job security

4.2

Company culture

3.8

Promotions

4.0

Work satisfaction

Explore 434 Reviews and Ratings
Senior Software Engineer
446 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
378 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
307 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Lead
136 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Software Engineer
103 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare GSPANN Technologies 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