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

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

Interview Questionnaire 

1 Question

  • Q1. Your counter offer.

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.People in the team were good I had a good interview experience. Very basic level questions.
2.Microservices must be there in your resume .Even if you are top notch in coding you will not be selected if you have not worked on micro services.
3.Bad experience when it comes to the compensation they pay very very less not even try to match the compensation just simply reject if you have a nice counter offer.
4.Advice : When the candidate is good be flexible in your budget .A good candidate will definitely go ahead and do great work for the team.Or at least try to match the counter offer.
5.Process is really really slow and you might end up losing a potential candidate .
6.Lowes Hires a person who has less salary expectations rather than the person who does the best they are OK with mediocrity.
7.Please don't think this is a product based and join .Lowes has people with service based organization mindset.

I was interviewed in Mar 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 120 minutes
Round difficulty - Medium

This was the online round held at Hackerearth. All students who met the eligibility criteria were shared link for the online test on hackerearth.

  • Q1. 

    Remove Consecutive Duplicates Problem Statement

    Given a string str of size N, your task is to recursively remove consecutive duplicates from this string.

    Input:

    T (number of test cases)
    N (length of the ...
  • Ans. Recursion

    The idea is here to use recursion as mentioned in the problem statement. For each character either it will be included in the answer or not, how to decide this at each point?

    We will compare the last and 2nd last character of the string each time if they are equal we will remove the last and call recursion for the remaining string, if they both are not equal then we will append the last character into our final...

  • Answered Anonymously
  • Q2. 

    Deepest Leaves Sum Problem Statement

    Given a binary tree of integers, your task is to calculate the sum of all the leaf nodes present at the deepest level of this binary tree. If there are no such nodes, ...

  • Ans. Find Deepest Level

    The idea is pretty simple. First, we will find the deepest level of the given binary tree, say ‘maxDepth’. We can do this with a single traversal of the binary tree. 

    After finding the deepest level of the binary tree, we will again traverse the given tree. Also, we will maintain a ‘sum’ and ‘currLevel’ variable for each node in the tree. Whenever the ‘currLevel’ which represents the level of the ...

  • Answered Anonymously
Round 2 - Coding Test 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Medium

This Round was DS and Algo round and it started with formal introduction, followed by 2 problems.There were 2 interviewers. We first dicussed the approach the time complexity and proper code covering all cases.

  • Q1. 

    Palindrome Permutation - Problem Statement

    Determine if a permutation of a given string S can form a palindrome.

    Example:

    Input:
    string S = "aab"
    Output:
    "True"
    Explanation:

    The permutation "aba" o...

  • Ans. Frequency Table
    1. The idea behind this approach is that in a palindrome at max 1 character can have an odd frequency.
    2. So in this approach, we calculate the frequency of each character of the given string and check if at most 1 character has an odd frequency. If more than one character will be having the odd frequency then the given string can not be converted into a palindrome.
    3. Therefore, we create a frequency table, (say ‘...
  • Answered Anonymously
  • Q2. 

    Word Presence in Sentence

    Determine if a given word 'W' is present in the sentence 'S' as a complete word. The word should not merely be a substring of another word.

    Input:

    The first line contains an in...
  • Ans. Brute Force

    The basic idea of this approach is to check each word of the given sentence ‘S’ if it matches with the given word ‘W’.


     

    Consider the following steps:

    1. Start iterating through each character of sentence string ‘S’ using a variable ‘i’ such that 0 <= ‘i’ < |S|
      • Create a string “temp” which stores the current word.
      • Add all the subsequent characters of the sentence till space is detected or if all end of th...

  • Answered Anonymously
Round 3 - HR 

Round duration - 30 mintues
Round difficulty - Easy

This is a cultural fitment testing round .HR was very frank and asked standard questions. Then we discussed about my role.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Netaji Subhas University Of Technology. Eligibility criteriaAbove 8 CGPA, Any BranchWalmart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Designs, Operating Systems, DBMS, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Have atleast one internship/project in your domain...Will help you to gain exposure
Tip 2 : Do good practice of advanced data structures like Tries,graphs etc.
Tip 3 : Be good in your communication

Application resume tips for other job seekers

Tip 1 : Keep your resume up to date and mention three or four good level projects which will give a good impression to the interviewer
Tip 2 : You should be well aware and knowledgeable about all the things that are mentioned in your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Referral and was interviewed in Aug 2021. There were 3 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 - One-on-one 

(1 Question)

  • Q1. Basic Java spring boot questions and one easy LC DSA question
Round 3 - Behavioral 

(1 Question)

  • Q1. Behavioral questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice easy level DSA and resume projects
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. AWS questions, Behavioral questions
Round 2 - Group Discussion 

Create some kind of system design (some kind of app)

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

2 Coding pseudocode questions and mcqs on basic CS topics

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