Upload Button Icon Add office photos

Filter interviews by

Sumo Logic Software Engineer Interview Questions and Answers

Updated 13 Nov 2024

Interview questions from similar companies

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Explain microservices.
  • Q2. OOPS

Interview Preparation Tips

Interview preparation tips for other job seekers - This was a contract-based position, so just 1 round of interviews was conducted.

Software Engineer Interview Questions & Answers

Globant user image Priyanka Vitthal chakkar

posted on 5 Oct 2024

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. What is the inheritance?
  • Ans. 

    Inheritance is a mechanism in object-oriented programming where a class inherits properties and behaviors from another class.

    • Allows a class to inherit attributes and methods from another class

    • Promotes code reusability and reduces redundancy

    • Creates a parent-child relationship between classes

    • Derived class can override or extend the functionality of the base class

  • Answered by AI
  • Q2. What are the types of joins in mysql
  • Ans. 

    Types of joins in MySQL include inner join, left join, right join, and full join.

    • Inner join: Returns rows when there is a match in both tables.

    • Left join: Returns all rows from the left table and the matched rows from the right table.

    • Right join: Returns all rows from the right table and the matched rows from the left table.

    • Full join: Returns rows when there is a match in one of the tables.

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

(2 Questions)

  • Q1. How to handle multiple api's
  • Ans. 

    Use a centralized API gateway to manage and route requests to multiple APIs efficiently.

    • Implement a centralized API gateway to handle incoming requests and route them to the appropriate API based on the endpoint.

    • Utilize API management tools like Apigee, Kong, or AWS API Gateway to manage and monitor multiple APIs.

    • Consider implementing a caching layer to improve performance and reduce the number of requests to external

  • Answered by AI
  • Q2. What does strstr function do?
  • Ans. 

    strstr function searches for a substring within a string and returns a pointer to the first occurrence of the substring.

    • Used in C programming language

    • Syntax: char *strstr(const char *haystack, const char *needle)

    • Example: char *str = strstr("hello world", "world")

  • Answered by AI

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Questions around Data structures like LinkedList, stack and queue
  • Q2. Coding questions based on Array and strings in java.
  • Q3. Few questions around java8 streams

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare for coding questions and logic. without any inbuilt functions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in Jul 2024. There were 3 interview rounds.

Round 1 - Group Discussion 

The topic given to me is AI is good or bad

Round 2 - Technical 

(2 Questions)

  • Q1. Program to find prime number
  • Ans. 

    A program to find prime numbers in a given range.

    • Iterate through numbers in the given range

    • Check if each number is divisible by any number other than 1 and itself

    • If not divisible, then the number is prime

  • Answered by AI
  • Q2. Program to find the duplicates
  • Ans. 

    Program to find duplicates in an array of strings

    • Iterate through the array and store each element in a hash set

    • If an element is already in the hash set, it is a duplicate

    • Return a list of all duplicates found

  • Answered by AI
Round 3 - Technical 

(2 Questions)

  • Q1. Self introduction
  • Q2. Explanation of project code
  • Ans. 

    The project code is a web application that allows users to create and share interactive quizzes.

    • The code uses HTML, CSS, and JavaScript to create the front-end interface.

    • It utilizes Node.js and Express for the back-end server.

    • MongoDB is used as the database to store user-generated quizzes.

    • Socket.io is used for real-time communication between users during quiz sessions.

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Coding question based on stacks
  • Q2. Java and Spring Boot questions..too much grilling
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Coding Test 

DESIGN 40 MINS HACKERRANK

Round 2 - Group Discussion 

DESIGN 40 MINS HACCKERANK

Interview Preparation Tips

Interview preparation tips for other job seekers - mlkl
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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. LRU Cache question and couple on array
Round 3 - Technical 

(1 Question)

  • Q1. System Design question related to Lift
Round 4 - One-on-one 

(1 Question)

  • Q1. Managerial, project related and SQL
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I was interviewed in Jun 2023.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. Will you be able to work in Rotational Shifts?
  • Q2. How much experience do you have in SQL and Node JS.
  • Ans. 

    I have 5 years of experience in SQL and Node JS.

    • I have worked extensively with SQL databases, writing complex queries and optimizing performance.

    • I am proficient in using Node JS for server-side development, building RESTful APIs and handling database operations.

    • I have experience in integrating SQL databases with Node JS applications using libraries like Sequelize or Knex.

    • I have successfully delivered projects that invo...

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

(5 Questions)

  • Q1. What is Index in SQL?
  • Ans. 

    Indexes in SQL are data structures that improve the speed of data retrieval operations on database tables.

    • Indexes are created on one or more columns of a table to allow faster searching and sorting of data.

    • They work similar to the index of a book, allowing the database engine to quickly locate the data.

    • Indexes can be created on primary keys, foreign keys, or any other frequently searched columns.

    • They reduce the amount ...

  • Answered by AI
  • Q2. What are the different types of Normalization in DBMS?
  • Ans. 

    Normalization is a process in DBMS that eliminates data redundancy and ensures data integrity.

    • Normalization is used to organize data in a database efficiently.

    • There are different normal forms, such as 1NF, 2NF, 3NF, BCNF, and 4NF.

    • Each normal form has specific rules and dependencies to achieve data normalization.

    • Normalization helps in reducing data duplication, improving data consistency, and simplifying database mainte...

  • Answered by AI
  • Q3. What do you know about Views in mySQL?
  • Ans. 

    Views in mySQL are virtual tables that are based on the result of a query. They can be used to simplify complex queries and provide a layer of abstraction.

    • Views are created using the CREATE VIEW statement.

    • They are stored in the database and can be accessed like regular tables.

    • Views can be used to hide complexity by encapsulating complex queries into a single view.

    • They can also be used to restrict access to certain colu...

  • Answered by AI
  • Q4. What are Stored Procedures?
  • Ans. 

    Stored Procedures are precompiled database objects that contain a set of SQL statements and can be executed with a single call.

    • Stored Procedures are used to encapsulate and execute frequently used SQL statements.

    • They improve performance by reducing network traffic and optimizing query execution.

    • They can accept input parameters and return output values.

    • Stored Procedures can be used for data manipulation, data retrieval,...

  • Answered by AI
  • Q5. Tell me something about Internet of Things.
  • Ans. 

    Internet of Things (IoT) refers to the network of physical devices, vehicles, appliances, and other objects embedded with sensors, software, and connectivity.

    • IoT enables devices to collect and exchange data over the internet.

    • It allows for remote monitoring and control of devices and systems.

    • IoT has applications in various industries such as healthcare, transportation, agriculture, and smart homes.

    • Examples of IoT device...

  • Answered by AI
Round 4 - Client Interview 

(6 Questions)

  • Q1. Questions about Past Experience, the projects I have worked on.
  • Q2. What does JWT stand for? How do we use them?
  • Ans. 

    JWT stands for JSON Web Token. It is a compact, URL-safe means of representing claims between two parties.

    • JWT is used for authentication and authorization purposes in web applications.

    • It consists of three parts: header, payload, and signature.

    • The header contains the algorithm used to sign the token.

    • The payload contains the claims or information about the user.

    • The signature is used to verify the integrity of the token.

    • J...

  • Answered by AI
  • Q3. What is the difference between Webtokens and APIs?
  • Ans. 

    Webtokens and APIs are both used in web development, but they serve different purposes.

    • Webtokens are used for authentication and authorization, providing a secure way to transmit user information between client and server.

    • APIs (Application Programming Interfaces) are sets of rules and protocols that allow different software applications to communicate and interact with each other.

    • Webtokens are often used within APIs to...

  • Answered by AI
  • Q4. What is oAuth, what method did you use for Authentication/ Authorisation is your project?
  • Ans. 

    oAuth is an open standard for authorization. In my project, I used the oAuth 2.0 protocol for authentication and authorization.

    • oAuth is a protocol that allows users to grant limited access to their resources on one website to another website without sharing their credentials.

    • It provides a secure way for users to authenticate and authorize third-party applications to access their data.

    • oAuth 2.0 is the most widely used v...

  • Answered by AI
  • Q5. If the data in a table is already normalized, what can we do to further optimize is?
  • Ans. 

    Further optimization of normalized data can be achieved through indexing, denormalization, and caching.

    • Create appropriate indexes on frequently queried columns to improve query performance.

    • Consider denormalizing the data by combining related tables to reduce the number of joins required.

    • Implement caching mechanisms to store frequently accessed data in memory for faster retrieval.

    • Use materialized views or summary tables...

  • Answered by AI
  • Q6. How do you perform indexing in a database, which column you use for indexing?
  • Ans. 

    Indexing in a database improves query performance by creating a data structure that allows for faster data retrieval.

    • Indexing involves creating an index on one or more columns of a database table.

    • The column used for indexing should be chosen based on the frequency of data retrieval and the cardinality of the column.

    • Columns with high selectivity and frequent data retrieval are good candidates for indexing.

    • Examples of co...

  • Answered by AI

Skills evaluated in this interview

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

There should be 2 coding questions we have to solve that

Round 2 - Technical 

(1 Question)

  • Q1. They ask dsa questions

Sumo Logic Interview FAQs

How many rounds are there in Sumo Logic Software Engineer interview?
Sumo Logic interview process usually has 1 rounds. The most common rounds in the Sumo Logic interview process are Aptitude Test.
How to prepare for Sumo Logic 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 Computer science, Backend, Data Structures, Cloud Computing and Information Technology.

Tell us how to improve this page.

Sumo Logic Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more
Sumo Logic Software Engineer Salary
based on 6 salaries
₹22 L/yr - ₹30 L/yr
196% more than the average Software Engineer Salary in India
View more details

Sumo Logic Software Engineer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

5.0

Salary

3.0

Job security

4.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
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