Upload Button Icon Add office photos
Engaged Employer

i

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

Landmark Group Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Landmark Group Qe Software Engineer Interview Questions and Answers

Updated 10 Jan 2025

Landmark Group Qe Software Engineer Interview Experiences

1 interview found

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

(2 Questions)

  • Q1. Explain Order Return Flow
  • Q2. Explain Item inventory system

Interview questions from similar companies

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

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

Round 1 - Coding Test 

2 DSA questions and some MCQ on Java and Spring

Round 2 - Technical 

(2 Questions)

  • Q1. Longest palindromic substring
  • Ans. 

    A palindromic substring is a string that reads the same forwards and backwards.

    • Use dynamic programming to find the longest palindromic substring.

    • Start by considering each character as the center of a potential palindrome.

    • Expand outwards from each center to check for palindromes of odd and even lengths.

  • Answered by AI
  • Q2. Remove duplicates in place from a 1D array
  • Ans. 

    Remove duplicates from a 1D array of strings in place

    • Iterate through the array and use a HashSet to keep track of unique elements

    • Replace duplicates with null or an empty string to remove them in place

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Project discussion
  • Q2. Search min element in a rotated sorted array with duplicate elements
  • Ans. 

    Search for the minimum element in a rotated sorted array with duplicate elements.

    • Use binary search to find the minimum element in the rotated sorted array.

    • Handle the case where duplicate elements are present by adjusting the search conditions.

    • Consider cases where the array is not rotated or contains only one element.

  • Answered by AI
  • Q3. Ways of declaring singleton class
  • Ans. 

    A singleton class is a class that can only have one instance created throughout the application.

    • Declare a private static instance variable of the class

    • Create a private constructor to prevent external instantiation

    • Provide a public static method to access the instance

  • Answered by AI
Round 4 - Technical 

(2 Questions)

  • Q1. Project discussion
  • Q2. Behavioural questions

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

1.Sum numbers in linked list
2. Maximum sum subarray

Round 2 - Technical 

(2 Questions)

  • Q1. Design and code hashmap.
  • Ans. 

    Implement a hashmap data structure in code.

    • Use an array to store key-value pairs

    • Implement a hash function to map keys to indices in the array

    • Handle collisions using techniques like chaining or open addressing

  • Answered by AI
  • Q2. Questions on kafka
Round 3 - Hld 

(1 Question)

  • Q1. Design linked in
  • Ans. 

    Design a platform similar to LinkedIn for professional networking.

    • Create user profiles with work experience, education, skills, and endorsements.

    • Allow users to connect with others, join groups, and follow companies.

    • Include features like job postings, messaging, news feed, and recommendations.

    • Implement algorithms for personalized content and job suggestions.

    • Ensure data privacy and security measures are in place.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 sum problem was asked to complete

Round 2 - Assignment 

Take home project to design app

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

Good question but very simple to answer

Round 2 - Technical 

(2 Questions)

  • Q1. Cooding question
  • Q2. About project you did in colly

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on skill
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. Array, Tree based questions
Round 2 - Technical 

(1 Question)

  • Q1. Managerial round with a dive into the projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Medium level leet code questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Laravel based questions
Round 2 - HR 

(1 Question)

  • Q1. Basic questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Linked List Intersection Point
  • Ans. 

    Find the intersection point of two linked lists.

    • Use two pointers to traverse the linked lists

    • Calculate the difference in length between the two lists

    • Move the pointer of the longer list ahead by the difference

    • Move both pointers simultaneously until they meet at the intersection point

  • Answered by AI
  • Q2. Basic Spring Boot
  • Q3. Stream and Java 8 Questions

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. System Design Questions, Situation based problems of system design
  • Q2. Data Structure Coding question of HashMap
Round 2 - Technical 

(1 Question)

  • Q1. Again System design, Question from your project and architecture of your project
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Aug 2024.

Round 1 - Technical 

(3 Questions)

  • Q1. Linked list implementation with second largest and second smallest
  • Ans. 

    Implement a linked list with methods to find the second largest and second smallest elements.

    • Create a linked list class with methods to insert elements, find second largest, and find second smallest.

    • Traverse the linked list to find the largest and smallest elements, then find the second largest and second smallest.

    • Handle edge cases such as empty list or lists with less than 2 elements.

    • Consider using a priority queue to...

  • Answered by AI
  • Q2. Max Frequency Character in a string
  • Ans. 

    Find the character with the highest frequency in a given string.

    • Iterate through the string and count the frequency of each character using a hashmap.

    • Track the character with the highest frequency as you iterate.

    • Return the character with the highest frequency at the end.

  • Answered by AI
  • Q3. Longest common subsequence print
  • Ans. 

    Find and print the longest common subsequence in an array of strings

    • Use dynamic programming to find the longest common subsequence

    • Iterate through the array of strings to find common characters

    • Print the longest common subsequence found

  • Answered by AI
Round 2 - Technical 

(3 Questions)

  • Q1. Solid design principles
  • Ans. 

    Solid design principles are fundamental guidelines for designing software that is maintainable, scalable, and efficient.

    • Follow the SOLID principles (Single Responsibility, Open/Closed, Liskov Substitution, Interface Segregation, Dependency Inversion)

    • Use design patterns like Factory, Singleton, Observer, etc. to solve common design problems

    • Keep code modular, reusable, and easy to understand

    • Separate concerns and avoid ti

  • Answered by AI
  • Q2. Snake and Ladder LLD
  • Q3. Executor Service

Interview Preparation Tips

Interview preparation tips for other job seekers - Interviewers kind of works on predefined knowledge. Don't use logic just provide them the basic answers and it will work. Interviewers aren't knowledgeable. You'll feel a gap in their understanding if you try to go little different.

Skills evaluated in this interview

Landmark Group Interview FAQs

How many rounds are there in Landmark Group Qe Software Engineer interview?
Landmark Group interview process usually has 1 rounds. The most common rounds in the Landmark Group interview process are Technical.
What are the top questions asked in Landmark Group Qe Software Engineer interview?

Some of the top questions asked at the Landmark Group Qe Software Engineer interview -

  1. Explain Order Return F...read more
  2. Explain Item inventory sys...read more

Tell us how to improve this page.

Landmark Group Qe Software Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
DMart Interview Questions
3.9
 • 401 Interviews
Walmart Interview Questions
3.8
 • 386 Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
Vishal Mega Mart Interview Questions
3.7
 • 157 Interviews
V-Mart Interview Questions
4.1
 • 146 Interviews
Lowe's Interview Questions
4.2
 • 127 Interviews
Tesco Interview Questions
3.8
 • 121 Interviews
Shoppers Stop Interview Questions
4.1
 • 111 Interviews
View all
Assistant Manager
374 salaries
unlock blur

₹5 L/yr - ₹17 L/yr

Store Manager
294 salaries
unlock blur

₹4.9 L/yr - ₹13.9 L/yr

Senior Executive
218 salaries
unlock blur

₹1.7 L/yr - ₹10 L/yr

Department Manager
145 salaries
unlock blur

₹2.2 L/yr - ₹6 L/yr

Manager
121 salaries
unlock blur

₹7.3 L/yr - ₹29.4 L/yr

Explore more salaries
Compare Landmark Group with

Future Group

4.3
Compare

Reliance Retail

3.9
Compare

Tata Group

4.2
Compare

Aditya Birla Group

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