Upload Button Icon Add office photos

Filter interviews by

Aditya Birla Fashion and Retail Senior Development Engineer Interview Questions and Answers

Updated 28 Nov 2023

Aditya Birla Fashion and Retail Senior Development Engineer Interview Experiences

1 interview found

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

I was interviewed before Nov 2022.

Round 1 - Technical 

(2 Questions)

  • Q1. Advanced concepts of react
  • Q2. Memory leaks , optimisation techniques
Round 2 - Technical 

(2 Questions)

  • Q1. Logical problem, remove duplicates from array
  • Ans. 

    Remove duplicates from an array of strings

    • Iterate through the array and use a set to keep track of unique strings

    • If a string is already in the set, remove it from the array

    • Return the modified array without duplicates

  • Answered by AI
  • Q2. Object related questions, ex:- object loop and modification of object in loop etc

Skills evaluated in this interview

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Oop concepts

Interview Questionnaire 

2 Questions

  • Q1. OOPS Concepts
  • Q2. Threads Concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared on basic java
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Arrays problems
  • Q2. Sliding window problem
  • Ans. 

    Sliding window problem involves finding a subarray of fixed size k with maximum sum.

    • Use a sliding window approach to iterate through the array and calculate the sum of each subarray of size k.

    • Keep track of the maximum sum encountered so far.

    • Move the window by one element at a time and update the sum accordingly.

    • Example: Given array [1, 3, -1, -3, 5, 3, 6, 7] and k = 3, the subarray with maximum sum is [5, 3, 6] with su

  • Answered by AI

Skills evaluated in this interview

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

I applied via AngelList and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Had multiple questions on Array and String overall the difficulty level was medium the interviewer was friendly and patient

Round 2 - Technical 

(1 Question)

  • Q1. Had Discussion on the projects I made it was related to mern stack so he asked me questions regarding that also asked questions on DBMS and OS
Round 3 - HR 

(1 Question)

  • Q1. Simple Scenario based questions

Interview Preparation Tips

Topics to prepare for Fabindia Software Engineer interview:
  • DSA
  • Computer Networking
  • Operating Systems
  • OOPS
  • DBMS
Interview preparation tips for other job seekers - Be confident the recruiters are actually there to select you they will guide and help you they will often give you hints listen to them properly do not be in a rush take your time. talk through your solutions tell them the approach and then start coding do not be in rush

I was interviewed in May 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 Minutes
Round difficulty - Easy

  • Q1. 

    Check Word Presence in String

    Given a string S and a list wordList containing N distinct words, determine if each word in wordList is present in S. Return a boolean array where the value at index 'i' indi...

  • Ans. 

    Given a string and a list of words, determine if each word in the list is present in the string and return a boolean array indicating their presence.

    • Iterate through each word in the word list and check if it is present in the string.

    • Use a boolean array to store the presence of each word in the string.

    • Consider case sensitivity when checking for word presence.

    • Do not use built-in string-matching methods.

    • Return the boolean

  • Answered by AI
Round 2 - Video Call 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Eligibility criteria6.75+ CGPATata interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, OOPs, Algorithms, DP, GreedyTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Try solving Love Babbar 450 Prog questions
Tip 2 : Have a good resume
Tip 3 : Do learn some extra technologies eg. ML/AI

Application resume tips for other job seekers

Tip 1 : Do not lie at all
Tip 2 : Have some projects listed

Final outcome of the interviewSelected

I applied via Campus Placement and was interviewed in Apr 2022. There were 3 interview rounds.

Round 1 - Coding Test 

Ninja Coding Round Basic Coding questions available on youtube or sources online

Round 2 - Technical 

(1 Question)

  • Q1. Panel of 2 people will ask basic technical questions and it depends on what you have mentioned in your resume
Round 3 - HR 

(1 Question)

  • Q1. Basic HR questions about relocation etc.

Interview Preparation Tips

Interview preparation tips for other job seekers - Practise basic coding and math aptitude questions. To crack TCS
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. What is array?? Detail in programming
  • Ans. 

    An array is a collection of similar data types stored in contiguous memory locations.

    • Arrays can be one-dimensional or multi-dimensional

    • Elements in an array can be accessed using their index

    • Arrays can be initialized during declaration or later in the code

    • Arrays can be passed as arguments to functions

    • Example: int arr[5] = {1, 2, 3, 4, 5};

    • Example: char str[10] = "Hello";

  • Answered by AI
  • Q2. About programming and Java script

Interview Preparation Tips

Interview preparation tips for other job seekers - Always prepare for interview and need you have to know about jd

Skills evaluated in this interview

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 

C and c++ and data structure

Round 3 - Technical 

(1 Question)

  • Q1. Question front Data structure, c++ and c
Round 4 - HR 

(1 Question)

  • Q1. Ask all those questions that you want

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on body language.
Learn new things.

I applied via Naukri.com and was interviewed in Oct 2022. 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 - HR 

(4 Questions)

  • Q1. What is java? What is variable?
  • Ans. 

    Java is a popular programming language used for developing various applications. A variable is a named memory location used to store data.

    • Java is an object-oriented language

    • It is platform-independent

    • Variables in Java have a specific data type

    • Variables can be assigned values and their values can be changed

    • Example: int age = 25; String name = "John";

  • Answered by AI
  • Q2. What is inheritance? types of inheritance
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows code reuse and promotes code organization.

    • There are different types of inheritance: single inheritance, multiple inheritance, multilevel inheritance, and hierarchical inheritance.

    • Single inheritance involves a class inheriting from a single base class.

    • Multiple inheritance involves...

  • Answered by AI
  • Q3. 1.Java is a high level language 2.java is a programme is called a set of instructions 3.java run time environment (jre) 4.java is a platform independent. Variable: A variable which is container that some d...
  • Q4. Inheritance; 1.Acquring the properties of parent class to the child class with out changeing the properties of parent class is known as inheritance 2.inheritanc is a is relationship 3.extends keyword is us...
  • Ans. 

    Inheritance is acquiring properties of parent class to child class without changing parent class properties. It is classified into 5 types.

    • Inheritance is a way to reuse code and establish a relationship between classes

    • The 'extends' keyword is used to implement inheritance in Java

    • Examples of inheritance include a 'Car' class inheriting properties from a 'Vehicle' class

    • Single level inheritance involves one parent class a...

  • Answered by AI
Round 3 - Group Discussion 

May I about you ? Which your qualification and which stream

Interview Preparation Tips

Topics to prepare for Tata Group Software Developer interview:
  • Core Java
  • Web Technologies
Interview preparation tips for other job seekers - My strength is quick learner, self motivated, Hard working
My weakness is if any body ask for help me,I never say know.

Skills evaluated in this interview

Aditya Birla Fashion and Retail Interview FAQs

How many rounds are there in Aditya Birla Fashion and Retail Senior Development Engineer interview?
Aditya Birla Fashion and Retail interview process usually has 3 rounds. The most common rounds in the Aditya Birla Fashion and Retail interview process are Technical and Resume Shortlist.
What are the top questions asked in Aditya Birla Fashion and Retail Senior Development Engineer interview?

Some of the top questions asked at the Aditya Birla Fashion and Retail Senior Development Engineer interview -

  1. Logical problem, remove duplicates from ar...read more
  2. Object related questions, ex:- object loop and modification of object in loop e...read more
  3. Memory leaks , optimisation techniq...read more

Tell us how to improve this page.

Aditya Birla Fashion and Retail Senior Development 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
Tata Group Interview Questions
4.2
 • 358 Interviews
V-Mart Interview Questions
4.1
 • 146 Interviews
Trident Group Interview Questions
3.6
 • 118 Interviews
Shoppers Stop Interview Questions
4.1
 • 111 Interviews
Shahi Exports Interview Questions
4.0
 • 102 Interviews
H&M Interview Questions
3.9
 • 87 Interviews
Trent Interview Questions
4.0
 • 76 Interviews
Adidas Interview Questions
3.9
 • 72 Interviews
View all

Aditya Birla Fashion and Retail Senior Development Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

4.0

Salary

5.0

Job security

5.0

Company culture

4.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Store Manager
729 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
658 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Store Manager
440 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Department Manager
368 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Executive
298 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Aditya Birla Fashion and Retail with

Future Retail

4.3
Compare

Trent

4.0
Compare

Reliance Retail

3.9
Compare

Shoppers Stop

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