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 Senior Software Developer Interview Questions and Answers

Updated 5 Jul 2024

Landmark Group Senior Software Developer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Mettl test , scored 90% still didn't get shortlist for tech round

Round 2 - Technical 

(2 Questions)

  • Q1. Web services spring react
  • Q2. Java code string

Interview Preparation Tips

Interview preparation tips for other job seekers - Poor recruitment process
Recruiter ask for forced feedback
No role clarity from recruiter
Looks like warehouse than tech company
Interviewer was confused

Interview questions from similar companies

I applied via Instahyre and was interviewed in Nov 2021. There were 4 interview rounds.

Round 1 - Problem Solving 

(1 Question)

  • Q1. Basic Javascript Skills
Round 2 - Coding Test 
Round 3 - Design Test 

(1 Question)

  • Q1. Framework test, testing ability to develop mutli layer application
Round 4 - HR 

(1 Question)

  • Q1. General Hiring manager questions about past expeiences

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong in you core and technical skills
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 - 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

Round 1 - Technical 

(1 Question)

  • Q1. Vanilla JS questions.
Round 2 - Technical 

(1 Question)

  • Q1. Basic React questions
Round 3 - Behavioral 

(1 Question)

  • Q1. Past experiences and projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep basics good.
Promises, Callbacks, Async Await along with code is asked.
SImple React app to create from scratch.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

There was a aptitude test with coding problems

Round 2 - Technical 

(1 Question)

  • Q1. Basic Puzzles were asked
Round 1 - Coding Test 

Array and Linkedlist related questions

Round 2 - Technical 

(2 Questions)

  • Q1. Oops concepts, DBMS, questions related to personal projects
  • Q2. The ones i remember- Dbms: What is normalization? Different forms of normalization. Some joins related questions. Oops: access modifiers, abstract classes
  • Ans. 

    Questions on DBMS and OOPs concepts

    • Normalization is the process of organizing data in a database to reduce redundancy and dependency.

    • Different forms of normalization include 1NF, 2NF, 3NF, BCNF, and 4NF.

    • Join is used to combine rows from two or more tables based on a related column between them.

    • Access modifiers in OOPs are public, private, protected, and default.

    • Abstract classes are classes that cannot be instantiated a

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics of Oops should be clear

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2022. There were 2 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 - Technical 

(2 Questions)

  • Q1. DSA questions and basics on the platform of work
  • Q2. Self explanatory and Experience related questions

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

Landmark Group Interview FAQs

How many rounds are there in Landmark Group Senior Software Developer interview?
Landmark Group interview process usually has 2 rounds. The most common rounds in the Landmark Group interview process are Coding Test and Technical.
What are the top questions asked in Landmark Group Senior Software Developer interview?

Some of the top questions asked at the Landmark Group Senior Software Developer interview -

  1. Web services spring re...read more
  2. Java code str...read more

Tell us how to improve this page.

Landmark Group Senior Software Developer Interview Process

based on 1 interview

Interview experience

2
  
Poor
View more

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Walmart Interview Questions
3.8
 • 408 Interviews
DMart Interview Questions
3.9
 • 398 Interviews
Tata Group Interview Questions
4.2
 • 358 Interviews
Vishal Mega Mart Interview Questions
3.8
 • 157 Interviews
V-Mart Interview Questions
4.1
 • 145 Interviews
Lowe's Interview Questions
4.2
 • 130 Interviews
Tesco Interview Questions
3.8
 • 121 Interviews
Target Interview Questions
4.2
 • 117 Interviews
View all
Landmark Group Senior Software Developer Salary
based on 6 salaries
₹10.9 L/yr - ₹26 L/yr
7% more than the average Senior Software Developer Salary in India
View more details
Assistant Manager
393 salaries
unlock blur

₹5.1 L/yr - ₹20 L/yr

Store Manager
293 salaries
unlock blur

₹3.9 L/yr - ₹14 L/yr

Senior Executive
222 salaries
unlock blur

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