Upload Button Icon Add office photos

Filter interviews by

SatSure Senior Software Engineer Interview Questions and Answers

Updated 30 May 2024

SatSure Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Referral and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Coding Test 

1 hr - Assignment with easy/medium array and string manipulation questions

Round 2 - System Design 

(1 Question)

  • Q1. Design a data scrapping pipeline with option to schedule scrapping jobs
  • Ans. 

    Design a data scrapping pipeline with scheduling option

    • Use a web scraping tool like Scrapy or BeautifulSoup to extract data from websites

    • Set up a job scheduler like Cron or Airflow to schedule scraping jobs at specified intervals

    • Store the scraped data in a database or cloud storage for further processing

    • Implement error handling and logging to monitor the scraping pipeline

    • Consider using proxies and rotating user agents

  • Answered by AI

Interview Preparation Tips

Topics to prepare for SatSure Senior Software Engineer interview:
  • High level system design
  • Basic Algo and DS

Skills evaluated in this interview

Interview questions from similar companies

I applied via Approached by Company and was interviewed in Jan 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Fundamentals and Basics of android, projects you are worked on.
Round 2 - Assignment 

It was sort of pair programming where you will be told to implement some feature. Here they check your coding style, your approach and the architecture you follow.

Round 3 - Technical 

(1 Question)

  • Q1. Advanced android questions were asked and some scenario based questions.
Round 4 - One-on-one 

(1 Question)

  • Q1. It was managerial round, most discussion were on my projects and past experience.

Interview Preparation Tips

Interview preparation tips for other job seekers - Brushing up fundamentals and basics, aware of latest tech stack would help.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Template and Reactive Forms in Angular
  • Ans. 

    Template and Reactive Forms in Angular are two ways to handle forms in Angular applications.

    • Template Forms are based on the traditional HTML forms and are easy to use for simple forms.

    • Reactive Forms are more flexible and powerful, allowing for complex form validation and dynamic form controls.

    • Template Forms use two-way data binding, while Reactive Forms use a more reactive approach with observables.

    • Reactive Forms are r...

  • Answered by AI

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. What is event loop, how it works.
  • Ans. 

    Event loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking for and handling events.

    • Event loop is commonly used in JavaScript to handle asynchronous operations like setTimeout, setInterval, and AJAX requests.

    • It works by continuously checking the event queue for any pending events, executing them one by one, and then moving on to the next event.

    • Event loop helps in pre...

  • Answered by AI
  • Q2. Micro task queue and macro task queue.
  • Q3. Is node.js single threaded or multi-threaded, also discuss threadpool and it's usages.
  • Q4. Tell the order of output, among process, promise, setTimeout, fs, setInterval.
  • Ans. 

    The order of output is fs, process, setTimeout, setInterval, promise.

    • fs module is synchronous and will output first

    • process is next in line

    • setTimeout will be executed after process

    • setInterval will be executed after setTimeout

    • promise will be executed last

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. JavaScript usages compiler or interpreter.
  • Ans. 

    JavaScript is an interpreted language.

    • JavaScript is an interpreted language, meaning it is executed line by line at runtime.

    • There is no separate compilation step in JavaScript like in languages that use compilers.

    • Examples of interpreted languages include Python, Ruby, and PHP.

  • Answered by AI
  • Q2. Tell the output among various for loops using var, let and bind.
  • Ans. 

    Output comparison of for loops using var, let, and bind in JavaScript.

    • Using var: variable is function-scoped, may lead to unexpected behavior in loops.

    • Using let: variable is block-scoped, recommended for loop iterations.

    • Using bind: creates a new function with a specified 'this' value and initial arguments.

  • Answered by AI
  • Q3. A medium level dsa question on array, solved it using pre-sum.
  • Q4. Situation based question, on how to pick a suitable database.
Round 3 - Technical 

(4 Questions)

  • Q1. What do you do on daily basis, and how to decide a tech-stack on high level.
  • Ans. 

    I work on coding, debugging, testing, and collaborating with team members. Tech stack decisions are based on project requirements, scalability, performance, and team expertise.

    • Daily tasks include coding, debugging, testing, and collaborating with team members

    • Tech stack decisions are based on project requirements, scalability, performance, and team expertise

    • Consider factors like language compatibility, libraries/framewo...

  • Answered by AI
  • Q2. Design an online scalable, real-time document sharing application like google docs.
  • Ans. 

    Design a scalable, real-time document sharing app like Google Docs.

    • Use websockets for real-time collaboration

    • Implement version control to track changes

    • Utilize a distributed database for scalability

    • Include user authentication and access control

    • Support offline editing with automatic sync

  • Answered by AI
  • Q3. How to handle images also in the future.
  • Ans. 

    Utilize cloud storage for scalability, implement image compression techniques, and regularly update image processing libraries.

    • Utilize cloud storage for scalability

    • Implement image compression techniques

    • Regularly update image processing libraries

  • Answered by AI
  • Q4. Any other way to solve the problem, of high I/O on same document to overcome throughput and conflicts.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

I was asked question on sliding window on finding the largest subarray with all distinct numbers. The interviewer was very helpful.

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 in Sep 2023. 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 - One-on-one 

(2 Questions)

  • Q1. Replace all zeros to 1 which are surrounded by 1's
  • Ans. 

    Replace zeros surrounded by ones with ones in an array of strings

    • Iterate through each string in the array

    • Check for zeros surrounded by ones and replace them with ones

    • Return the modified array of strings

  • Answered by AI
  • Q2. Minimum jumps to reach end of an array
  • Ans. 

    The minimum number of jumps needed to reach the end of an array.

    • Use dynamic programming to keep track of the minimum jumps needed at each index.

    • At each index, calculate the maximum reachable index and update the minimum jumps accordingly.

    • Example: For array [2, 3, 1, 1, 2, 4, 2, 0, 1, 1], the minimum jumps needed is 4.

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. LLD Round:- Design classes for bidding system when new bid notifications shown to all users who already bided for it.
  • Ans. 

    Design classes for a bidding system with new bid notifications for users who have already bid.

    • Create a Bid class with attributes like bidder, amount, timestamp, etc.

    • Create a Notification class with attributes like message, recipient, timestamp, etc.

    • Create a BiddingSystem class to manage bids and notifications.

    • Implement a method in BiddingSystem to notify users who have already bid when a new bid is placed.

    • Consider usin...

  • Answered by AI
  • Q2. HLD:- Desing Post order service, or last mile like finding rider, notifications etc

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Instahyre and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

DSA, 1 hour with 2 LC medium questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Low level design
  • Q2. Design lld for Dream 11
  • Ans. 

    Designing the low-level design for Dream 11 platform.

    • Use microservices architecture for scalability and flexibility.

    • Implement a robust database schema to handle large amounts of user data.

    • Utilize caching mechanisms to improve performance, especially during peak usage times.

    • Include authentication and authorization mechanisms to ensure data security.

    • Design APIs for seamless integration with third-party services.

    • Implement...

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. High level design
  • Q2. Design HLD for rider management system
  • Ans. 

    Design HLD for rider management system

    • Use microservices architecture for scalability and flexibility

    • Implement user authentication and authorization for security

    • Include features like ride tracking, payment processing, and feedback system

    • Utilize databases for storing rider information and ride history

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Design Splitwise Application (LLD)
  • Ans. 

    Design a Splitwise application for managing shared expenses among friends.

    • Implement user authentication and authorization for secure access.

    • Create a user-friendly interface for adding expenses and splitting them among friends.

    • Develop algorithms for calculating balances and settling debts between users.

    • Include features for adding comments, attaching receipts, and generating reports.

    • Consider scalability and performance o...

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Low Level Design for Chess
  • Ans. 

    Low level design for a chess game including classes, functions, and data structures.

    • Create classes for pieces (e.g. Pawn, Rook, Bishop) with properties like position and color

    • Implement functions for moving pieces, checking valid moves, and capturing opponent pieces

    • Use data structures like 2D arrays to represent the chess board and track piece positions

  • Answered by AI

Skills evaluated in this interview

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

I applied via Instahyre and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Two medium DSA questions based on strings.

Round 2 - Design Test 

(1 Question)

  • Q1. Design Google Meet
  • Ans. 

    Design a video conferencing platform similar to Google Meet.

    • Implement real-time video and audio streaming

    • Include features like screen sharing, chat, and participant management

    • Ensure scalability to support large number of users

    • Focus on security and privacy measures

    • Optimize for low latency and high quality video/audio

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Zepto Senior Software Engineer interview:
  • Coding
  • System Design
Interview preparation tips for other job seekers - Give some mock interviews before going to the interview.

SatSure Interview FAQs

How many rounds are there in SatSure Senior Software Engineer interview?
SatSure interview process usually has 2 rounds. The most common rounds in the SatSure interview process are Coding Test.

Tell us how to improve this page.

SatSure Senior Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Data Scientist
7 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Customer Success Manager
7 salaries
unlock blur

₹11 L/yr - ₹17 L/yr

Data Analyst
4 salaries
unlock blur

₹8 L/yr - ₹10.5 L/yr

Jr. Data Scientist
4 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Software Engineer
3 salaries
unlock blur

₹2 L/yr - ₹2 L/yr

Explore more salaries
Compare SatSure with

CropIn Technology Solutions

3.3
Compare

Agnext India

5.0
Compare

Intello Labs Pvt Ltd

3.7
Compare

Ninjacart

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