Upload Button Icon Add office photos
Engaged Employer

i

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

Spyne Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Spyne Software Developer Interview Questions and Answers

Updated 5 Dec 2024

Spyne Software Developer Interview Experiences

1 interview found

Software Developer Interview Questions & Answers

user image Purushottam Mandal_94

posted on 5 Dec 2024

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

BE Assignment containing how to make a simple backend task

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

- simple basic ios questions

Round 2 - Technical 

(1 Question)

  • Q1. Asked DSA array questions

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well DSA and code
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Kadance algorithm and find the middle of the linklist

Round 2 - Coding Test 

More on java and Python based coding questions

Round 3 - HR 

(4 Questions)

  • Q1. Behavioural questions were asked
  • Q2. What are your expectations from this job
  • Q3. What are your plans ahead
  • Q4. Where do you see yourself in 5 years ahead

Interview Preparation Tips

Interview preparation tips for other job seekers - Do good practise of DSA
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Leecode medium level question

Round 2 - Coding Test 

Leetcode Hard level Question

Round 3 - Technical 

(1 Question)

  • Q1. This is cto round asked some interview questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Aptitude Test 

Computer Fundamentals

Round 2 - Technical 

(1 Question)

  • Q1. Flatten a binary tree
  • Ans. 

    Flatten a binary tree by converting it into a linked list in-place.

    • Use a recursive approach to flatten the binary tree.

    • Traverse the tree in a pre-order manner and keep track of the previous node.

    • Set the left child of each node to null and the right child to the next node in the linked list.

    • Example: Input: 1 -> 2 -> 5 -> 3 -> 4 -> null, Output: 1 -> null -> 2 -> null -> 3 -> null -> 4 -> null -> 5 -> null

  • Answered by AI

Skills evaluated in this interview

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 90 minutes
Round difficulty - Hard

Timing was late evening. Platform was good.

  • Q1. 

    Largest Cycle in Maze Problem Statement

    Given a maze represented by 'N' cells numbered from 0 to N-1, and an array arr of 'N' integers where arr[i] denotes the cell number that can be reached from the 'i'...

  • Ans. 

    Identify the length of the largest cycle in a maze represented by cells and an array of integers.

    • Iterate through each cell and find the cycle length using DFS or Floyd's Tortoise and Hare algorithm.

    • Handle self-cycles and cells with no exit by checking arr[i] = i and arr[i] = -1 respectively.

    • Output the length of the largest cycle found or -1 if no cycles exist.

  • Answered by AI
  • Q2. 

    Ninja and the Maze Problem Statement

    Ninja is stuck in a maze represented as a 2D grid. He can move in four directions (Up, Down, Left, Right) until he hits a wall ('1'). Once stopped, he can choose a new...

  • Ans. 

    Determine if Ninja can reach the destination in a maze by moving in four directions until hitting a wall.

    • Create a function to traverse the maze using depth-first search or breadth-first search.

    • Keep track of visited cells to avoid infinite loops.

    • Return 'True' if destination is reachable, 'False' otherwise.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 6 CGPAJUSPAY interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 2.5 monthsInterview preparation tips for other job seekers

Tip 1 : Do some projects.
Tip 2 : Practice dynamic programming.
 

Application resume tips for other job seekers

Tip 1 : Keep it short.
Tip 2 : Do not put false things on resume.

Final outcome of the interviewRejected

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 Oct 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Solving normal Puzzles to test aptitude.

Round 2 - Coding Test 

Sample app was asked to create.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well domain specfic.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

3 Graph Questions Were asked of difficulty medium to hard.

Round 2 - Case Study 

Hackathon round which revolved around multithreading

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

I applied via Campus Placement and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Coding Test 

They have their own coding platform. The questions are basically from tree.

Round 2 - Coding Test 

Tree of space question

Round 3 - Technical 

(2 Questions)

  • Q1. Previous round question solution
  • Q2. System design was asked.

Interview Preparation Tips

Topics to prepare for JUSPAY Software Developer interview:
  • tree
  • graph
  • system design
Interview preparation tips for other job seekers - Should have good knowledge of tree ,graph and system design.

I was interviewed in Apr 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Hard

Timing was late evening . Platform was good.

  • Q1. 

    Largest Cycle in Maze Problem Statement

    Given a maze represented by 'N' cells numbered from 0 to N-1, and an array arr of 'N' integers where arr[i] denotes the cell number that can be reached from the 'i'...

  • Ans. 

    Identify the length of the largest cycle in a maze represented by cells and an array of integers.

    • Iterate through each cell and find the cycle length using DFS or Floyd's Tortoise and Hare algorithm.

    • Keep track of visited cells to avoid infinite loops.

    • Return the length of the largest cycle found or -1 if no cycles exist.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from Chitkara University. Eligibility criteriaAbove 6 CGPAJUSPAY interview preparation:Topics to prepare for the interview - Data Structures, Pointers, OOPS, System Design, Algorithms, Dynamic ProgrammingTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Do some projects
Tip 2 : Be good in data structure
 

Application resume tips for other job seekers

Tip 1 : Keep it short
Tip 2 : Don't try to add false things.

Final outcome of the interviewRejected
Contribute & help others!
anonymous
You can choose to be anonymous

Spyne Interview FAQs

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

Recently Viewed

INTERVIEWS

Ester Industries

No Interviews

INTERVIEWS

Fusion

No Interviews

INTERVIEWS

S P Singla Constructions

No Interviews

SALARIES

CTS Consulting & Technical Support

No Salaries

COMPANY BENEFITS

CTS Consulting & Technical Support

No Benefits

INTERVIEWS

Wipro

No Interviews

INTERVIEWS

TCS

No Interviews

LIST OF COMPANIES

CTS Consulting & Technical Support

Overview

REVIEWS

CTS Consulting & Technical Support

No Reviews

INTERVIEWS

Simpl

No Interviews

Tell us how to improve this page.

Spyne Software Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more
Spyne Software Developer Salary
based on 10 salaries
₹7 L/yr - ₹18 L/yr
60% more than the average Software Developer Salary in India
View more details

Spyne Software Developer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

4.0

Work-life balance

2.0

Salary

3.0

Job security

5.0

Company culture

3.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Product Manager
12 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Operations Associate
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Analyst Intern
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Spyne with

MagicPin

3.0
Compare

Awign Enterprises

4.0
Compare

Nestaway

3.9
Compare

Simplimadly

Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent