Upload Button Icon Add office photos
Engaged Employer

i

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

Licious Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Licious SDE Interview Questions and Answers

Updated 28 Aug 2024

Licious SDE Interview Experiences

1 interview found

SDE Interview Questions & Answers

user image Anonymous

posted on 28 Aug 2024

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Technical 

(2 Questions)

  • Q1. Question on DSA were asked related to arrays and trees
  • Q2. Questions on basics of OOPs were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not say out loud that you dont eat Nonveg and you are a Jain, they will remove you from the process

Interview questions from similar companies

SDE Interview Questions & Answers

Meesho user image Anonymous

posted on 6 Dec 2024

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

(1 Question)

  • Q1. Write system design for cab booking system
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

The aptitude test consist of 50 questions which was simple and mixed if all concepts

Round 2 - Coding Test 

Only one easy coding question

Round 3 - Technical 

(2 Questions)

  • Q1. About Linked List
  • Q2. Basic level understanding questions on DBMS and other concepts
Round 4 - Technical 

(1 Question)

  • Q1. Basic Technical questions

SDE Interview Questions & Answers

Blinkit user image Anonymous

posted on 22 Jun 2024

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

(1 Question)

  • Q1. Predict the winner leetcode problem
  • Ans. 

    The winner leetcode problem involves finding the candidate with the most votes in an election scenario.

    • Iterate through the list of candidates and keep track of their votes

    • Return the candidate with the highest number of votes

    • Example: Input - ['Alice', 'Bob', 'Alice', 'Charlie', 'Bob'], Output - 'Alice'

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice DSA

Skills evaluated in this interview

SDE Interview Questions & Answers

Swiggy user image Anonymous

posted on 22 Jun 2024

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

It had 9 uqestions , one problem solving , one SQL , one API and 6 mcq

Round 2 - Assignment 

Easy assignment , if you hav eOOps knowledge you can do it

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

(1 Question)

  • Q1. System design of Cricbuzz
  • Ans. 

    Cricbuzz system design involves handling real-time sports data, user traffic, and providing live scores, news, and updates.

    • Use microservices architecture to handle different functionalities like live scores, news, and updates.

    • Implement caching mechanisms to reduce load on servers and improve performance.

    • Utilize a distributed database to store large amounts of sports data efficiently.

    • Implement a robust notification syst...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Oct 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

Easy level to Medium level

Round 2 - Coding Test 

2 Easy questions of DSA

Round 3 - One-on-one 

(2 Questions)

  • Q1. One DSA question
  • Q2. Normal discussion about tech stack
Round 4 - HR 

(2 Questions)

  • Q1. Tell about yourself
  • Q2. Why do you want to join digit?

Interview Preparation Tips

Interview preparation tips for other job seekers - Go easy.. Nothing is hard in digit hiring
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(7 Questions)

  • Q1. Angular18 updates`
  • Q2. Angular Ivy features
  • Q3. Dif between var, let, const
  • Ans. 

    var is function scoped, let is block scoped, const is block scoped and cannot be reassigned.

    • var is function scoped, let is block scoped, const is block scoped and cannot be reassigned

    • var can be redeclared and updated, let can be updated but not redeclared, const cannot be redeclared or updated

    • Example: var x = 10; let y = 20; const z = 30;

  • Answered by AI
  • Q4. What is Closure
  • Ans. 

    Closure is a function that captures the variables from its surrounding scope, even after the surrounding function has finished executing.

    • Closure allows a function to access and manipulate variables from its outer scope.

    • It maintains a reference to its outer scope, even after the outer function has returned.

    • Closure is commonly used in event handlers and callbacks.

  • Answered by AI
  • Q5. Dependency injection
  • Q6. Rxjs operators used
  • Ans. 

    Rxjs operators are used for handling asynchronous operations in reactive programming.

    • Map operator: transforms the items emitted by an Observable

    • Filter operator: emits only those items from an Observable that pass a specified condition

    • Merge operator: combines multiple Observables into one by merging their emissions

    • SwitchMap operator: switches to a new Observable each time it is emitted

    • DebounceTime operator: emits a valu...

  • Answered by AI
  • Q7. Change detection strategy in Angular
  • Ans. 

    Change detection strategy in Angular is a mechanism used to detect changes in the application state and update the view accordingly.

    • Angular uses Zone.js for change detection by default

    • Change detection can be triggered manually using ChangeDetectorRef

    • Optimizing change detection using OnPush strategy

  • 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 Newspaper Ad and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How was your previous organization
  • Ans. 

    My previous organization was a fast-paced tech startup focused on developing cutting-edge software solutions.

    • Highly collaborative work environment

    • Emphasis on innovation and creativity

    • Agile development methodologies were followed

    • Regular team meetings and code reviews

    • Opportunities for professional growth and learning

  • Answered by AI
  • Q2. Please create timer using react
  • Ans. 

    Create a timer using React

    • Use useState hook to store the timer value

    • Use useEffect hook to update the timer every second

    • Display the timer value in the component's render method

  • Answered by AI

Skills evaluated in this interview

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 Jul 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Slicing in List of Python
  • Ans. 

    Slicing in Python allows you to extract a subset of elements from a list.

    • Slicing is done using square brackets and the start:stop:step notation.

    • The start index is inclusive, while the stop index is exclusive.

    • You can omit any of the three parameters, defaulting to 0 for start, length of list for stop, and 1 for step.

    • Negative indices can be used to slice from the end of the list.

    • Example: list = [1, 2, 3, 4, 5], list[1:4]

  • Answered by AI
  • Q2. Multithreading questions were asked

Skills evaluated in this interview

Licious Interview FAQs

How many rounds are there in Licious SDE interview?
Licious interview process usually has 1 rounds. The most common rounds in the Licious interview process are Technical.
What are the top questions asked in Licious SDE interview?

Some of the top questions asked at the Licious SDE interview -

  1. Question on DSA were asked related to arrays and tr...read more
  2. Questions on basics of OOPs were as...read more

Tell us how to improve this page.

Licious SDE Interview Process

based on 1 interview

Interview experience

1
  
Bad
View more

SDE Interview Questions from Similar Companies

Meesho SDE Interview Questions
3.7
 • 3 Interviews
Blinkit SDE Interview Questions
3.7
 • 1 Interview
Swiggy SDE Interview Questions
3.8
 • 1 Interview
CARS24 SDE Interview Questions
3.6
 • 1 Interview
View all
Licious SDE Salary
based on 4 salaries
₹15.5 L/yr - ₹40 L/yr
23% more than the average SDE Salary in India
View more details
HUB Manager
111 salaries
unlock blur

₹2.5 L/yr - ₹5.3 L/yr

Assistant Manager
101 salaries
unlock blur

₹1.8 L/yr - ₹10 L/yr

QA Executive
36 salaries
unlock blur

₹3 L/yr - ₹4.6 L/yr

Executive Production
36 salaries
unlock blur

₹2.8 L/yr - ₹7.5 L/yr

Territory Sales Manager
32 salaries
unlock blur

₹6 L/yr - ₹14 L/yr

Explore more salaries
Compare Licious with

BigBasket

3.9
Compare

FreshToHome

3.5
Compare

ZappFresh.com

3.0
Compare

Blinkit

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