Upload Button Icon Add office photos

Filter interviews by

Carrefour SDE (Software Development Engineer) Interview Questions and Answers

Updated 10 Feb 2022

Carrefour SDE (Software Development Engineer) Interview Experiences

1 interview found

Round 1 - Coding Test 
Round 2 - One-on-one 

(1 Question)

  • Q1. They asked me about my projects and some ezz dsa questions
Round 3 - One-on-one 

(1 Question)

  • Q1. This round was totally based on my projects and some dsa

Interview Preparation Tips

Interview preparation tips for other job seekers - Get your basics cleared ex - if you work on js you should know that in depth

Interview questions from similar companies

Round 1 - Technical 

(5 Questions)

  • Q1. Prototypical Inheritance
  • Q2. Why we can't use arrow function in constructor
  • Ans. 

    Arrow functions do not have their own 'this' value, which is required in constructors.

    • Arrow functions do not have a 'this' binding, so 'this' will refer to the parent scope.

    • Constructors require 'this' to refer to the newly created object.

    • Using arrow functions in constructors can lead to unexpected behavior and errors.

  • Answered by AI
  • Q3. Explain details about CORS
  • Ans. 

    CORS stands for Cross-Origin Resource Sharing and is a security feature implemented in web browsers.

    • CORS allows web servers to specify which origins are allowed to access their resources.

    • It is used to prevent unauthorized access to resources on a different domain.

    • CORS is implemented using HTTP headers such as Access-Control-Allow-Origin and Access-Control-Allow-Methods.

    • It is important to properly configure CORS to avoi...

  • Answered by AI
  • Q4. Explain with an example about Lexical Scoping
  • Ans. 

    Lexical scoping is a way of defining variable scope based on where they are declared in the code.

    • Variables declared inside a function have local scope and are not accessible outside the function.

    • Variables declared outside a function have global scope and can be accessed from anywhere in the code.

    • Nested functions can access variables declared in their parent function.

    • Example: function outer() { let x = 10; function inne...

  • Answered by AI
  • Q5. Advantages of arrow function
  • Ans. 

    Arrow functions have concise syntax, implicit return, and lexical this binding.

    • Shorter syntax than traditional function expressions

    • Implicit return of a single expression

    • Lexical this binding, avoiding the need for .bind() or self = this

    • Example: const double = (num) => num * 2;

    • Example: const names = ['Alice', 'Bob', 'Charlie']; const nameLengths = names.map(name => name.length);

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Walmart SDE (Software Development Engineer) interview:
  • OOPS
  • Javascript
  • Data Structures
Interview preparation tips for other job seekers - Learn the basic concepts of javascripts even if you explain you have to write some example code for the explanation.

Skills evaluated in this interview

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

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Basic questions were aksed and feedback about their product

Round 2 - Technical 

(2 Questions)

  • Q1. Coding questions were asked
  • Q2. Project related questions were asked
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Scenerio based questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Problem solving
  • Q2. Basic js question
Round 2 - Coding Test 

System design - ecommers website and project related

Round 3 - Coding Test 

Js + react js questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain about spring boot
  • Ans. 

    Spring Boot is a framework that simplifies the development of Java applications by providing pre-configured settings and tools.

    • Spring Boot eliminates the need for manual configuration by providing defaults for most settings.

    • It allows for standalone Spring applications that can be started using a simple 'java -jar' command.

    • Spring Boot includes embedded servers like Tomcat, Jetty, or Undertow for deploying applications.

    • I...

  • Answered by AI

Skills evaluated in this interview

I applied via Recruitment Consulltant and was interviewed in Apr 2022. There were 5 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 

(1 Question)

  • Q1. C# OOPS related questions, Design Patterns and simple coding questions such as Fizz Buzz and Palindrome for which I had to share my screen code and run the solution and explain the Time & Space complexity ...
Round 3 - Technical 

(1 Question)

  • Q1. Very Easy Technical round with a panel of 3 from US in which easy coding questions on List etc were asked to program and run on an online compiler
Round 4 - Technical 

(1 Question)

  • Q1. Director Round with an Indian guy sitting in US - How to do central logging in a multi server setup? I answered by saying we can use AWS Cloudwatch to achieve this for monitoring analysis & logging or we c...
Round 5 - HR 

(1 Question)

  • Q1. Had two HR rounds - They said that they cannot give the salary which I had initially shared with them as my expected salary. If that was the case then why waste someone's time, they could have told me this...

Interview Preparation Tips

Interview preparation tips for other job seekers - Better clear up the expected salary before itself, so that you don't end up getting your time wasted.

I applied via Referral and was interviewed in May 2022. There were 4 interview rounds.

Round 1 - One-on-one 

(1 Question)

  • Q1. Asked data structures and algorithms in 1st round
Round 2 - Technical 

(1 Question)

  • Q1. Spring boot core Java microservices algo lld hld
Round 3 - Hm 

(1 Question)

  • Q1. Hld for ticket management ..like ticket management in Zomato
Round 4 - HR 

(1 Question)

  • Q1. Sal negotiation + basic communication skills

Interview Preparation Tips

Interview preparation tips for other job seekers - DSA must can't think apart from it so be prepared for DSA everything will be pretty smooth
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Walk-in and was interviewed in Oct 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. System Design Questions, Situation based problems of system design
  • Q2. Data Structure Coding question of HashMap
Round 2 - Technical 

(1 Question)

  • Q1. Again System design, Question from your project and architecture of your project

Carrefour Interview FAQs

How many rounds are there in Carrefour SDE (Software Development Engineer) interview?
Carrefour interview process usually has 3 rounds. The most common rounds in the Carrefour interview process are One-on-one Round and Coding Test.

Tell us how to improve this page.

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Walmart Interview Questions
3.8
 • 405 Interviews
DMart Interview Questions
3.9
 • 394 Interviews
Lowe's Interview Questions
4.2
 • 129 Interviews
Tesco Interview Questions
3.9
 • 121 Interviews
Reliance Trends Interview Questions
4.3
 • 101 Interviews
Future Group Interview Questions
4.3
 • 76 Interviews
View all
Product Manager
16 salaries
unlock blur

₹22 L/yr - ₹51 L/yr

Software Development Engineer II
9 salaries
unlock blur

₹14.5 L/yr - ₹25 L/yr

Merchandiser
8 salaries
unlock blur

₹4.8 L/yr - ₹8.5 L/yr

Cashier
8 salaries
unlock blur

₹0.6 L/yr - ₹4 L/yr

Senior Merchandiser
8 salaries
unlock blur

₹7 L/yr - ₹11 L/yr

Explore more salaries
Compare Carrefour with

Walmart

3.8
Compare

Tesco

3.8
Compare

Amazon

4.1
Compare

Reliance Retail

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