Premium Employer

i

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

Tesco Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Tesco Software Development Engineer II Interview Questions, Process, and Tips

Updated 26 Nov 2024

Top Tesco Software Development Engineer II Interview Questions and Answers

Tesco Software Development Engineer II Interview Experiences

5 interviews found

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

DSA & Algorithms, Java questions

Round 2 - Technical 

(1 Question)

  • Q1. Design Cab Booking System
  • Ans. 

    Design a cab booking system for users to book rides with drivers.

    • Create a database to store user information, driver information, and ride details.

    • Implement a user interface for users to book rides, view ride history, and track ongoing rides.

    • Develop algorithms for matching users with available drivers based on location and availability.

    • Include features like fare estimation, real-time tracking, and payment options.

    • Ensur...

  • Answered by AI
Round 3 - One-on-one 

(1 Question)

  • Q1. Design Twitter High level
  • Ans. 

    Design a high level architecture for Twitter

    • Use microservices architecture for scalability and maintainability

    • Implement a distributed system for handling high traffic

    • Use a NoSQL database like MongoDB for storing tweets and user data

    • Implement a caching layer using Redis for faster retrieval of tweets

    • Use a message queue like Kafka for handling real-time notifications

  • Answered by AI

Skills evaluated in this interview

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

Questions asked on ReactJS and State Management.

Software Development Engineer II Interview Questions Asked at Other Companies

asked in Zepto
Q1. Given 2 large numeric comma seperated strings. You need to calcul ... read more
asked in Zepto
Q2. How many microservices do I own & at what scale they handle t ... read more
asked in Porter
Q3. 1. Given an array find a subset that sums to a given sum K 2. Giv ... read more
Q4. design a LLD of portfolio management system where you can add any ... read more
asked in S&P Global
Q5. Difference between truncate and delete and when we prefer what op ... read more
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Ask mw create club card system

Round 2 - Technical 

(3 Questions)

  • Q1. Schedule of clock wise rotation
  • Ans. 

    The schedule of clockwise rotation refers to the order in which objects or events occur in a clockwise direction.

    • Clockwise rotation follows the direction of a clock's hands, moving from the top to the right, then down, left, and back to the top.

    • The schedule of clockwise rotation can be used to determine the sequence of tasks or events in a system.

    • For example, in a manufacturing process, the schedule of clockwise rotati...

  • Answered by AI
  • Q2. Ds and algo interview
  • Q3. Sliding window problem
  • Ans. 

    Sliding window problem

    • Sliding window technique is used to efficiently solve problems involving arrays or strings

    • It involves maintaining a window of elements and sliding it through the array or string

    • Common applications include finding maximum or minimum subarrays, substring problems, etc.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed in Jun 2024. There was 1 interview round.

Round 1 - Coding Test 

Binary search tree implementation using java

Tesco interview questions for designations

 Software Development Manager

 (3)

 Software Development Engineer 3

 (3)

 Software Engineer

 (2)

 Senior Development Engineer

 (1)

 Senior Software Engineer 2

 (2)

 Software Developer

 (4)

 Graduate Software Engineer

 (2)

 Associate Software Developer

 (1)

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

I applied via Instahyre and was interviewed in Jan 2023. 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 - Design round 

(1 Question)

  • Q1. Designing of the product , techniques etc
Round 3 - Coding Test 

Scenerio based questions and you need to write a code and give the output

Round 4 - Leadership 

(1 Question)

  • Q1. Basically it would be managerial round but they will judge you wether you fir in the company , attitude etc
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion based in the current pay they will give you hike

Interview questions from similar companies

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

Asked questions related to Node js, React and auth methods. Also asked 1 DSA ques.

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 - Technical 

(1 Question)

  • Q1. How indexing works internally?
  • Ans. 

    Indexing in databases is a way to optimize search queries by creating a data structure that allows for faster retrieval of data.

    • Indexing creates a data structure (like B-trees or hash tables) that maps keys to the locations of corresponding data entries.

    • When a query is made, the database engine uses the index to quickly locate the relevant data entries instead of scanning the entire database.

    • Indexes can be created on o...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Intoduce yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java and Python programming languages

    • Proficient in web development technologies such as HTML, CSS, and JavaScript

    • Strong problem-solving skills and ability to work in a team environment

  • Answered by AI
  • Q2. Your Projects
  • Ans. 

    Developed a web application for tracking personal fitness goals

    • Used React.js for front-end development

    • Implemented RESTful APIs for data retrieval and storage

    • Utilized MongoDB for database management

  • Answered by AI
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
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

Tesco Interview FAQs

How many rounds are there in Tesco Software Development Engineer II interview?
Tesco interview process usually has 2-3 rounds. The most common rounds in the Tesco interview process are Coding Test, Technical and One-on-one Round.
How to prepare for Tesco Software Development Engineer II 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 Tesco. The most common topics and skills that interviewers at Tesco expect are Recruitment, Microsoft Power BI, TDD, Software Development and Agile Coaching.
What are the top questions asked in Tesco Software Development Engineer II interview?

Some of the top questions asked at the Tesco Software Development Engineer II interview -

  1. Schedule of clock wise rotat...read more
  2. Sliding window prob...read more
  3. Design Cab Booking Sys...read more

Tell us how to improve this page.

Tesco Software Development Engineer II Interview Process

based on 7 interviews

1 Interview rounds

  • Coding Test Round
View more
Join Tesco Creating sustainable competitive advantage for Tesco

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
 • 407 Interviews
DMart Interview Questions
3.9
 • 397 Interviews
BigBasket Interview Questions
3.9
 • 352 Interviews
Titan Company Interview Questions
4.3
 • 146 Interviews
V-Mart Interview Questions
4.2
 • 145 Interviews
Landmark Group Interview Questions
4.0
 • 144 Interviews
Lowe's Interview Questions
4.2
 • 130 Interviews
View all
Tesco Software Development Engineer II Salary
based on 205 salaries
₹25.8 L/yr - ₹58 L/yr
66% more than the average Software Development Engineer II Salary in India
View more details

Tesco Software Development Engineer II Reviews and Ratings

based on 20 reviews

3.2/5

Rating in categories

2.7

Skill development

3.6

Work-life balance

3.5

Salary

3.5

Job security

3.1

Company culture

2.5

Promotions

2.8

Work satisfaction

Explore 20 Reviews and Ratings
Software Development Engineer II

Bangalore / Bengaluru

4-9 Yrs

Not Disclosed

Software Development Engineer II

Bangalore / Bengaluru

5-10 Yrs

₹ 31.1-53.91 LPA

Software Development Engineer II

Bangalore / Bengaluru

6-8 Yrs

Not Disclosed

Explore more jobs
Senior Associate
476 salaries
unlock blur

₹3.2 L/yr - ₹9.7 L/yr

Software Development Engineer II
205 salaries
unlock blur

₹25.8 L/yr - ₹58 L/yr

Associate
203 salaries
unlock blur

₹2.2 L/yr - ₹6.3 L/yr

Team Lead
180 salaries
unlock blur

₹5 L/yr - ₹20 L/yr

Software Engineer
157 salaries
unlock blur

₹2.8 L/yr - ₹9.8 L/yr

Explore more salaries
Compare Tesco with

Walmart

3.8
Compare

Carrefour

3.6
Compare

Amazon

4.1
Compare

Reliance Retail

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