Upload Button Icon Add office photos

Filter interviews by

Slice Software Developer Interview Questions and Answers

Updated 30 Oct 2023

Slice Software Developer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 

Medium Leetcode, Array, String, Tree, DP

Round 3 - Technical 

(1 Question)

  • Q1. System Design, Design Payment Platform

Interview Preparation Tips

Interview preparation tips for other job seekers - Leetcode, and skills too

Interview questions from similar companies

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

Write code for advance surrying in js

Round 2 - Coding Test 

Implement custom hook for api call

Round 3 - Behavioral 

(2 Questions)

  • Q1. Basic questions arounf my previous work
  • Q2. Technical questions around performance and code optimization
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Referral and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Binary search algo quetion

Interview Preparation Tips

Interview preparation tips for other job seekers - na
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Basic DSA Question
Round 2 - Technical 

(1 Question)

  • Q1. Mobile Development Related Questions
Round 3 - HR 

(1 Question)

  • Q1. Basic HR Questions
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Coding Test 

One medium and one standard DP question

Round 2 - Technical 

(1 Question)

  • Q1. Medium level question based on binary search
Round 3 - Technical 

(2 Questions)

  • Q1. Design google-pay
  • Ans. 

    Design Google Pay - a digital wallet platform for online payments and transactions.

    • Allow users to securely store payment information such as credit/debit cards, bank accounts, and loyalty cards.

    • Enable users to make payments in stores, online, and within apps using their stored payment methods.

    • Implement security features like biometric authentication, tokenization, and encryption to protect user data.

    • Provide features fo...

  • Answered by AI
  • Q2. HLD of recursive
  • Ans. 

    High Level Design (HLD) of recursive functions in software development.

    • Recursive functions call themselves to solve smaller instances of the same problem.

    • HLD of recursive functions involves defining the base case, recursive case, and termination condition.

    • Example: HLD of a recursive function to calculate factorial of a number involves defining base case as factorial(0) = 1.

  • Answered by AI
Round 4 - HR 

(2 Questions)

  • Q1. Puzzles available on GFG
  • Q2. Behavioral question

Interview Preparation Tips

Interview preparation tips for other job seekers - be good in DSA, system design, projects, puzzles

Skills evaluated in this interview

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

(1 Question)

  • Q1. LLD HLD HM rounds
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Indian Institute of Technology (IIT), Guwahati and was interviewed in Nov 2023. There were 4 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 - Coding Test 

Mcqs based on cs fundamentals and 2_3 coding questions

Round 3 - Technical 

(2 Questions)

  • Q1. 2-3 DSA questions to be written on paper in the interview itself
  • Q2. Merge 2 sorted Linked list into 1
  • Ans. 

    Merge two sorted linked lists into one.

    • Create a new linked list to store the merged list.

    • Compare the values of the nodes from both lists and add the smaller value to the new list.

    • Move the pointer of the list with the smaller value to the next node.

    • Repeat the comparison and addition until one of the lists is empty.

    • Add the remaining nodes from the non-empty list to the new list.

    • Return the new merged list.

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. A full cv analysis interview round discussion on all the projects and team work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for DSA quite well and make sure you know everything about your CV and must have some team work skills

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Assignment 

Data Structures Algorithms

Round 2 - Coding Test 

Data Structures and Algorithm

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for DSA
Round 1 - Aptitude Test 

Basic aptitude , same syllabus that of tcs

Round 2 - Coding Test 

Two debugging questions, of medium level

Round 3 - One-on-one 

(2 Questions)

  • Q1. What are react hooks, class based components ,linked list ,palindrome , state in components , virtual and real dom
  • Ans. 

    A set of concepts and tools used in React for managing state and rendering UI components.

    • React hooks are functions that allow you to use state and other React features without writing a class component.

    • Class based components are a way of defining React components using ES6 classes.

    • Linked list is a data structure that consists of a sequence of nodes, each containing a reference to the next node.

    • Palindrome is a word, phr...

  • Answered by AI
  • Q2. Sql quries, 2nd max salary, Nth max salary , Group by, deff between delete, truncate,drop

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn SQL thoroughly, practice top 50 gfg sql questions for interview, Know in detail all that you have mentioned in CV, and be fluent on your projects. extra preference if project is in financial domain

Skills evaluated in this interview

I was interviewed in May 2022.

Round 1 - Coding Test 

(2 Questions)

Round duration - 75 Minutes
Round difficulty - Medium

The round consisted of 2 Coding based based questions.
These question were easy for as I have already done this while preparing.

  • Q1. 

    Flip Equivalent Binary Tree Problem

    Determine whether two binary trees, given by their roots 'ROOT1' and 'ROOT2', are flip equivalent. A tree can be transformed into a flip equivalent through any number o...

  • Ans. 

    The problem is to determine if two binary trees are flip equivalent after performing flip operations on one of the trees.

    • Perform a depth-first search (DFS) on both trees simultaneously

    • At each node, check if the values are equal and the left and right subtrees are either both null or both not null

    • If the above conditions are met, recursively check the flip equivalence of the left and right subtrees

    • If any of the condition...

  • Answered by AI
  • Q2. 

    Split Array Into Increasing Subsequences Problem Statement

    You are provided with an integer array ARR of size N sorted in ascending order. Your task is to determine if it is possible to split this array i...

  • Ans. 

    The task is to determine if an integer array can be split into one or more increasing subsequences with a length of at least 3.

    • Check if the array can be split into increasing subsequences by iterating through the array.

    • Keep track of the current subsequence and its length while iterating.

    • If the difference between the current element and the previous element is not 1, start a new subsequence.

    • If the length of any subseque...

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

The interview started a bit late as I it to be at 11:30 am but started at 12:15pm So Had to wait. Apart from these the overall experience was great and the interviewer was also kind and had a smiling face.

  • Q1. 

    Ninja and Alternating Largest Problem Statement

    Ninja is given a sequence of numbers and needs to rearrange them so that every second element is greater than its neighbors on both sides.

    Example:

    Input:
    ...
  • Ans. 

    The task is to rearrange the given array such that every second element is greater than its left and right element.

    • Iterate through the array and check if every second element is greater than its left and right element

    • If not, swap the current element with its adjacent element to satisfy the condition

    • Continue this process until the entire array satisfies the condition

    • Return 1 if the array satisfies the condition, else re

  • Answered by AI
Round 3 - Video Call 

Round duration - 30 Minutes
Round difficulty - Easy

10:30 PM 
Interviewer was Cool.

Round 4 - HR 

Round duration - 5 minutes
Round difficulty - Easy

At 10:00 am

Interview Preparation Tips

Eligibility criteriaNo criteria But only 8+ plus CGPA were eventually shortlisted on basis of resumeAcko interview preparation:Topics to prepare for the interview - DSA, DBMS, Puzzles, OS, System DesignTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Never never try to cheat in online interview the interviewer will definitely get to know.
Tip 2 : Psuedo code presentation matters a lot so name Your variable properly and with proper indentation.
Tip 3 : Keep on trying even if You feel that's not the right answer so at least put that idea forward.
Tip 4 : Do Leetcode medium questions as much as possible As they are mostly asked in Interviews.

Application resume tips for other job seekers

Tip 1 : Avoid unnecessary details on Resume
Tip 2 : Make It look clean and also keep it of one page

Final outcome of the interviewSelected

Skills evaluated in this interview

Slice Interview FAQs

How many rounds are there in Slice Software Developer interview?
Slice interview process usually has 3 rounds. The most common rounds in the Slice interview process are Resume Shortlist, Coding Test and Technical.

Tell us how to improve this page.

Slice Software Developer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Fast track your campus placements

View all
Slice Software Developer Salary
based on 15 salaries
₹18 L/yr - ₹36 L/yr
266% more than the average Software Developer Salary in India
View more details

Slice Software Developer Reviews and Ratings

based on 3 reviews

2.4/5

Rating in categories

4.7

Skill development

2.1

Work-life balance

4.7

Salary

2.1

Job security

2.7

Company culture

2.4

Promotions

2.1

Work satisfaction

Explore 3 Reviews and Ratings
KYC Associate
138 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Team Lead
56 salaries
unlock blur

₹4 L/yr - ₹10.7 L/yr

Collections Executive
47 salaries
unlock blur

₹2.5 L/yr - ₹4.5 L/yr

Customer Support Executive
40 salaries
unlock blur

₹3.1 L/yr - ₹6 L/yr

Customer Service Executive
25 salaries
unlock blur

₹3.2 L/yr - ₹6.1 L/yr

Explore more salaries
Compare Slice with

ZestMoney

4.0
Compare

Paysense Services India

3.7
Compare

EarlySalary Services

3.8
Compare

Kissht Finance

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