Upload Button Icon Add office photos

Filter interviews by

Sanchhaya Education Software Developer Intern Interview Questions, Process, and Tips

Updated 25 Oct 2021

Sanchhaya Education Software Developer Intern Interview Experiences

1 interview found

I was interviewed in Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 160 minutes
Round difficulty - Easy

The online assessment consisted of four components, a code debugging section (20 minutes), a coding test (70 minutes), a workstyles assessment (20 minutes) and a reasoning ability section (35 minutes). Code debugging questions were pretty simple and straightforward. The coding test consisted of 2 questions, first was similar to two Sum problem. Second question was similar to find the critical edges in a graph. The workstyles assessment section contained certain behavioural questions.
Reasoning ability section consisted of aptitude questions. This round was basically to check the problem solving skills of the candidate.

  • Q1. Two Sum

    You are given an array of integers 'ARR' of length 'N' and an integer Target. Your task is to return all pairs of elements such that they add up to Target.

    Note:

    We cannot use th...
  • Ans. Hashing Solution
    • We can store the frequency of every element in the array in a hashmap.
    • We will loop over every index i, and check the frequency of (Target - ARR[i]) is the hashmap:
      • If (Target - ARR[i]) is equal to ARR[i], we will check if frequency of ARR[i] . If it is greater than 1 then we will decrease the frequency of ARR[i] by 2 and add a pair (ARR[i] , ARR[i]) to our answer.
      • Else, if the frequency of ARR[i] and Targ...
  • Answered by CodingNinjas
  • Q2. Bridges In A Graph

    Given an undirected graph of V vertices and E edges. Your task is to find all the bridges in the given undirected graph. A bridge in any graph is defined as an edge which, when removed, ...

  • Ans. Brute Force

    The brute force approach to find all the bridges in a given graph is to check for every edge if it is a bridge or not, by first not considering current edge is not in given graph and then checking if the vertices that it was connecting are still connected or not, using DFS(DepthFirst Search). Given below is an algorithm that will find all bridges in a graph.

     

    Algorithm :

    1. Initialise a visited array with fa...
  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Easy

I was asked two coding questions. First question was related to binary tree and second question was to implement LRU cache.
I had to code both questions. The interviewer asked me the time and space complexity for both the questions.

  • Q1. Binary Tree Pruning

    You have been given a Binary Tree where the value of each node is either 0 or 1. Your task is to return the same Binary Tree but all of its subtrees that don't contain a 1 have been...

  • Ans. PostOrder Traversal based Approach

    If we have to process a subtree from the tree, it is better to process the child subtrees first i.e. PostOrder Traversal. This strategy will help us in two ways-

    • We can keep track if a 1 is present in the subtree or not.
    • If a 1 is not present in a subtree, we can delete it directly (by assign ‘NULL’ to that subtree).

     

    Here, is the complete recursive algorithm

    • Create a hasOne function...
  • Answered by CodingNinjas
  • Q2. LRU Cache Implementation

    Design and implement a data structure for Least Recently Used (LRU) cache to support the foll...

  • Ans. Array Approach

    We will use an array of type Pair<key, value> to implement our LRU Cache where the larger the index is, the more recently the key is used. Means, the 0th index denotes the least recently used pair, and the last index denotes the most recently used pair.

     

    The key will be considered as accessed if we try to perform any operation on it. So while performing the get operation on a key, we will do a ...

  • Answered by CodingNinjas
Round 3 - Video Call 

(2 Questions)

Round duration - 30 minutes
Round difficulty - Easy

I was asked two coding questions and some conceptual questions about priority heap data structure. I was able to code the optimized approach for the first question. But second question was a little tricky for me as I had never heard it before.

  • Q1. Langford Pairing

    You are given a positive integer N. Return a list of integers of size 2N containing all the integers from 1 to N (both inclusive) twice arranged according to Langford pairing. If no such p...

  • Ans. Recursion

    It can be observed with some examples that for any number N, the permutation following Langford pairing is possible only if either N mod 4 is 0 or 3. Thus, Langford pairing is possible for 3, 4, 7, 8, etc, and not possible for 1, 2, 5, 6, etc. Now to find the sequence,

     

    • If N mod 4 is 1 or 2, return -1.
    • Otherwise, we will use recursion to generate the sequence.
    • Create an array of size 2*N and initialize all ...
  • Answered by CodingNinjas
  • Q2. Ninja theater

    You have been appointed as the technical lead in the very famous ninja theater. Due to the recent pandemic, all the people inside the theater must follow social distancing. There are ‘N’ seat...

  • Ans. Brute Force

    The idea here is to maintain a sorted list of seat numbers of the persons sitting in the theater. For every query of type 2, we can directly remove the seat number from our list. For every query of type 1, we will iterate over the list and find the lowest seat number, which is empty and has a maximum distance from the closest person in the theater and place the new person accordingly.

     

    Algorithm:

     

    • De...
  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - Intern in HyderabadEligibility criteriaabove 70%Sanchhaya Education Private Limited interview preparation:Topics to prepare for the interview - Data Structures, Recursion, Dynamic Programming, OOPS, PointersTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Be very clear with the basics of each topic.
Tip 2 : Be thorough with the projects mentioned in the resume.

Application resume tips for other job seekers

Tip 1 : Don't lie on your resume.
Tip 2 : The number of projects on the resume does not matter, what matters is that you must be thorough with your projects.
Tip 3 : Do not write too much, it should be simple and decent

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Coding Test 

Easy Questions- Can be done with decent practice

Round 2 - Technical 

(2 Questions)

  • Q1. Array question - basic knowledge sufficient
  • Q2. Maths questions + stack implementation
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at SRM university (SRMU) and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

It is easy and not that much tough.

Round 2 - Coding Test 

Both questions from strings

Round 3 - HR 

(2 Questions)

  • Q1. Introduce 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 like HTML, CSS, and JavaScript

    • Currently pursuing a degree in Computer Science

  • Answered by AI
  • Q2. Projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on resume projects
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Aptitude Test 

Test has many reasoning and coding question work on building logic and data Structure

Round 2 - Coding Test 

Coding round is kind of tough practice dsa questions and build your logic

Interview Preparation Tips

Interview preparation tips for other job seekers - work on skills
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Leetcode medium questions was asked on hackerrank

Round 2 - Technical 

(2 Questions)

  • Q1. What is database, system design
  • Ans. 

    A database is a structured collection of data, while system design involves creating a plan for how different components of a system will work together.

    • Database is used to store and organize data in a structured manner.

    • System design involves creating a plan for how different components of a system will interact and work together efficiently.

    • Examples of databases include MySQL, PostgreSQL, and MongoDB.

    • Examples of system...

  • Answered by AI
  • Q2. Standard leetcode questions + hashmaps + projects

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Please introduce yourself .
  • Q2. Why do you want to join tech mahindra
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 Nov 2023. There were 2 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. Conduct a phone or video interview
  • Q2. Consider how candidates may work in your team
  • Q3. Conduct a more in depth interview
  • Q4. Assign a remote coding assessment
  • Ans. 

    Assign a remote coding assessment

    • Clearly define the problem statement and requirements

    • Provide a set of input/output examples for testing

    • Specify the programming language and any constraints

    • Set a time limit for completion

    • Include instructions for submission and evaluation

  • Answered by AI
  • Q5. Request previous work samples
Round 2 - Assignment 

The task of Assignment

Interview Preparation Tips

Interview preparation tips for other job seekers - Every job has the very important of the person of Future carrier,life,family💖so even small job has and do that job very importantly so that's y I like this job
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Normal and easy coding questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Define sorting methods
  • Ans. 

    Sorting methods are algorithms used to arrange elements in a specific order.

    • Sorting methods include bubble sort, selection sort, insertion sort, merge sort, quick sort, etc.

    • They can be categorized as comparison-based or non-comparison-based algorithms.

    • Examples: Bubble sort compares adjacent elements and swaps them if they are in the wrong order.

    • Merge sort divides the array into two halves, sorts them separately, and th

  • Answered by AI
  • Q2. 1 coding question

Interview Preparation Tips

Interview preparation tips for other job seekers - Easy interview

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Project discussion

Interview Preparation Tips

Topics to prepare for LTIMindtree Software Developer Intern interview:
  • Node.Js
  • React.Js
Interview experience
3
Average
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Moderate difficulty level questions were asked

Round 2 - Coding Test 

High difficulty level questions were asked

Interview Preparation Tips

Interview preparation tips for other job seekers - Tough process

Tell us how to improve this page.

Compare Sanchhaya Education with

TCS

3.7
Compare

Accenture

3.9
Compare

Wipro

3.7
Compare

Cognizant

3.8
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview