Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by LogicMonitor Team. If you also belong to the team, you can get access from here

LogicMonitor Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

LogicMonitor Interview Questions, Process, and Tips

Updated 29 Nov 2024

Top LogicMonitor Interview Questions and Answers

View all 8 questions

LogicMonitor Interview Experiences

Popular Designations

14 interviews found

Java Developer Interview Questions & Answers

user image Pooja Pansare

posted on 29 Nov 2024

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

I applied via Approached by Company and was interviewed in Oct 2024. There were 3 interview rounds.

Round 1 - Coding Test 

My 1st Round was Coding round where there were leetcode medium-hard problem one was on linked list that check if it returns any boolean value and another one was there is array divide it into parts and nums and it had string given as input both were hard questions but i managed to clear it .

Round 2 - Technical 

(2 Questions)

  • Q1. SQL Basic Concepts - Indexing, Joins, DDL, DML, Difference between SQL and NO-SQL
  • Q2. Java - Garabge Collection, Package, Interface, OOPS Concepts, Difference between package and interface why we need interface? java oops based program on object and classes, prepare DSA
Round 3 - Technical 

(2 Questions)

  • Q1. Scenario based question like i have a shop and i have multiple white shoes so create pair using hasmap and write algorithm, code for fancy number
  • Q2. Based on resume, projects and internship

Interview Preparation Tips

Interview preparation tips for other job seekers - pl prepare DSA! Array String Hashmap most imp topics and few OOPS and DBMS topics i was not asked but mostly asked for many ppl

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 1You have been given an integer array/list(ARR) of size N that contains only integers, 0 and 1. Write a function to sort this array/list. Think of a solution which scans the array/list only once and don't require use of an extra arra... read more
View answer (4)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Coding Test 

First round will be coding test which will have Core java questions

Round 2 - Technical 

(4 Questions)

  • Q1. Type of Class Loaders available in java
  • Ans. 

    Java has three types of class loaders: Bootstrap Class Loader, Extension Class Loader, and System Class Loader.

    • Bootstrap Class Loader loads core Java classes located in the bootstrap classpath.

    • Extension Class Loader loads classes from the extensions directory.

    • System Class Loader loads classes from the classpath specified by the CLASSPATH environment variable.

  • Answered by AI
  • Q2. Coding question related find 3nd highest number with single loop and minimum time complexity.
  • Ans. 

    Use a single loop to find the 3rd highest number in an array with minimum time complexity.

    • Iterate through the array and keep track of the three highest numbers encountered so far.

    • Update the three highest numbers as you iterate through the array.

    • Return the third highest number once the loop is completed.

  • Answered by AI
  • Q3. What is diff between cyclicBarrier and countDownLatch?
  • Ans. 

    CyclicBarrier allows a group of threads to wait at a barrier until all threads have reached it, while CountDownLatch allows one or more threads to wait until a set of operations being performed in other threads completes.

    • CyclicBarrier is reusable, while CountDownLatch is not.

    • CyclicBarrier allows all threads to wait for each other, while CountDownLatch allows one thread to wait for others.

    • CyclicBarrier resets automatica...

  • Answered by AI
  • Q4. What is diff between JPARepository and CURDRepository?
  • Ans. 

    JPARepository is a Spring Data interface for JPA-based repositories, while CRUDRepository is a generic interface for CRUD operations.

    • JPARepository extends CRUDRepository and provides additional JPA-specific methods.

    • CRUDRepository is a generic interface for CRUD operations on a repository.

    • JPARepository is typically used for JPA-based repositories, while CRUDRepository can be used for any type of repository.

    • JPARepository...

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Second round is pending

Skills evaluated in this interview

Senior Software Engineer Interview Questions asked at other Companies

Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nth prime number. A prime number is a number greater than 1 that is not a product of two smaller natural numbers. Prime numbers have only two factors – 1 and the number itself. ... read more
View answer (6)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Good DSA knowledge requires

Round 2 - One-on-one 

(1 Question)

  • Q1. Merge sorted array
Round 3 - Technical 

(2 Questions)

  • Q1. Java questions, troubleshooting
  • Q2. Merge sorted array
Round 4 - Technical 

(1 Question)

  • Q1. Techno managerial
Round 5 - Aptitude Test 

Not applicable for details disclosure

Round 6 - HR 

(1 Question)

  • Q1. General questions

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (178)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2023. There were 5 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 - Coding Test 

Basic 2 ,3 Java programs. Moderate level.

Round 3 - Technical 

(3 Questions)

  • Q1. Core Java theory questions. Questions focused on multithreading. Basic spring boot questions.
  • Q2. How to handle authentication in Spring Boot
  • Ans. 

    Authentication in Spring Boot is handled using Spring Security which provides various authentication mechanisms.

    • Use Spring Security to configure authentication in Spring Boot

    • Define a custom UserDetailsService to load user-specific data for authentication

    • Use annotations like @EnableWebSecurity and @EnableGlobalMethodSecurity to secure endpoints

    • Configure authentication providers like in-memory, JDBC, LDAP, etc. in the ap

  • Answered by AI
  • Q3. Transient keyword
Round 4 - Technical 

(2 Questions)

  • Q1. Core Java programs. Core Java theory questions
  • Q2. How many ways in Java we can handle deadlock or ways to handle synchronisation in Java.
  • Ans. 

    In Java, deadlock can be handled by using techniques like avoiding nested locks, using timeout, and using the java.util.concurrent package.

    • Avoid nested locks to prevent potential deadlocks.

    • Use timeout when acquiring locks to prevent indefinite waiting.

    • Utilize java.util.concurrent package classes like ReentrantLock and Semaphore for more advanced synchronization control.

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Basic salary related questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Process is lengthy.
Waste of time they take 3 4 rounds and even won't share the interview feedback.

I was positive about the my interview but got rejected they just do timepass.

Skills evaluated in this interview

Senior Software Developer Interview Questions asked at other Companies

Q1. Intersection of Linked List Problem You are provided with two singly linked lists containing integers, where both lists converge at some node belonging to a third linked list. Your task is to determine the data of the node at which they sta... read more
Add answer

LogicMonitor interview questions for popular designations

 Software Engineer

 (3)

 Java Developer

 (2)

 Senior Software Engineer

 (2)

 UI Developer

 (2)

 Associate UI Engineer

 (1)

 Senior Cloud Support Engineer

 (1)

 Senior Java Developer

 (1)

 Senior Software Developer

 (1)

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

I applied via Campus Placement and was interviewed in Nov 2022. There were 5 interview rounds.

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 - Aptitude Test 

It's the type of speed-solving 40 questions and we have 20 min, the question are medium aptitude questions eg: ratio of velocity,

Round 3 - Coding Test 

These are easy(leetcode) level DSA question 3 question 90min. first 2 were if else type with little logic last was related to regular expression we have to repair the code for regular expression

Round 4 - One-on-one 

(1 Question)

  • Q1. 1)I have to design a data structure for car parking given some parameter like parking fee and all it was the application of the OOPS concept 2)Question on project on the resume, know your project I was ask...
Round 5 - One-on-one 

(1 Question)

  • Q1. 1)1 easy 1 medium-level DSA question from leetcode with certain understanding of web Dev in it. 2)how the 3 tier of web dev works from hitting request to the server to some HTTP and HTTPS protocols to back...

Interview Preparation Tips

Interview preparation tips for other job seekers - practice reactjs and js concepts like js promise like many ppl fully understand it, of reactjs practise redux it is confusing for beginner and hooks all 9 hooks of reactjs.

I got eliminated before HR round, but after a month got call from HR and got directly offer for same package and role

Java Developer Interview Questions & Answers

user image Shuvam Pargal

posted on 27 Feb 2023

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

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

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

Round 1 is coding round and they share qualified.io link where they ask you 3 questions and level was easy

Round 3 - Technical 

(2 Questions)

  • Q1. Just cleared round 1 and after that ill update the round 2 questions
  • Q2. I''ll update it later

Interview Preparation Tips

Interview preparation tips for other job seekers - clear core java concepts and java 8 multi threading and spring boot

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)

UI Developer Interview Questions & Answers

user image Anonymous

posted on 13 Oct 2022

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Javascript basic question, output based question, question related to setTimeout, questions related to Currying, promises
  • Q2. React basics to advanced,custom hooks,high order components,react life cycle, why react , virtual Dom , situation based question on react . How to pass data between components,redux flow
Round 3 - One-on-one 

(1 Question)

  • Q1. Todolist implementation
  • Ans. 

    Todolist implementation

    • Create a UI for adding tasks

    • Implement functionality to add, delete and mark tasks as complete

    • Store tasks in a database or local storage

    • Allow filtering of tasks by status (completed, active)

    • Add option to edit task details

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Befor 2-3 days from interview start consuming namastey js before breakfast and after dinner for 1 hour.
Apart from that uncommon geeks for react questions.

Skills evaluated in this interview

UI Developer Interview Questions asked at other Companies

Q1. Create 10 no. of Checkboxes in javascript and on-checked checkboxes count should be show at below. as you will un-check the checkbox count should also change. so means to say checked checkbox count should be print.
View answer (1)

Software Engineer Interview Questions & Answers

user image SUBHANU SHARMA

posted on 26 Jun 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jun 2023. There were 3 interview rounds.

Round 1 - Coding Test 

1 medium-level leetcode question

Round 2 - Technical 

(2 Questions)

  • Q1. 1 String-based question
  • Q2. 1 Array-based question
Round 3 - Technical 

(1 Question)

  • Q1. Design in-memory file system
  • Ans. 

    Design an in-memory file system for efficient file storage and retrieval

    • Use a tree data structure to represent directories and files

    • Implement caching mechanisms to improve performance

    • Consider using hash tables for fast file lookup

    • Support file operations like read, write, delete, and search

    • Ensure data consistency and durability through proper error handling

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (178)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Oct 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(5 Questions)

  • Q1. Basic Java Questions
  • Q2. Coding, OOPS, Collections
  • Q3. L2 : Techno Manager Round
  • Q4. Project Overview
  • Q5. Spring Boot, Quarkus

Interview Preparation Tips

Interview preparation tips for other job seekers - Not much of compensation

Senior Software Engineer Interview Questions asked at other Companies

Q1. Nth Prime Number Problem Statement Find the Nth prime number given a number N. Explanation: A prime number is greater than 1 and is not the product of two smaller natural numbers. A prime number has exactly two distinct positive divisors: 1... read more
View answer (1)

I applied via LinkedIn and was interviewed in Oct 2021. There were 3 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Describing current project and roles
  • Q2. Troubleshooting skills mindset
Round 2 - Technical 

(2 Questions)

  • Q1. Client Interview with respect to technical knowledge based on resume
  • Q2. Scripting and automation in case if you are good with any language, for me, it was python.
Round 3 - One-on-one 

(2 Questions)

  • Q1. Client interview with respective cloud support team lead from Singapore
  • Q2. Analytical questions based on how you will learn and analyse the product

Interview Preparation Tips

Interview preparation tips for other job seekers - If you are good with your current skills, based on your resume, it will be good enough. LM team looks forward the good talent and if you are fit with some other skills, they can hire you. Currently product is looking for UI, Dev, DevOps, Tester, Support, Cloud, Prod management, etc.

LogicMonitor Interview FAQs

How many rounds are there in LogicMonitor interview?
LogicMonitor interview process usually has 3-4 rounds. The most common rounds in the LogicMonitor interview process are Technical, One-on-one Round and Coding Test.
How to prepare for LogicMonitor 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 LogicMonitor. The most common topics and skills that interviewers at LogicMonitor expect are Agile, Linux, Analytics, Python and SQL.
What are the top questions asked in LogicMonitor interview?

Some of the top questions asked at the LogicMonitor interview -

  1. How many ways in Java we can handle deadlock or ways to handle synchronisation ...read more
  2. What is diff between cyclicBarrier and countDownLat...read more
  3. what is diff between JPARepository and CURDReposito...read more
How long is the LogicMonitor interview process?

The duration of LogicMonitor interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

LogicMonitor Interview Process

based on 12 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Zoho Interview Questions
4.3
 • 516 Interviews
Mu Sigma Interview Questions
2.6
 • 229 Interviews
Freshworks Interview Questions
3.5
 • 155 Interviews
BrowserStack Interview Questions
3.6
 • 48 Interviews
InMobi Interview Questions
3.5
 • 35 Interviews
View all

LogicMonitor Reviews and Ratings

based on 74 reviews

3.8/5

Rating in categories

3.6

Skill development

4.0

Work-life balance

3.6

Salary

3.6

Job security

3.8

Company culture

3.0

Promotions

3.5

Work satisfaction

Explore 74 Reviews and Ratings
Software Engineer
70 salaries
unlock blur

₹9 L/yr - ₹21.2 L/yr

Senior Software Engineer
55 salaries
unlock blur

₹15 L/yr - ₹30.5 L/yr

Senior Automation Engineer
37 salaries
unlock blur

₹14 L/yr - ₹31.1 L/yr

Associate Software Engineer
24 salaries
unlock blur

₹7.7 L/yr - ₹11.4 L/yr

UI Engineer
19 salaries
unlock blur

₹8 L/yr - ₹18.7 L/yr

Explore more salaries
Compare LogicMonitor with

Freshworks

3.5
Compare

Zoho

4.3
Compare

ManageEngine

1.4
Compare

InMobi

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