Upload Button Icon Add office photos

Filter interviews by

Sumo Logic Senior Software Engineer Interview Questions and Answers

Updated 20 Sep 2024

Sumo Logic Senior Software Engineer Interview Experiences

1 interview found

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

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Hard dsa question ["ab","aaa","bbaaab","b","a"]

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for dsa

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Array and Java related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - HR was rude and the Interviewer was fixated on one topic. He was rejecting candidates left and right.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - Project Discussion 

(2 Questions)

  • Q1. Questions on what project you worked on
  • Q2. Design 2 factor authentication
  • Ans. 

    Implementing 2 factor authentication for enhanced security

    • Require users to enter their password as the first factor

    • Send a unique code to the user's registered email or phone as the second factor

    • Prompt the user to enter the code to complete the authentication process

  • Answered by AI

I was interviewed before Dec 2021.

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 - Technical 

(1 Question)

  • Q1. Ds Algo round. Any programming language
Round 3 - Technical 

(1 Question)

  • Q1. System design: url shortner, moving large file from one location to other location with LLD
Round 4 - HR 

(1 Question)

  • Q1. Salary discussion more of a formality if you clear technical rounds

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare DS Algo
System design
Keep your code clean while solving problem
Clarify problem
First discuss the solution you are approaching.
Explain with sudo code first once both agree, start coding after that.

What happens when you type www.google.com in web browser
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leetcode Medium Type Questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Design a Online System to book Salon Professionals like Urban Company.
  • Ans. 

    Design an online system to book salon professionals like Urban Company.

    • User registration and login system

    • Search functionality to find salon professionals based on location, services offered, ratings, etc.

    • Booking system with calendar availability and payment integration

    • Review and rating system for users to provide feedback on salon professionals

    • Notification system for booking confirmations, reminders, and updates

  • Answered by AI

Skills evaluated in this interview

I applied via LinkedIn

Round 1 - Aptitude Test 

General math and domain related questions

Round 2 - Technical 

(1 Question)

  • Q1. Data structure and trick questions
Round 3 - Coding Test 

Algorithm and domain indept questions

Round 4 - Technical 

(1 Question)

  • Q1. Face to face interview with manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice on DA and domain knowledge

I applied via Referral

Interview Questionnaire 

1 Question

  • Q1. Ds related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong in DS and algo and should good logical thinking.

I was interviewed before Apr 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 75 Minutes
Round difficulty - Medium

  • Q1. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. 

    The task is to identify all distinct triplets within an array that sum up to a specified number.

    • Iterate through the array and use nested loops to find all possible triplets.

    • Keep track of the sum of each triplet and compare it with the target sum.

    • Print the triplet if the sum matches the target sum, else print -1.

  • Answered by AI
  • Q2. 

    K-th Largest Number in a BST

    Given a binary search tree (BST) consisting of integers and containing 'N' nodes, your task is to find and return the K-th largest element in this BST.

    If there is no K-th la...

  • Ans. 

    Find the K-th largest element in a BST.

    • Perform reverse in-order traversal of the BST to find the K-th largest element.

    • Keep track of the count of visited nodes to determine the K-th largest element.

    • Return -1 if there is no K-th largest element in the BST.

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. Can you design a database schema for a support ticketing system, such as Freshdesk?
  • Ans. 

    Designing a database schema for a support ticketing system like Freshdesk.

    • Create a 'Tickets' table with fields like ticket ID, subject, description, status, priority, etc.

    • Include a 'Users' table for customer and agent information.

    • Establish a 'Categories' table for ticket categorization.

    • Implement a 'Comments' table to track communication history.

    • Utilize foreign keys to establish relationships between tables.

  • Answered by AI
  • Q2. 

    Count Ways to Reach the N-th Stair Problem Statement

    You are provided with a number of stairs, and initially, you are located at the 0th stair. You need to reach the Nth stair, and you can climb one or tw...

  • Ans. 

    The problem involves counting the number of distinct ways to climb N stairs by taking 1 or 2 steps at a time.

    • Use dynamic programming to solve this problem efficiently.

    • The number of ways to reach the Nth stair is equal to the sum of ways to reach (N-1)th stair and (N-2)th stair.

    • Handle modulo 10^9+7 to avoid overflow issues.

    • Consider base cases for 0th and 1st stair.

    • Optimize the solution by using constant space instead of

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. Can you design the Low-Level Design (LLD) and High-Level Design (HLD) for a system like BookMyShow?
  • Ans. 

    Designing the Low-Level Design (LLD) and High-Level Design (HLD) for a system like BookMyShow.

    • For HLD, identify main components like user interface, booking system, payment gateway, and database.

    • For LLD, break down each component into detailed modules and their interactions.

    • Consider scalability, security, and performance in both designs.

    • Example: HLD - User selects movie -> Booking system checks availability -> Pa...

  • Answered by AI
Round 4 - HR 

Round duration - 60 Minutes
Round difficulty - Easy

This was hiring manager round

Round 5 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

This was culture fit round

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Senior Software Engineer in HyderabadEligibility criteriaNo criteriaFreshworks interview preparation:Topics to prepare for the interview - Data structures, HLD, LLD, Database basics, operating system basicsTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : prepare github profile with few good projects
Tip 2 : solve questions from topics like dp, stack, queue, tree
Tip 3 : prepare HLD, LLD

Application resume tips for other job seekers

Tip 1 : add your github profile, competitive coding profiles
Tip 2 : add few achievements like open source contribution, hackathons
Tip 3 : add few personal projects with github link or working site link

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Aug 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. System Design question on designing a Tiny URL
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 Dec 2023. There were 3 interview rounds.

Round 1 - Coding Test 

DSA medium level questions

Round 2 - Technical 

(2 Questions)

  • Q1. JS based questions, event loop
  • Q2. Tricky questions based on output - JS concepts
Round 3 - One-on-one 

(2 Questions)

  • Q1. Machine Coding round on JS, Html, Css
  • Q2. Questions on performance optimization, security

Interview Preparation Tips

Interview preparation tips for other job seekers - Have a strong understanding of the fundamentals of JavaScript, HTML, CSS, and any framework such as React.js. Additionally, possess a basic knowledge of performance optimization and web security.

Sumo Logic Interview FAQs

How many rounds are there in Sumo Logic Senior Software Engineer interview?
Sumo Logic interview process usually has 1 rounds. The most common rounds in the Sumo Logic interview process are One-on-one Round.
How to prepare for Sumo Logic Senior 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 Sumo Logic. The most common topics and skills that interviewers at Sumo Logic expect are Data Structures, Agile, Backend, Ruby and Linux.

Tell us how to improve this page.

Sumo Logic Senior Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Sumo Logic Senior Software Engineer Salary
based on 11 salaries
₹24 L/yr - ₹70 L/yr
168% more than the average Senior Software Engineer Salary in India
View more details

Sumo Logic Senior Software Engineer Reviews and Ratings

based on 1 review

2.0/5

Rating in categories

2.0

Skill development

2.0

Work-life balance

1.0

Salary

1.0

Job security

2.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer2
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Development Engineer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Sumo Logic with

Freshworks

3.5
Compare

Zoho

4.3
Compare

Druva

3.7
Compare

InMobi

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