Upload Button Icon Add office photos

Filter interviews by

LogMeIn Interview Questions and Answers

Updated 20 Oct 2021

LogMeIn Interview Experiences

Popular Designations

2 interviews found

I applied via Company Website and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

7 Questions

  • Q1. Java collections framework
  • Q2. String manipulation
  • Q3. File handling
  • Q4. Getting response from API
  • Q5. Infrastructure related questions like ci/cd pipeline, docker etc
  • Q6. Cloud questions
  • Q7. Manual question related to release of product, tineliness, qa process etc

Interview Preparation Tips

Interview preparation tips for other job seekers - There were 3technical+1techno-managerial+1hr rounds. Each technical rounds had 2 coding questions which you need to execute. Requires good coding skills. Try to solve and write the correct logic. If you are unable to execute program, just tell them the exact logic and your approach. SDET in this company means you need to be fully skilled with coding, manual, build process and release process. All the best.

Senior Software Engineer Testing Interview Questions asked at other Companies

Q1. Sorting Characters By FrequencyYou have been given a string ‘S’. You need to sort ‘S’ in increasing order based on the frequency of characters. If two characters have the same frequency then the character with a lesser ASCII value must occu... read more
View answer (1)

I was interviewed in Dec 2020.

Interview Questionnaire 

1 Question

  • Q1. Question based on binary search, two pointer, trees.

Interview Preparation Tips

Interview preparation tips for other job seekers - Total three rounds of coding interview,1 managerial + design, 1Hr round.

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 (170)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - One-on-one 

(3 Questions)

  • Q1. What are Agile Values? Scrum Values? Scrum Ceremonies? Story Points?
  • Ans. 

    Agile values include individuals and interactions over processes and tools, while Scrum values include commitment, courage, focus, openness, and respect.

    • Agile values prioritize individuals and interactions over processes and tools

    • Scrum values include commitment, courage, focus, openness, and respect

    • Scrum ceremonies include Sprint Planning, Daily Standup, Sprint Review, and Sprint Retrospective

    • Story points are a unit of...

  • Answered by AI
  • Q2. As project manager what docs do you prepare? How do you contribute as a PM?
  • Ans. 

    As a project manager, I prepare various documents such as project plans, schedules, budgets, risk assessments, and progress reports. I contribute by leading the team, managing resources, and ensuring project success.

    • Prepare project plans outlining scope, objectives, deliverables, and timelines

    • Create schedules to allocate tasks and track progress

    • Develop budgets to manage project costs effectively

    • Conduct risk assessments...

  • Answered by AI
  • Q3. Capacity? Velocity? etc Agile/Scrum-based questions (bookish) this round was taken by Rajni
Round 2 - One-on-one 

(6 Questions)

  • Q1. Megha took my final round and asked me questions about Agile/Scrum, Stroy Points (estimation).
  • Q2. Ques on explaining Sprint Planning, Retro, Review, using Doc/Excel (screen sharing)
  • Q3. Ques on Conflict and Resource Management, some scenario-based question.
  • Q4. How will you make a low-performing resource a high-performing one?
  • Ans. 

    Provide clear expectations, offer support and training, provide feedback and recognition, set goals and milestones.

    • Clearly communicate expectations and goals to the resource.

    • Offer support and training to help the resource improve their skills and knowledge.

    • Provide regular feedback and recognition for progress made.

    • Set specific goals and milestones to track improvement.

    • Create a development plan with the resource to addr...

  • Answered by AI
  • Q5. Megha did not hire me because she felt I had adequate knowledge and practical experience. (insecurities) Anyway, good luck with your interview.
  • Q6. What is Scrum of Scrums? What is PI planning?
  • Ans. 

    Scrum of Scrums is a scaled agile framework where multiple Scrum teams coordinate their work. PI planning is a key event in SAFe where teams plan their work for the upcoming Program Increment.

    • Scrum of Scrums involves representatives from each Scrum team meeting regularly to discuss dependencies and progress.

    • PI planning is a two-day event where teams align on their objectives, dependencies, and priorities for the upcomi...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Magic Edtech Project Manager interview:
  • Agile Methodology
  • Waterfall
  • Scrum
  • Project Management
Interview preparation tips for other job seekers - Be well prepared with your bookish as well as practical answers.

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Walk-in and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - Assignment 

Basic self quotation

Round 2 - Case Study 

Song analysis and depiction

Round 3 - HR 

(1 Question)

  • Q1. Tell about your self
Round 4 - One-on-one 

(4 Questions)

  • Q1. Tell about yourself
  • Q2. What is your collage story
  • Q3. Family backgrond
  • Q4. Tell your love story
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I was interviewed in Nov 2024.

Round 1 - Technical 

(4 Questions)

  • Q1. What is the code for implementing middleware in .NET?
  • Ans. 

    Middleware in .NET can be implemented using the 'UseMiddleware' method in the Startup class.

    • Use the 'UseMiddleware' method in the Configure method of the Startup class to add middleware in the request pipeline.

    • Create a custom middleware class that implements the 'IMiddleware' interface.

    • Register the custom middleware class in the ConfigureServices method of the Startup class.

  • Answered by AI
  • Q2. What are the common exceptions encountered in middleware?
  • Ans. 

    Common exceptions encountered in middleware include timeout errors, connection errors, and invalid input errors.

    • Timeout errors occur when a request takes too long to process.

    • Connection errors happen when there is a problem connecting to a database or external service.

    • Invalid input errors occur when the data provided does not meet the expected format or criteria.

  • Answered by AI
  • Q3. What is change detection in Angular?
  • Ans. 

    Change detection in Angular is the process of detecting changes in the application state and updating the view accordingly.

    • Angular uses change detection to keep the UI in sync with the application state.

    • It compares the current state of the application with the previous state to determine what has changed.

    • If a change is detected, Angular updates the view to reflect the new state.

    • Change detection can be triggered by user...

  • Answered by AI
  • Q4. What is the use of the Subject in Angular?
  • Ans. 

    Subject in Angular is used for multicasting observables to multiple subscribers.

    • Subject is a type of Observable that allows values to be multicasted to multiple Observers.

    • It acts as both an Observable and an Observer.

    • Subjects are hot Observables, meaning they start emitting values immediately upon creation.

    • Example: const subject = new Subject(); subject.next(1); subject.subscribe(value => console.log(value)); // Out

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on the fundamental principles of .NET and Angular.

Skills evaluated in this interview

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

Hackerrank react test on
1. MCQ- HTML,CSS, Javscript, Web fundamentals
2. Coding - React Context API code

Round 2 - Technical 

(3 Questions)

  • Q1. React and Javascript basics
  • Q2. React Design Pattern and Security handling
  • Q3. HTML and CSS Fundamentals
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is Docker,image vs containers,mutistage,terraformstatebackend
  • Q2. What is diff cloud formation vs terraform, release management like blue green etc.

Interview Preparation Tips

Topics to prepare for Equifax Site Reliability Engineer interview:
  • Docker
  • Terraform
  • Kubernetes
Interview preparation tips for other job seekers - do the concept well why what u use this specific tools and all that
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Sep 2024. There were 2 interview rounds.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Introduction and work experience
  • Q2. Basic question on software testing
Round 2 - One-on-one 

(2 Questions)

  • Q1. Introduction and work experience
  • Q2. All other questions apart from the role they are selecting for.

Interview Preparation Tips

Interview preparation tips for other job seekers - The company needs to get their requirement right themselves first. I got through in the communication round and then they kept another communication round and rejected saying that they need to cater to Australian clients and need better communication. Were they not able to judge the communication in round 1...? In round two as well same set of questions were repeated. They are sitting there just to waste time.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Coding Test 

Hash Map Questions
Java oops Questions

Round 2 - Technical 

(1 Question)

  • Q1. DSA Questions min stack Search in rotated array java 8 feature
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via campus placement at Vellore Institute of Technology (VIT) and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Explain oops concepts
  • Ans. 

    OOP is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOP focuses on creating objects that interact with each other to solve problems.

    • Encapsulation: Objects can hide their internal state and require interactions through defined interfaces.

    • Inheritance: Objects can inherit attributes and methods from other objects.

    • Polymorphism: Objec...

  • Answered by AI
  • Q2. Write a code on simple one.
  • Ans. 

    Code a simple one

    • Use a basic programming language like Python or JavaScript

    • Create an array of strings

    • Print the array elements

  • Answered by AI
  • Q3. Explain about your projects
  • Ans. 

    I have worked on various projects including a web application for tracking inventory and a mobile app for managing tasks.

    • Developed a web application using React.js for tracking inventory levels and generating reports

    • Created a mobile app using Flutter for managing tasks and setting reminders

    • Implemented RESTful APIs for communication between frontend and backend systems

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about yourself
  • Ans. 

    I am a software developer with 5 years of experience in Java, Python, and SQL.

    • 5 years of experience in Java, Python, and SQL

    • Strong problem-solving skills

    • Experience working in Agile development environment

    • Passionate about learning new technologies

  • Answered by AI
  • Q2. Why msg global solutions
  • Ans. 

    I want to work at msg global solutions because of their reputation for innovative solutions and collaborative work environment.

    • I am impressed by msg global solutions' track record of delivering cutting-edge software solutions to clients.

    • I am excited about the opportunity to work with a team of talented developers and collaborate on challenging projects.

    • I value the emphasis msg global solutions places on professional de...

  • Answered by AI

LogMeIn Interview FAQs

What are the top questions asked in LogMeIn interview?

Some of the top questions asked at the LogMeIn interview -

  1. Manual question related to release of product, tineliness, qa process ...read more
  2. Infrastructure related questions like ci/cd pipeline, docker ...read more
  3. Question based on binary search, two pointer, tree...read more

Tell us how to improve this page.

LogMeIn Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Salesforce Interview Questions
4.1
 • 270 Interviews
ServiceNow Interview Questions
4.2
 • 118 Interviews
Atlassian Interview Questions
3.6
 • 92 Interviews
Citrix Interview Questions
3.6
 • 53 Interviews
Twilio Interview Questions
4.0
 • 23 Interviews
TeamViewer Interview Questions
3.9
 • 4 Interviews
DocuSign Interview Questions
3.1
 • 3 Interviews
Zendesk Interview Questions
4.3
 • 2 Interviews
View all

LogMeIn Reviews and Ratings

based on 28 reviews

4.3/5

Rating in categories

3.9

Skill development

4.2

Work-life balance

4.3

Salary

3.4

Job security

4.5

Company culture

3.6

Promotions

4.0

Work satisfaction

Explore 28 Reviews and Ratings
Senior Software Engineer
41 salaries
unlock blur

₹22 L/yr - ₹39 L/yr

Software Engineer
21 salaries
unlock blur

₹16 L/yr - ₹35.5 L/yr

Devops Engineer
12 salaries
unlock blur

₹5.8 L/yr - ₹18.5 L/yr

Staff Software Engineer
9 salaries
unlock blur

₹34 L/yr - ₹49 L/yr

Account Director
7 salaries
unlock blur

₹20 L/yr - ₹32.7 L/yr

Explore more salaries
Compare LogMeIn with

TeamViewer

3.9
Compare

Zoom Video Communications

3.9
Compare

Citrix

3.6
Compare

Salesforce

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