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 and Answers

Updated 29 Nov 2024
Popular Designations

10 Interview questions

A Senior Software Engineer was asked 8mo ago
Q. What is the difference 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 autom...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 8mo ago
Q. What is the difference 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.

  • JPARepos...

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 8mo ago
Q. What types of Class Loaders are 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.

View all Senior Software Engineer interview questions
A Senior Software Engineer was asked 8mo ago
Q. Write code to find the third highest number in an array using a single loop and minimizing 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.

View all Senior Software Engineer interview questions
A Software Engineer was asked 12mo ago
Q. Design an 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

View all Software Engineer interview questions
🔥 Asked by recruiter 2 times
A Software Engineer was asked 12mo ago
Q. You are given two integer arrays nums1 and nums2, sorted in non-decreasing order, and two integers m and n, representing the number of elements in nums1 and nums2 respectively. Merge nums1 and nums2 into a ...
Ans. 

Merge two sorted arrays into a single sorted array efficiently.

  • Use two pointers to track positions in both arrays.

  • Compare elements at both pointers and append the smaller one to the result.

  • Continue until all elements from both arrays are merged.

  • Example: Merging [1, 3, 5] and [2, 4, 6] results in [1, 2, 3, 4, 5, 6].

View all Software Engineer interview questions
🔥 Asked by recruiter 2 times
A Software Engineer was asked 12mo ago
Q. You are given two integer arrays nums1 and nums2, sorted in non-decreasing order, and two integers m and n, representing the number of elements in nums1 and nums2 respectively. Merge nums1 and nums2 into a ...
Ans. 

Merge two sorted arrays into a single sorted array efficiently.

  • Use two pointers to track positions in both arrays.

  • Compare elements at both pointers and append the smaller one to the result.

  • Continue until all elements from both arrays are merged.

  • Example: Merging [1, 3, 5] and [2, 4, 6] results in [1, 2, 3, 4, 5, 6].

  • Time complexity is O(n + m), where n and m are the lengths of the two arrays.

View all Software Engineer interview questions
Are these interview questions helpful?
A Senior Software Developer was asked
Q. How do you 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 t...

View all Senior Software Developer interview questions
An UI Developer was asked
Q. Implement a to-do list.
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

View all UI Developer interview questions
A Senior Software Developer was asked
Q. 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.

View all Senior Software Developer interview questions

LogicMonitor Interview Experiences

14 interviews found

UI Developer Interview Questions & Answers

user image Anonymous

posted on 13 Oct 2022

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 

(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

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

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

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

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

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

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
  • Ans. 

    I will leverage documentation, hands-on practice, and community engagement to learn and analyze the product effectively.

    • Review official documentation and user guides to understand product features and functionalities.

    • Engage in hands-on practice by setting up a test environment to explore the product's capabilities.

    • Participate in community forums and discussions to gain insights from other users' experiences.

    • Utilize mon...

  • Answered by AI

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.
Round 1 - Coding Test 

1.30 hours test with 3 core java problems

Round 2 - Technical 

(1 Question)

  • Q1. It was a technical round all questions based on Mulithreading.
Round 3 - Technical 

(1 Question)

  • Q1. It was Managerial round.

Interview Preparation Tips

Interview preparation tips for other job seekers - The process is slow and takes a lot of time. You may don't get clear feedback after the interview.

Top trending discussions

View All
Office Jokes
2w
an executive
CTC ≠ Confidence Transfer Credit
Ab toh aisa lagta hai, chillar jaise salary ke liye main kaju katli ban ke jaa rahi hoon. Samajh nahi aata, main zyada ready ho ke jaa rahi hoon ya ye mujhe kam pay kar rahe hain? #CorporateLife #OfficeJokes #UnderpaidButWellDressed
FeedCard Image
Got a question about LogicMonitor?
Ask anonymously on communities.

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. Analytical questions based on how you will learn and analyse the prod...read more
  3. What is diff between cyclicBarrier and countDownLat...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.

Overall Interview Experience Rating

3.8/5

based on 12 interview experiences

Difficulty level

Easy 11%
Moderate 78%
Hard 11%

Duration

Less than 2 weeks 78%
2-4 weeks 22%
View more

Interview Questions from Similar Companies

BrowserStack Interview Questions
3.6
 • 50 Interviews
Fingent Interview Questions
4.2
 • 24 Interviews
Backbase Interview Questions
3.7
 • 23 Interviews
3Pillar Global Interview Questions
3.2
 • 20 Interviews
Khoros Interview Questions
3.7
 • 20 Interviews
Bottomline Interview Questions
3.4
 • 19 Interviews
Mentor Graphics Interview Questions
4.0
 • 18 Interviews
Fourkites Interview Questions
3.7
 • 18 Interviews
View all

LogicMonitor Reviews and Ratings

based on 80 reviews

3.6/5

Rating in categories

3.4

Skill development

3.8

Work-life balance

3.4

Salary

3.4

Job security

3.7

Company culture

2.8

Promotions

3.3

Work satisfaction

Explore 80 Reviews and Ratings
Software Engineer
81 salaries
unlock blur

₹9 L/yr - ₹21.2 L/yr

Senior Software Engineer
62 salaries
unlock blur

₹15 L/yr - ₹30.5 L/yr

Senior Automation Engineer
39 salaries
unlock blur

₹14 L/yr - ₹31.1 L/yr

Associate Software Engineer
28 salaries
unlock blur

₹7 L/yr - ₹12 L/yr

UI Engineer
17 salaries
unlock blur

₹9.2 L/yr - ₹18.7 L/yr

Explore more salaries
Compare LogicMonitor with

Yodlee

3.8
Compare

Fingent

4.2
Compare

Bravura Solutions

3.9
Compare

CloudMoyo

4.1
Compare
write
Share an Interview