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

Updated 9 Jan 2025

Landmark Group Java Developer Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

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

Round 1 - Coding Test 

Online java assessment test - java, java 8, spring boot, microservices

Interview questions from similar companies

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

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Kafka , heap stack
  • Q2. Mvc endpoint creation
Round 2 - Technical 

(2 Questions)

  • Q1. Dsa on string please
  • Q2. Heap

Interview Preparation Tips

Interview preparation tips for other job seekers - 1 . technical discussion round -> kafka , endpoint creation mvc architecture
2. technical discussion -> 1 dsa question, related to project, heap/stack memory, design pattern

Java Developer Interview Questions & Answers

Walmart user image sahithi krishna

posted on 19 Apr 2024

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected

I applied via Job Portal

Round 1 - Coding Test 

Coding questions on String and HashMap

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
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Oct 2023. There were 2 interview rounds.

Round 1 - Coding Test 

2 coding questions from dsa. one quest was from trees ds

Round 2 - HR 

(2 Questions)

  • Q1. Why did you choose target
  • Q2. Minus points in you that you can share with us
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

I applied via Indeed and was interviewed in Nov 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 - Coding Test 
Round 3 - Coding Test 

Interview Preparation Tips

Interview preparation tips for other job seekers - describe your previous project better
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Kafka , heap stack
  • Q2. Mvc endpoint creation
Round 2 - Technical 

(2 Questions)

  • Q1. Dsa on string please
  • Q2. Heap

Interview Preparation Tips

Interview preparation tips for other job seekers - 1 . technical discussion round -> kafka , endpoint creation mvc architecture
2. technical discussion -> 1 dsa question, related to project, heap/stack memory, design pattern

I was interviewed in Aug 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Medium

This was a proctured online coding round where we had 2 questions to solve under 90 minutes . The questions were a bit lengthy but the implementation part was quite easy .

  • Q1. 

    Encode the Message Problem Statement

    Given a text message, your task is to return the Run-length Encoding of the given message.

    Run-length encoding is a fast and simple method of encoding strings, repres...

  • Q2. 

    Make All Elements of the Array Distinct

    Given an array/list ARR of integers with size 'N', your task is to determine the minimum number of increments needed to make all elements of the array distinct. You...

Round 2 - Video Call 

(3 Questions)

Round duration - 50 Minutes
Round difficulty - Easy

This Round was DS/Algo + Core round and it started with formal introduction, followed by 3 problems. We first dicussed the
approach the time complexity and proper code covering all cases for the 2 coding problems . The last question was related to OS and was a bit theoretical .

  • Q1. 

    Distinct Characters Problem Statement

    Given a string STR, return all possible non-empty subsequences with distinct characters. The order of the strings returned is not important.

    Example:

    Input:
    STR = ...
  • Q2. 

    Calculate Score of Balanced Parentheses

    In this intellectual game, Ninja is provided with a string of balanced parentheses called STR. The aim is to calculate the score based on specific game rules. If Nin...

  • Q3. Can you explain demand paging?
Round 3 - Video Call 

(3 Questions)

Round duration - 40 Minutes
Round difficulty - Medium

I was given 2 preety good questions of DSA in this round . One was related to Binary Trees and the other was a good DP problem in which I struggled a bit but with some hints I was able to solve this problem too . The last question was related to OOPS and was preety easy .

  • Q1. 

    Binary Tree Construction from Traversals Problem

    Given the POSTORDER and PREORDER traversals of a binary tree, where the tree consists of N nodes with each node representing a distinct positive integer fr...

  • Q2. 

    Minimum Cost to Buy Oranges Problem Statement

    You are given a bag of capacity 'W' kg and a list 'cost' of costs for packets of oranges with different weights. Each element at the i-th position in the list...

  • Q3. Can you explain the concepts of static and dynamic polymorphism in Object-Oriented Programming?
Round 4 - HR 

(2 Questions)

Round duration - 30 Minutes
Round difficulty - Easy

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

  • Q1. Why should we hire you?
  • Q2. What do you know about the company?

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAWalmart interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Why string arr immutable
  • Ans. 

    String arrays are immutable because they cannot be changed once created.

    • Strings in an array cannot be modified individually

    • Any changes to a string array result in a new array being created

    • Immutable arrays ensure data integrity and prevent unintended side effects

  • Answered by AI
  • Q2. How we can create a custom immutable class
  • Ans. 

    To create a custom immutable class, use final keyword for class, private final fields, and no setter methods.

    • Use the final keyword for the class to prevent inheritance

    • Declare all fields as private and final to prevent modification

    • Do not provide setter methods for the fields to maintain immutability

    • Provide getter methods to access the fields

  • Answered by AI

Landmark Group Interview FAQs

How many rounds are there in Landmark Group Java Developer interview?
Landmark Group interview process usually has 1 rounds. The most common rounds in the Landmark Group interview process are Coding Test.
How to prepare for Landmark Group Java Developer 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 Landmark Group. The most common topics and skills that interviewers at Landmark Group expect are Java, Spring, SQL, Spring Boot and Agile.

Tell us how to improve this page.

Landmark Group Java Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
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
 • 399 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
 • 131 Interviews
Tesco Interview Questions
3.8
 • 121 Interviews
Target Interview Questions
4.2
 • 119 Interviews
View all
Landmark Group Java Developer Salary
based on 7 salaries
₹4.5 L/yr - ₹13.3 L/yr
37% more than the average Java Developer Salary in India
View more details
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