Upload Button Icon Add office photos

Filter interviews by

Shine Software Developer Interview Questions and Answers

Updated 13 Feb 2024

Shine Software Developer Interview Experiences

1 interview found

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

I applied via Shine and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - HR 

(1 Question)

  • Q1. We have considered to directly send your profile to companies. How much CTC do you expect?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident,answer all questions.

Interview questions from similar companies

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

(2 Questions)

  • Q1. LRU Cache - how to tackle
  • Ans. 

    LRU Cache is a data structure that maintains a list of items in order of most recently used to least recently used.

    • Implement using a doubly linked list and a hashmap for efficient operations

    • When an item is accessed, move it to the front of the list

    • When the cache is full, remove the least recently used item from the end of the list

  • Answered by AI
  • Q2. LRU Cache implementation based on a real time system. How would the main work which will be called etc etc
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at RV College Of Engineering (RVCE) and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

3 Medium level dsa questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Lld of cab booking system
  • Ans. 

    The Low Level Design (LLD) of a cab booking system involves detailing the system architecture and components at a lower level of abstraction.

    • Identify the main components of the system such as user interface, booking engine, payment gateway, and driver allocation algorithm.

    • Define the interactions between these components and how data flows between them.

    • Specify the data structures and algorithms used for efficient bookin...

  • Answered by AI
  • Q2. Discussion about online assesment

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for machine coding rounds.

Skills evaluated in this interview

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

I applied via Job Portal and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Coding Test 

DSA + JAVA + Spring boot

Round 2 - Case Study 

LLD (bookmyshow) + DSA

Interview Preparation Tips

Topics to prepare for Lenskart Software Developer interview:
  • Spring batch
  • spring Jpa
  • Transactions
  • Microservices
Interview preparation tips for other job seekers - DSA + HLD
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Implement an immutable class.
  • Ans. 

    An immutable class is a class whose instances cannot be modified after creation.

    • Use final keyword for class declaration to prevent inheritance

    • Make all fields private and final to prevent modification

    • Do not provide setter methods, only getter methods should be used

  • Answered by AI
  • Q2. Implement a springboot service that intercepts http requests.
  • Ans. 

    Implement a Springboot service to intercept HTTP requests.

    • Create a Springboot application with necessary dependencies.

    • Implement a custom interceptor by extending HandlerInterceptorAdapter.

    • Override preHandle and postHandle methods to intercept requests and responses.

    • Register the interceptor in the WebMvcConfigurerAdapter configuration class.

  • Answered by AI

Skills evaluated in this interview

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

HAckerrank based test

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

Medium leet code question

I was interviewed in Jul 2021.

Round 1 - Video Call 

(2 Questions)

Round duration - 60 minutes
Round difficulty - Easy

This was a online coding interview where I was asked coding questions.

  • Q1. 

    Preorder Traversal of a BST Problem Statement

    Given an array PREORDER representing the preorder traversal of a Binary Search Tree (BST) with N nodes, construct the original BST.

    Each element in the given...

  • Ans. 

    Preorder traversal is: process the root, left subtree, and then right subtree. So, to emulate this behaviour in a non-recursive way, a stack can be used. 
    1. Start with pushing the root node to the stack and continue the traversal till there is at least one node onto the stack. 2. Pop the root node from stack, process it and push it’s right and left child on to stack. We push the right child before the left child b...

  • Answered Anonymously
  • Q2. 

    Convert Sorted Array to BST Problem Statement

    Given a sorted array of length N, your task is to construct a balanced binary search tree (BST) from the array. If multiple balanced BSTs are possible, you ca...

  • Ans. 

    The approach to this question is quite simple. We traverse the array and process each element one by one. We separately create an insert function which basically takes the root node and the array element as parameters and insert the element in the tree after evaluating the conditions: 
    1.Start from the root. 
    2. Compare the inserting element with root, if less than root, then recurse for left, else recurse for ...

  • Answered Anonymously
Round 2 - Video Call 

(1 Question)

Round duration - 60 minutes
Round difficulty - Easy

This was a technical round. Programming based questions and oops/dbms based were asked. 
Some questions were :
1. How many types of trigger?
Ans. In SQL, there are 3 types of triggers :
DML (data manipulation language) triggers – Eg.– INSERT, UPDATE, and DELETE
DDL (data definition language) triggers Eg.– CREATE, ALTER, and DROP
Logon triggers –This type reacts to LOGON events
2. Can trigger be used with select statement?
Ans. No, triggers cannot be used with select statements. They can only be used with Insert, update or delete statements. 
3. Indexing in mysql? How many types of indexing in mysql?
Ans. Indexes are used to find rows with specific column values quickly. It helps to determine the position to seek to in the middle of the data file without having to look at all the data. It performs much faster than reading every row sequentially.
4. Engines in mysql?
Ans. So, in mysql, storage engine is a software module that a database management system uses to create, read, update data from a database. There are two types of storage engines: transactional and non-transactional.
5. Singleton pattern?
Ans. Singleton is a creational design pattern that ensured that a class has only one instance, while providing a global access point to this instance.

  • Q1. 

    Pair Sum Problem Statement

    You are given an integer array 'ARR' of size 'N' and an integer 'S'. Your task is to find and return a list of all pairs of elements where each sum of a pair equals 'S'.

    Note:
    ...
  • Ans. 

    The problem can be solved in O(n) time using the concept of hashing. 
    Use a hashset to check for the current array value. Check if targetsum – current value exists in the map or not. If it exists, that means a pair with sum equal to target sum exists in the array.

  • Answered Anonymously

Interview Preparation Tips

Eligibility criteriaAbove 7 CGPAMyntra interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, System Design, Aptitude, OOPSTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Must do Previously asked Interview as well as Online Test Questions.
Tip 2 : Go through all the previous interview experiences from Codestudio and Leetcode.
Tip 3 : Do at-least 2 good projects and you must know every bit of them.

Application resume tips for other job seekers

Tip 1 : Have at-least 2 good projects explained in short with all important points covered.
Tip 2 : Every skill must be mentioned.
Tip 3 : Focus on skills, projects and experiences more.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

1 Question

  • Q1. They asked 3 Coding questions and 5 MCQ all of them were very simple. One was related to fibbonaci. Another one was like there was 2d array and at i,j sum till row i and sum till j was given and all the el...

Interview Preparation Tips

Interview preparation tips for other job seekers - I got all three questions correct and also I got a call from recruiter saying that be prepared for interview at tuesday but when i tried calling, He wasn't picking it up. Overall, It was a pathetic experience.
Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Code postorder traversal without using recursion.
  • Ans. 

    Iterative solution using a stack to perform postorder traversal.

    • Use a stack to simulate the recursive call stack.

    • Push nodes in the order of right, left, root.

    • Pop nodes from stack and add to result array.

    • Repeat until stack is empty.

  • Answered by AI
  • Q2. Leetcode Problem 1626 - Best team with no conflicts.
Round 2 - System Design 

(2 Questions)

  • Q1. Design whatsapp with one to one, group messaging and read receipts functionalities. Design the database.
  • Ans. 

    Design a messaging app like WhatsApp with one-to-one, group messaging, and read receipts functionalities.

    • Use a relational database to store user information, messages, and group memberships.

    • Create tables for users, messages, groups, and group memberships.

    • Include columns for message content, sender, receiver, timestamp, and read status.

    • Implement a feature to mark messages as read with read receipts.

    • Use indexes for effic

  • Answered by AI
  • Q2. Questions on dbms, cn and os.

Skills evaluated in this interview

Shine Interview FAQs

How many rounds are there in Shine Software Developer interview?
Shine interview process usually has 1 rounds. The most common rounds in the Shine interview process are HR.

Tell us how to improve this page.

Shine Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Sales Executive
38 salaries
unlock blur

₹1.8 L/yr - ₹3.8 L/yr

Accounts Manager
22 salaries
unlock blur

₹6 L/yr - ₹8.5 L/yr

Assistant Manager
8 salaries
unlock blur

₹5 L/yr - ₹7.5 L/yr

Product Manager
8 salaries
unlock blur

₹16 L/yr - ₹22 L/yr

Business Development Executive
7 salaries
unlock blur

₹2.4 L/yr - ₹3.6 L/yr

Explore more salaries
Compare Shine with

Naukri

4.0
Compare

Info Edge

3.9
Compare

Quikr

3.7
Compare

Times Business Solutions

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