Upload Button Icon Add office photos

Sumo Logic

Compare button icon Compare button icon Compare

Filter interviews by

Sumo Logic Interview Questions and Answers

Updated 16 Jan 2025
Popular Designations

8 Interview questions

A Senior Recruiter was asked 5mo ago
Q. How do you source candidates and keep them engaged?
Ans. 

I utilize a variety of sourcing methods and maintain candidate engagement through regular communication and personalized interactions.

  • Utilize job boards, social media platforms, and professional networking sites to source candidates

  • Maintain a talent pipeline by regularly reaching out to passive candidates

  • Personalize communication with candidates to keep them engaged and informed about the hiring process

  • Provide tim...

View all Senior Recruiter interview questions
A QA Engineer was asked 12mo ago
Q. How would you test the Amazon cart functionality?
Ans. 

To test Amazon cart, perform functional, usability, security, and performance testing.

  • Test adding items to cart and verifying correct quantity and price

  • Test removing items from cart and updating total price

  • Test applying discounts or promo codes

  • Test checking out and completing the purchase process

  • Test for security vulnerabilities such as session hijacking

  • Test for performance by simulating high traffic scenarios

View all QA Engineer interview questions
A QA Engineer was asked 12mo ago
Q. How would you approach test planning for Google Docs?
Ans. 

Test planning for Google Doc involves defining test objectives, creating test cases, prioritizing testing areas, and scheduling testing activities.

  • Define test objectives based on the features and functionalities of Google Doc

  • Create test cases to cover all possible scenarios and edge cases

  • Prioritize testing areas based on criticality and impact on users

  • Schedule testing activities to ensure thorough coverage before ...

View all QA Engineer interview questions
A QA Engineer was asked 12mo ago
Q. How do you write end-to-end tests in automation?
Ans. 

E2E tests in automation are written to simulate real user scenarios from start to finish.

  • Identify end-to-end scenarios to test

  • Use automation tools like Selenium or Cypress

  • Write test scripts to simulate user actions

  • Verify expected outcomes and results

  • Run tests regularly to ensure functionality

View all QA Engineer interview questions
A QA Engineer was asked 12mo ago
Q. Given a range of weights from 1 to 40 kgs, what is the minimum number of weights needed to cover the complete range?
Ans. 

To cover the range of weights from 1-40 kgs, select weights in powers of 2.

  • Select weights in powers of 2: 1, 2, 4, 8, 16, 32

  • These weights can cover the complete range from 1-40 kgs

  • Example: 1 kg + 2 kg + 4 kg + 8 kg + 16 kg + 32 kg = 63 kgs

View all QA Engineer interview questions
A QA Engineer was asked 12mo ago
Q. Given a system architecture, how would you write test cases for the system?
Ans. 

Develop comprehensive test cases based on system architecture to ensure quality and functionality.

  • Identify key components of the architecture (e.g., database, API, frontend).

  • Create test cases for each component, such as validating API responses.

  • Consider integration testing to ensure components work together seamlessly.

  • Include performance testing to assess system behavior under load.

  • Implement security testing to id...

View all QA Engineer interview questions
A Software Development Engineer II was asked
Q. Stack Leetcode hard problem
Ans. 

Implement a stack data structure that supports push, pop, top, and retrieving the minimum element in constant time.

  • Use two stacks - one to store the actual elements and another to store the minimum values at each point.

  • When pushing an element, check if it is smaller than the current minimum and update the minimum stack accordingly.

  • When popping an element, also pop from the minimum stack if the element being popped...

View all Software Development Engineer II interview questions
Are these interview questions helpful?
A Lead Engineer was asked 7mo ago
Q. Ad metric system design
Ans. 

Designing an ad metric system to track and analyze advertising performance.

  • Define key metrics to track such as impressions, clicks, conversions, and ROI

  • Implement tracking mechanisms using cookies, pixels, or SDKs

  • Create a dashboard for real-time monitoring and reporting

  • Utilize data visualization tools to analyze trends and optimize campaigns

View all Lead Engineer interview questions

Sumo Logic Interview Experiences

8 interviews found

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 21 Jun 2024

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

I applied via Company Website and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Testing Round 

(3 Questions)

  • Q1. Introduction followed by roles and responsibilities.
  • Q2. How to test amazon cart?
  • Ans. 

    To test Amazon cart, perform functional, usability, security, and performance testing.

    • Test adding items to cart and verifying correct quantity and price

    • Test removing items from cart and updating total price

    • Test applying discounts or promo codes

    • Test checking out and completing the purchase process

    • Test for security vulnerabilities such as session hijacking

    • Test for performance by simulating high traffic scenarios

  • Answered by AI
  • Q3. How to write e2e tests in automation?
  • Ans. 

    E2E tests in automation are written to simulate real user scenarios from start to finish.

    • Identify end-to-end scenarios to test

    • Use automation tools like Selenium or Cypress

    • Write test scripts to simulate user actions

    • Verify expected outcomes and results

    • Run tests regularly to ensure functionality

  • Answered by AI
Round 2 - Testing 

(2 Questions)

  • Q1. Introduction followed by role and responsibilities in the current company.
  • Q2. Given a system architecture, write test cases for the system or how will test the system as tester.
  • Ans. 

    Develop comprehensive test cases based on system architecture to ensure quality and functionality.

    • Identify key components of the architecture (e.g., database, API, frontend).

    • Create test cases for each component, such as validating API responses.

    • Consider integration testing to ensure components work together seamlessly.

    • Include performance testing to assess system behavior under load.

    • Implement security testing to identif...

  • Answered by AI
Round 3 - Coding Test 

1. Count occurrence of a character in a first n characters of X string ( X = Y string, which is repeating infinite times).
input -> str1 = "test" & search = "t" & n = 10
new str -> testtesttesttesttest (repeating in infinite loop)
search str -> testtestte [count occurrence of "t" in first n characters of new str ]
o/p -> 5

2. Return the first sub array whose elements summation is multiple of K. subarray must contains 2 elements.
input -> array = [1,4,5,6,2,5] & k = 4 : output -> [6,2] = 8%4 == 0

3. Cross questions on the coding questions.
4. Write test cases to test both coding methods.

Round 4 - Behavioral 

(8 Questions)

  • Q1. Introduction, followed by roles and responsibilities.
  • Q2. Tell your one weakness and one strength
  • Q3. Some cross questions on role and responsibilities.
  • Q4. What kind of person you will not work with?
  • Q5. Test planning for google doc
  • Ans. 

    Test planning for Google Doc involves defining test objectives, creating test cases, prioritizing testing areas, and scheduling testing activities.

    • Define test objectives based on the features and functionalities of Google Doc

    • Create test cases to cover all possible scenarios and edge cases

    • Prioritize testing areas based on criticality and impact on users

    • Schedule testing activities to ensure thorough coverage before relea...

  • Answered by AI
  • Q6. In range of [1-40] kgs, select minimum number of weight to cover the complete range of weights.
  • Ans. 

    To cover the range of weights from 1-40 kgs, select weights in powers of 2.

    • Select weights in powers of 2: 1, 2, 4, 8, 16, 32

    • These weights can cover the complete range from 1-40 kgs

    • Example: 1 kg + 2 kg + 4 kg + 8 kg + 16 kg + 32 kg = 63 kgs

  • Answered by AI
  • Q7. What makes me happy?
  • Ans. 

    I find happiness in problem-solving, collaboration, and continuous learning in my role as a QA Engineer.

    • Solving complex bugs gives me a sense of accomplishment, like when I identified a critical issue before a product launch.

    • Collaborating with developers and other team members fosters a positive work environment, enhancing team spirit.

    • Continuous learning through new testing tools and methodologies keeps my work excitin...

  • Answered by AI
  • Q8. More random questions, don't remember

Interview Preparation Tips

Topics to prepare for Sumo Logic QA Engineer interview:
  • String coding
  • Array Coding
  • Test Cases
  • Test Scenarios
Interview preparation tips for other job seekers - 1. first 3 rounds were very good.
2. brush up your testing basics.
3. focus more on string and array coding questions.
4. EM is stupid & incompetent guy, he don't know shit about testing. From online, he read about one question and funny things was he was not able to explain it correctly. He is lacking common sense.

Final Result:
1. Not selected in the final round because EM wants to hire someone who is 10/10 which unrealistic expectation.

Even if I got selected and I have to work under him, I simply rejected the offer and join other company. Can't work with stupid and arrogant person.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. More questions about networking
  • Q2. Cloud advanced topics

Interview Preparation Tips

Interview preparation tips for other job seekers - More of networking
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(2 Questions)

  • Q1. About your self?
  • Q2. How you do the sourcing and keep candidates engaged,
  • Ans. 

    I utilize a variety of sourcing methods and maintain candidate engagement through regular communication and personalized interactions.

    • Utilize job boards, social media platforms, and professional networking sites to source candidates

    • Maintain a talent pipeline by regularly reaching out to passive candidates

    • Personalize communication with candidates to keep them engaged and informed about the hiring process

    • Provide timely f...

  • Answered by AI
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

Lead Engineer Interview Questions & Answers

user image Anonymous

posted on 13 Nov 2024

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Ad metric system design
  • Ans. 

    Designing an ad metric system to track and analyze advertising performance.

    • Define key metrics to track such as impressions, clicks, conversions, and ROI

    • Implement tracking mechanisms using cookies, pixels, or SDKs

    • Create a dashboard for real-time monitoring and reporting

    • Utilize data visualization tools to analyze trends and optimize campaigns

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Job Portal

Round 1 - Aptitude Test 

2 Hard problems. 1 MCQ. Was able to solve all but 1 problem all test cases werent passing. Got rejected

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

I appeared for an interview in Nov 2023.

Round 1 - Technical 

(1 Question)

  • Q1. Stack Leetcode hard problem
  • Ans. 

    Implement a stack data structure that supports push, pop, top, and retrieving the minimum element in constant time.

    • Use two stacks - one to store the actual elements and another to store the minimum values at each point.

    • When pushing an element, check if it is smaller than the current minimum and update the minimum stack accordingly.

    • When popping an element, also pop from the minimum stack if the element being popped is t...

  • Answered by AI

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Jun 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 tips
Round 2 - Technical 

(1 Question)

  • Q1. Round never happened, interviewer didn't join the call. Shared detailed explanation below.

Interview Preparation Tips

Interview preparation tips for other job seekers - Worst experience.
I was shortlisted for the interview by their Noida branch for the role of QA automation.
Received confirmation mail as well for scheduled interview.
I was told that I will receive a call and meeting invite link 5-10 mins before the interview.
I waited for nearly 1hr even replied back on mail but no revert , called hr as well but he didn't pick up.
Then on Mon HR mailed me that he will schedule interview for Tue, again no revert after that.
I don't know how they operate.

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Sumo Logic?
Ask anonymously on communities.

Interview questions from similar companies

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

Round 1 - System test 

(1 Question)

  • Q1. Advantage and disadvantage of framework.
  • Ans. 

    Frameworks provide structure and pre-built components for software development, but can also limit flexibility and require learning curve.

    • Advantage: Provides structure and pre-built components for faster development

    • Advantage: Can improve code quality and maintainability

    • Disadvantage: Can limit flexibility and customization

    • Disadvantage: Requires learning curve and potential dependency issues

    • Example: ReactJS provides a fr...

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is Oops? Advantage and disadvantage
  • Ans. 

    Oops stands for Object-Oriented Programming. It is a programming paradigm that uses objects to represent real-world entities.

    • Advantages: code reusability, modularity, encapsulation, inheritance, polymorphism

    • Disadvantages: complexity, steep learning curve, performance overhead

    • Example: creating a class 'Car' with properties like 'make', 'model', and 'year', and methods like 'start_engine' and 'stop_engine'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics in server side and client side coding

Skills evaluated in this interview

I applied via Company Website and was interviewed before Oct 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 1. Core Java - OOPS features, Abstract classes and Interface, Inner Classes, String and Object Class, Equals and HashCode methods, Runtime and Compile time exception, Method overloading and overriding, Cus...

Interview Preparation Tips

Interview preparation tips for other job seekers - 1. Clear Core java concepts firmly
2. Basic DB queries
3. Basic Unix commands

Sumo Logic Interview FAQs

How many rounds are there in Sumo Logic interview?
Sumo Logic interview process usually has 1-2 rounds. The most common rounds in the Sumo Logic interview process are Technical, Resume Shortlist and Coding Test.
How to prepare for Sumo Logic 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 Analytics, Data Analytics, Python, Product Management and Agile.
What are the top questions asked in Sumo Logic interview?

Some of the top questions asked at the Sumo Logic interview -

  1. Given a system architecture, write test cases for the system or how will test t...read more
  2. in range of [1-40] kgs, select minimum number of weight to cover the complete r...read more
  3. How to write e2e tests in automati...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3/5

based on 7 interview experiences

Difficulty level

Easy 20%
Moderate 20%
Hard 60%

Duration

Less than 2 weeks 60%
2-4 weeks 40%
View more

Interview Questions from Similar Companies

Google Interview Questions
4.4
 • 897 Interviews
Oracle Interview Questions
3.7
 • 895 Interviews
Amdocs Interview Questions
3.7
 • 533 Interviews
Adobe Interview Questions
3.9
 • 247 Interviews
Chetu Interview Questions
3.3
 • 198 Interviews
24/7 Customer Interview Questions
3.5
 • 179 Interviews
Oracle Cerner Interview Questions
3.6
 • 162 Interviews
Thomson Reuters Interview Questions
4.1
 • 125 Interviews
View all

Sumo Logic Reviews and Ratings

based on 14 reviews

3.8/5

Rating in categories

3.9

Skill development

3.8

Work-life balance

3.6

Salary

2.9

Job security

4.2

Company culture

3.2

Promotions

3.7

Work satisfaction

Explore 14 Reviews and Ratings
Talent Pipeline - Product Engineering

Remote

5-9 Yrs

Not Disclosed

Senior Product Manager II - Security

Noida,

Bangalore / Bengaluru

5-10 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
14 salaries
unlock blur

₹28 L/yr - ₹52 L/yr

Software Engineer2
12 salaries
unlock blur

₹24 L/yr - ₹31 L/yr

Software Engineer
6 salaries
unlock blur

₹22 L/yr - ₹35.9 L/yr

Software Developer
4 salaries
unlock blur

₹29 L/yr - ₹40 L/yr

Software Development Engineer
4 salaries
unlock blur

₹12 L/yr - ₹32 L/yr

Explore more salaries
Compare Sumo Logic with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Automatic Data Processing (ADP)

4.0
Compare

24/7 Customer

3.5
Compare
write
Share an Interview