Upload Button Icon Add office photos
Engaged Employer

i

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

Decathlon Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Decathlon Backend Developer Interview Questions and Answers for Experienced

Updated 4 Jul 2024

Decathlon Backend Developer Interview Experiences for Experienced

1 interview found

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

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

Question related to java , springboot , hibernate, one dsa question based on two pointer

Interview Preparation Tips

Interview preparation tips for other job seekers - If it's tech specific like - java developer -> be prepare for questions related to java and spring boot

Interview questions from similar companies

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

I applied via Internshala and was interviewed before Aug 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Two questions were asked of easy level

Round 2 - Technical 

(2 Questions)

  • Q1. What is node js
  • Ans. 

    Node.js is a runtime environment that allows you to run JavaScript code outside of a web browser.

    • Node.js is built on Chrome's V8 JavaScript engine.

    • It uses an event-driven, non-blocking I/O model.

    • Node.js is commonly used for building server-side applications.

    • It allows developers to use JavaScript for both client-side and server-side development.

    • Node.js has a large ecosystem of open-source libraries and frameworks, such

  • Answered by AI
  • Q2. Php frameworks working
  • Ans. 

    Php frameworks are tools that help developers build web applications more efficiently by providing pre-built components and structures.

    • Popular Php frameworks include Laravel, Symfony, CodeIgniter, and Yii.

    • Frameworks like Laravel offer features like routing, authentication, and database management out of the box.

    • Choosing the right framework depends on project requirements, developer experience, and community support.

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. How recruiting and selection differ each other.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Average totals for last 3 months
  • Q2. Running totals in a year using dax
  • Ans. 

    Running totals in a year using DAX

    • Use the DAX function CALCULATE to create running totals

    • Use the FILTER function to specify the date range for the running total

    • Example: CALCULATE(SUM(Sales[Amount]), FILTER(ALL('Date'[Date]), 'Date'[Date] <= MAX('Date'[Date])))

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Walmart Data Analyst interview:
  • Powerbi
  • SQL
  • Dax

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Jun 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. Difference between where and having clause?.
  • Ans. 

    WHERE clause filters rows before grouping while HAVING clause filters groups after grouping.

    • WHERE clause is used to filter rows based on a condition before grouping them.

    • HAVING clause is used to filter groups based on a condition after grouping them.

    • WHERE clause is used with SELECT, UPDATE, DELETE statements while HAVING clause is used with GROUP BY clause.

    • WHERE clause is faster than HAVING clause as it filters rows be...

  • Answered by AI
  • Q2. Lead lag questions . Explain windows functions and stored procedure

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare SQL in detail. Prepare one machine learning project

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

120 question it has having a online

Round 2 - Technical 

(1 Question)

  • Q1. Ask about heat EX

Interview Preparation Tips

Interview preparation tips for other job seekers - Always prepare for the interviews before the

I applied via Naukri.com and was interviewed in Oct 2020. There was 1 interview round.

Interview Questionnaire 

3 Questions

  • Q1. Online Aptitude Test
  • Q2. Questions from my resume/previous employment
  • Q3. Scenario based question/Business case study

Interview Preparation Tips

Interview preparation tips for other job seekers - This interview was for Data analyst role at Reliance Retail. First , I had online aptitude test-50 questions 12 minutes. You need to at least solve 20 correctly. Post this I had online technical interview which lasted for about 40minutes. Initially the interviewer asked me about few accomplishments from my previous employment which had impacted business. I took him through few major projects that I worked and how these impacted business. I made sure to keep everything aligned to data analyst role. I spoke about what Data visualization tools (Domo/tableau) and languages(SQL) I had used previously to analyze data. He had follow up questions and I again made sure to explain clearly by highlighting my role. Next , there was one scenario based question asked.
Q: There are a couple of reliance stores that are bleeding(doing really bad) in one region. You have all the necessary data related to these stores. What would be those factors that you will consider first ? What will you do to ensure these stores do well.
Since I had retail background it was easier for me to understand the scenario based question. The interviewer wanted to understand how I would approach the problem.
Last, I had few questions to the interviewer based on the role.
On the same day I received call from HR saying that I have cleared the interview and offered the role.

Intern Interview Questions & Answers

Lowe's user image Anonymous

posted on 20 Oct 2024

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

I appeared for an interview in Sep 2024.

Round 1 - Aptitude Test 

BASIC aptitude involving quants, verbal and logical reasoning.

Round 2 - Interview 

(2 Questions)

  • Q1. Basic questions from CV
  • Q2. Why Lowe's as an organization?
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Python questions dataframe creata
  • Q2. SQL questions joins , windows function,cte
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jul 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 Coding questions none from leetcode or any standard question, all competitive programming questions

Round 2 - One-on-one 

(1 Question)

  • Q1. Given n-nary tree, find the number of pairs of nodes such that neither of the nodes in the formed pair are each others ancestors.
  • Ans. 

    Count the number of pairs of nodes in an n-nary tree where neither node is the ancestor of the other.

    • Traverse the tree and for each node, find the number of descendants in its subtree.

    • For each node, the total pairs excluding its descendants will be the product of the number of descendants in its subtree.

    • Sum up the total pairs for all nodes in the tree to get the final count.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Titan Company Intern interview:
  • Problem Solving
Interview preparation tips for other job seekers - Heavy on competitive programming,, the question was atleast 1800-1900 cf rated

Decathlon Interview FAQs

How many rounds are there in Decathlon Backend Developer interview for experienced candidates?
Decathlon interview process for experienced candidates usually has 1 rounds. The most common rounds in the Decathlon interview process for experienced candidates are Coding Test.

Tell us how to improve this page.

Decathlon Backend Developer Interview Process for Experienced

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Reliance Retail Interview Questions
3.9
 • 1.6k Interviews
Walmart Interview Questions
3.7
 • 389 Interviews
Titan Company Interview Questions
4.3
 • 157 Interviews
Landmark Group Interview Questions
4.0
 • 151 Interviews
V-Mart Interview Questions
4.1
 • 151 Interviews
Croma Interview Questions
4.0
 • 135 Interviews
Reliance Digital Interview Questions
4.1
 • 131 Interviews
Lowe's Interview Questions
4.1
 • 130 Interviews
Tesco Interview Questions
3.8
 • 125 Interviews
Shoppers Stop Interview Questions
4.1
 • 115 Interviews
View all

Fast track your campus placements

View all
Sports Leader
417 salaries
unlock blur

₹1 L/yr - ₹8 L/yr

Department Manager
292 salaries
unlock blur

₹2.7 L/yr - ₹7.2 L/yr

Sales Manager
141 salaries
unlock blur

₹2.2 L/yr - ₹5.1 L/yr

Operations Manager
85 salaries
unlock blur

₹4.8 L/yr - ₹10.1 L/yr

Sports Lead
74 salaries
unlock blur

₹1.2 L/yr - ₹5 L/yr

Explore more salaries
Compare Decathlon with

Reliance Retail

3.9
Compare

Future Group

4.3
Compare

Reliance Digital

4.1
Compare

Titan Company

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