Upload Button Icon Add office photos

Filter interviews by

Sumo Logic QA Engineer Interview Questions, Process, and Tips

Updated 22 Jun 2024

Sumo Logic QA Engineer Interview Experiences

1 interview 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.
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?
  • 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 questions from similar companies

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

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

Round 1 - Technical 

(9 Questions)

  • Q1. Tell me about your Project? what part you tested in your project?
  • Ans. 

    I worked on a project to develop a mobile application for tracking fitness goals and workouts.

    • Tested user authentication and registration processes

    • Performed functional testing on workout tracking features

    • Conducted regression testing after each new feature implementation

  • Answered by AI
  • Q2. What is Regression testing and what is regression defects?
  • Ans. 

    Regression testing is retesting of software to ensure that recent changes have not adversely affected existing features. Regression defects are bugs that reappear after changes.

    • Regression testing is performed to make sure that new code changes have not introduced any new bugs or caused existing functionalities to break.

    • It involves re-executing test cases that cover the impacted areas of the software.

    • Regression defects ...

  • Answered by AI
  • Q3. Scenario based question in that ask about the regression defects
  • Q4. Verification vs Validation?
  • Ans. 

    Verification ensures the product is built right, while validation ensures the right product is built.

    • Verification focuses on process, validation focuses on product

    • Verification answers 'Are we building the product right?'

    • Validation answers 'Are we building the right product?'

    • Verification is done before validation

  • Answered by AI
  • Q5. How frequently do you run the Regression Test?
  • Ans. 

    Regression tests are run after every significant code change or new feature implementation.

    • Regression tests are typically run after every significant code change or new feature implementation to ensure that existing functionalities are not affected.

    • The frequency of running regression tests may vary depending on the project timeline and release cycle.

    • In Agile development, regression tests are often run as part of the co...

  • Answered by AI
  • Q6. How to select 5 th dropdown option?
  • Ans. 

    To select the 5th dropdown option, locate the dropdown element and choose the 5th option.

    • Locate the dropdown element using its unique identifier or class name

    • Use a method like 'selectByIndex' or 'selectByVisibleText' to choose the 5th option

    • Verify that the correct option has been selected

  • Answered by AI
  • Q7. Find the xpath of "Google Search tab" & "Voice search button"?
  • Ans. 

    Use xpath to locate Google Search tab and Voice search button on the webpage.

    • For Google Search tab: //input[@name='btnK']

    • For Voice search button: //div[@aria-label='Search by voice']

  • Answered by AI
  • Q8. Write a java program for reverse string without pre defined method.
  • Ans. 

    Java program to reverse a string without using predefined methods.

    • Create a char array from the input string.

    • Use two pointers, one at the start and one at the end, to swap characters.

    • Continue swapping characters until the pointers meet in the middle.

  • Answered by AI
  • Q9. Which libraries use for the verifying test cases?
  • Ans. 

    Some common libraries used for verifying test cases are JUnit, TestNG, Selenium, and RestAssured.

    • JUnit is a popular Java testing framework for unit testing.

    • TestNG is another Java testing framework that supports parameterized and data-driven testing.

    • Selenium is a widely used tool for automating web browsers for testing purposes.

    • RestAssured is a Java library for testing RESTful APIs.

  • Answered by AI

Skills evaluated in this interview

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

I applied via campus placement at University of Petroleum and Energy Studies (UPES), Dehradun and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Was easy, basic fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Asked questions on resume and DevOps and basic array questions
Round 3 - Technical 

(1 Question)

  • Q1. Asked questions regarding projects and dsa
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial round
Interview experience
1
Bad
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
-

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Testcases for pencil
  • Ans. 

    Testcases for a pencil include checking its writing ability, eraser functionality, durability, sharpening ease, and lead breakage resistance.

    • Verify that the pencil writes smoothly on paper without skipping

    • Test the eraser by attempting to erase pencil marks effectively

    • Check the durability of the pencil by dropping it from a certain height

    • Test how easily the pencil can be sharpened without breaking the lead

    • Verify the res...

  • Answered by AI
  • Q2. Linux commands for copying creating
  • Ans. 

    Linux commands for copying and creating files and directories.

    • To copy a file: cp source_file destination_file

    • To copy a directory: cp -r source_directory destination_directory

    • To create a new file: touch new_file

    • To create a new directory: mkdir new_directory

  • Answered by AI

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Print missing number in given array
  • Ans. 

    Find and print the missing number in a given array of strings.

    • Convert the array of strings to an array of integers for easier manipulation.

    • Iterate through the array to find the missing number by comparing consecutive elements.

    • Print the missing number once found.

  • Answered by AI
  • Q2. Print string in reverse
  • Ans. 

    Reverse a string in an array of strings

    • Iterate through each string in the array

    • Use a loop to reverse each string character by character

    • Store the reversed strings in a new array

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. How do you manage differences in team
  • Q2. How do you test faulty ATM
  • Ans. 

    To test a faulty ATM, simulate various scenarios like card reader failure, cash dispenser malfunction, network connectivity issues, etc.

    • Simulate card reader failure by inserting a damaged card or a card with a magnetic strip issue.

    • Test cash dispenser malfunction by requesting cash withdrawal and observing if the correct amount is dispensed.

    • Check for network connectivity issues by trying to access online banking service...

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Aptitude test was easy to clear

Round 2 - Coding Test 

Coding test was ok to clear

Round 3 - Technical 

(1 Question)

  • Q1. Technical was easy to medium
Round 4 - HR 

(1 Question)

  • Q1. Tell me about your self
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Mar 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

General Awareness and Numerical ability

Round 2 - Coding Test 

2 coding questions related to Array and Strings

Round 3 - Technical 

(1 Question)

  • Q1. SQL + Puzzles + Java and OOPs concept
Round 4 - HR 

(1 Question)

  • Q1. All types of HR questions related to organization.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed before Oct 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Write a program to remove all the space from the sentence .
  • Ans. 

    Program to remove all spaces from a sentence

    • Iterate through each character in the sentence

    • If the character is not a space, add it to a new string

    • Return the new string without spaces

  • Answered by AI
  • Q2. Java oops questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be through with resume and one coding language
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Mar 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 

(1 Question)

  • Q1. Interview with the manager. Quite easy with questions on testing concepts and prior experience
Round 3 - One-on-one 

(1 Question)

  • Q1. Second one on one with On site QA director. Simple round with questions on testing concepts and situation Oriented

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear and confident in communication
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Oops concepts in c#
  • Ans. 

    Oops concepts in C# include inheritance, polymorphism, encapsulation, and abstraction.

    • Inheritance allows a class to inherit properties and behavior from another class.

    • Polymorphism allows objects to be treated as instances of their parent class.

    • Encapsulation hides the internal state of an object and only exposes necessary functionality.

    • Abstraction focuses on the essential characteristics of an object while hiding irrele

  • Answered by AI
  • Q2. Automation Framework related questions

Skills evaluated in this interview

Sumo Logic Interview FAQs

How many rounds are there in Sumo Logic QA Engineer interview?
Sumo Logic interview process usually has 4 rounds. The most common rounds in the Sumo Logic interview process are Coding Test and Behavioral.
What are the top questions asked in Sumo Logic QA Engineer interview?

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

  1. in range of [1-40] kgs, select minimum number of weight to cover the complete r...read more
  2. How to write e2e tests in automati...read more
  3. How to test amazon ca...read more

Tell us how to improve this page.

Sumo Logic QA Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Senior Software Engineer
9 salaries
unlock blur

₹18 L/yr - ₹70 L/yr

Software Engineer2
9 salaries
unlock blur

₹18 L/yr - ₹31 L/yr

Software Engineer
6 salaries
unlock blur

₹22 L/yr - ₹30 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

Freshworks

3.5
Compare

Zoho

4.3
Compare

Druva

3.6
Compare

InMobi

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