Upload Button Icon Add office photos
Engaged Employer

i

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

Sankey Solutions Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Sankey Solutions Interview Questions and Answers

Updated 19 Jun 2025
Popular Designations

18 Interview questions

A Solution Analyst was asked 5mo ago
Q. What are the basics of SQL?
Ans. 

SQL basics include querying databases, manipulating data, and managing database structures.

  • SQL stands for Structured Query Language

  • Used for querying databases to retrieve specific data

  • Can also be used to insert, update, and delete data in databases

  • Used for creating and modifying database structures like tables, indexes, and views

View all Solution Analyst interview questions
A Solution Analyst was asked 5mo ago
Q. What are the basics of Java?
Ans. 

Java is a popular programming language known for its platform independence and object-oriented approach.

  • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

  • It is object-oriented, allowing for the creation of reusable code through classes and objects

  • Java uses a syntax similar to C++, making it easy for programmers to learn if they are familiar with C-based languages

View all Solution Analyst interview questions
A Software Developer was asked 7mo ago
Q. Dsa questin base on dynamic pattern
Ans. 

Dynamic programming is a method for solving complex problems by breaking them down into simpler subproblems.

  • Identify the optimal substructure and overlapping subproblems in the problem

  • Use memoization or tabulation to store and reuse solutions to subproblems

  • Examples: Fibonacci sequence, Longest Common Subsequence, Knapsack problem

View all Software Developer interview questions
A Business Analyst was asked 9mo ago
Q. How can we use JavaScript with CSS and HTML?
Ans. 

JavaScript can be used with CSS and HTML to enhance the functionality and interactivity of web pages.

  • Use JavaScript to manipulate CSS properties and styles dynamically

  • Add event listeners in JavaScript to trigger CSS changes based on user interactions

  • Use JavaScript to update HTML content based on user input or other actions

View all Business Analyst interview questions
A Business Analyst was asked 9mo ago
Q. What is the use of DevOps?
Ans. 

DevOps is a set of practices that combines software development (Dev) and IT operations (Ops) to shorten the systems development life cycle and provide continuous delivery.

  • DevOps aims to automate and integrate the processes between software development and IT teams to build, test, and release software more quickly and reliably.

  • It involves collaboration, communication, and integration of tools to streamline the dev...

View all Business Analyst interview questions
A Software Developer was asked 11mo ago
Q. Give an overview of the project.
Ans. 

Developed a web-based application for managing project tasks and team collaboration, enhancing productivity and communication.

  • Utilized React for the front-end to create a dynamic user interface.

  • Implemented RESTful APIs using Node.js for seamless data communication.

  • Integrated a real-time chat feature using WebSocket for team discussions.

  • Employed MongoDB for a scalable database solution to store project data.

  • Conduct...

View all Software Developer interview questions
A Software Trainee was asked 11mo ago
Q. Write a recursive function to print numbers.
Ans. 

Recursion is a programming technique where a function calls itself to solve a problem, such as printing numbers.

  • Define a recursive function that takes a number as an argument.

  • Base case: If the number is less than or equal to 0, return.

  • Recursive case: Print the current number, then call the function with the number decremented by 1.

  • Example: To print numbers from 5 to 1, call the function with 5.

View all Software Trainee interview questions
Are these interview questions helpful?
A Solution Analyst was asked
Q. Write a SQL query to find the second highest salary from an Employee table.
Ans. 

To find the 2nd highest salary, use a subquery to select the max salary that is not the highest.

  • Use a subquery to find the maximum salary that is not the highest

  • Select the maximum salary from the table where the salary is less than the highest salary

  • Order the results in descending order and limit the result to the second row

View all Solution Analyst interview questions
A Java Developer was asked
Q. What is Polymorphism?
Ans. 

Polymorphism is the ability of an object to take on many forms.

  • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

  • There are two types of polymorphism: compile-time (method overloading) and runtime (method overriding).

  • Example: Animal superclass with Dog and Cat subclasses. Both Dog and Cat can be treated as Animals.

View all Java Developer interview questions
A Solution Analyst was asked
Q. Write your name 100 times without using any loop.
Ans. 

Answering the question of writing name 100 times without using any loop.

  • Write your name 100 times manually

  • Use copy-paste feature to write your name multiple times

  • Use a script or program to generate your name 100 times

View all Solution Analyst interview questions

Sankey Solutions Interview Experiences

23 interviews found

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 - Aptitude Test 

Give 2 codes and we have to write a logic

Round 3 - Technical 

(2 Questions)

  • Q1. Write a recursion program.
  • Q2. What are the Aggregate functions in sql

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on logic building because most of the interview is base on the logic of program.

Skills evaluated in this interview

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

Round 1 - Coding Test 

Easy array string basic question two question

Round 2 - Technical 

(1 Question)

  • Q1. What is oops what are pillars of oops what is list and tuples
  • Ans. 

    OOPs stands for Object-Oriented Programming. Pillars of OOPs are Inheritance, Encapsulation, Abstraction, and Polymorphism. Lists and tuples are data structures in Python.

    • OOPs stands for Object-Oriented Programming

    • Pillars of OOPs are Inheritance, Encapsulation, Abstraction, and Polymorphism

    • Lists and tuples are data structures in Python

    • Lists are mutable while tuples are immutable

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and present your knowledge properly
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I appeared for an interview in Feb 2025.

Round 1 - Coding Test 

During the paper-and-pen test, candidates are typically given two data structures and algorithms (DSA) problems, which are mostly sourced from LeetCode.

Round 2 - Technical 

(1 Question)

  • Q1. Core java, sql and cs fundamentals and about project

Interview Preparation Tips

Interview preparation tips for other job seekers - Wish you good luck and approach with confidence.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

They asked to write a pseudo code for coin denomination problem

Round 2 - Technical 

(2 Questions)

  • Q1. What is the use of devops
  • Ans. 

    DevOps is a set of practices that combines software development (Dev) and IT operations (Ops) to shorten the systems development life cycle and provide continuous delivery.

    • DevOps aims to automate and integrate the processes between software development and IT teams to build, test, and release software more quickly and reliably.

    • It involves collaboration, communication, and integration of tools to streamline the developm...

  • Answered by AI
  • Q2. How can we use javascript with css and html
  • Ans. 

    JavaScript can be used with CSS and HTML to enhance the functionality and interactivity of web pages.

    • Use JavaScript to manipulate CSS properties and styles dynamically

    • Add event listeners in JavaScript to trigger CSS changes based on user interactions

    • Use JavaScript to update HTML content based on user input or other actions

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good company to join

Skills evaluated in this interview

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

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

Round 1 - Coding Test 

It had 2 easy DSA questions

Round 2 - Technical 

(2 Questions)

  • Q1. What are the basics of SQL?
  • Ans. 

    SQL basics include querying databases, manipulating data, and managing database structures.

    • SQL stands for Structured Query Language

    • Used for querying databases to retrieve specific data

    • Can also be used to insert, update, and delete data in databases

    • Used for creating and modifying database structures like tables, indexes, and views

  • Answered by AI
  • Q2. What are the basics of Java
  • Ans. 

    Java is a popular programming language known for its platform independence and object-oriented approach.

    • Java is platform-independent, meaning it can run on any device with a Java Virtual Machine (JVM)

    • It is object-oriented, allowing for the creation of reusable code through classes and objects

    • Java uses a syntax similar to C++, making it easy for programmers to learn if they are familiar with C-based languages

  • Answered by AI
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected

I applied via Walk-in

Round 1 - most of the roundn is dsa base 

(1 Question)

  • Q1. Question is base on array and string.
Round 2 - dsa round 

(1 Question)

  • Q1. Dsa questin base on dynamic pattern
  • Ans. 

    Dynamic programming is a method for solving complex problems by breaking them down into simpler subproblems.

    • Identify the optimal substructure and overlapping subproblems in the problem

    • Use memoization or tabulation to store and reuse solutions to subproblems

    • Examples: Fibonacci sequence, Longest Common Subsequence, Knapsack problem

  • Answered by AI

Skills evaluated in this interview

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

Pen-paper test 1.5hr

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS concept like inheritance, abstraction, Encapsulation and polymorphism
  • Q2. They asked to print numbers using recursion
  • Ans. 

    Recursion is a programming technique where a function calls itself to solve a problem, such as printing numbers.

    • Define a recursive function that takes a number as an argument.

    • Base case: If the number is less than or equal to 0, return.

    • Recursive case: Print the current number, then call the function with the number decremented by 1.

    • Example: To print numbers from 5 to 1, call the function with 5.

  • Answered by AI
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Taskes 2 technical easy questions

Round 2 - Technical 

(1 Question)

  • Q1. Hoistintg in javascript

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Two coding questions were given

Round 2 - Technical 

(2 Questions)

  • Q1. Technical interview a problem statement was given it was pen and paper round
  • Q2. 2 problem statement were given based on DSA
Round 3 - HR 

(1 Question)

  • Q1. Finally HR round it was about personal experience and projects

Interview Preparation Tips

Interview preparation tips for other job seekers - Very nice company to grow and develop skills

Software Developer Interview Questions & Answers

user image Yogesh Padolkar

posted on 11 Jul 2024

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

I applied via Naukri.com and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Aptitude Test 

Solve 2 coding questions.
Array,string type questions

Round 2 - Technical 

(2 Questions)

  • Q1. Oops, static keyword, about main method
  • Q2. Prime number, Armstrong no.
Round 3 - HR 

(2 Questions)

  • Q1. Simple discussion about academic years
  • Q2. Project just give the overview of project
  • Ans. 

    Developed a web-based application for managing project tasks and team collaboration, enhancing productivity and communication.

    • Utilized React for the front-end to create a dynamic user interface.

    • Implemented RESTful APIs using Node.js for seamless data communication.

    • Integrated a real-time chat feature using WebSocket for team discussions.

    • Employed MongoDB for a scalable database solution to store project data.

    • Conducted us...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus more on problem solving and add skills like frameworks, technologies.
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 

2 code and both are compulsory

Round 3 - Technical 

(2 Questions)

  • Q1. What is Polymorphism?
  • Q2. Explain oops concepts

Top trending discussions

View All
Interview Tips & Stories
2w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Sankey Solutions?
Ask anonymously on communities.

Sankey Solutions Interview FAQs

How many rounds are there in Sankey Solutions interview?
Sankey Solutions interview process usually has 2-3 rounds. The most common rounds in the Sankey Solutions interview process are Technical, Coding Test and HR.
How to prepare for Sankey Solutions interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Sankey Solutions. The most common topics and skills that interviewers at Sankey Solutions expect are Javascript, Angular, PHP, Software Development and Bootstrap.
What are the top questions asked in Sankey Solutions interview?

Some of the top questions asked at the Sankey Solutions interview -

  1. Write your name 100 times without using any lo...read more
  2. What are the Aggregate functions in ...read more
  3. What is oops what are pillars of oops what is list and tup...read more
How long is the Sankey Solutions interview process?

The duration of Sankey Solutions interview process can vary, but typically it takes about less than 2 weeks to complete.

Tell us how to improve this page.

Overall Interview Experience Rating

3.7/5

based on 31 interview experiences

Difficulty level

Easy 30%
Moderate 70%

Duration

Less than 2 weeks 84%
2-4 weeks 5%
4-6 weeks 5%
More than 8 weeks 5%
View more

Interview Questions from Similar Companies

Webdew Interview Questions
4.5
 • 108 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
Snovasys Interview Questions
4.0
 • 38 Interviews
Quantsapp Interview Questions
3.0
 • 36 Interviews
NexTurn Interview Questions
4.1
 • 34 Interviews
View all

Sankey Solutions Reviews and Ratings

based on 187 reviews

4.0/5

Rating in categories

4.2

Skill development

3.7

Work-life balance

3.8

Salary

3.7

Job security

4.0

Company culture

3.9

Promotions

3.9

Work satisfaction

Explore 187 Reviews and Ratings
Solution Analyst
262 salaries
unlock blur

₹3.1 L/yr - ₹7.9 L/yr

Software Developer
36 salaries
unlock blur

₹3 L/yr - ₹8.7 L/yr

Solution Lead
29 salaries
unlock blur

₹4 L/yr - ₹12.4 L/yr

Full Stack Developer
12 salaries
unlock blur

₹2.9 L/yr - ₹5.5 L/yr

UI/UX Designer
11 salaries
unlock blur

₹3 L/yr - ₹7.5 L/yr

Explore more salaries
Compare Sankey Solutions with

Zidio Development

4.5
Compare

Northcorp Software

4.5
Compare

Accel Frontline

4.1
Compare

Elentec Power India (EPI) Pvt. Ltd.

3.8
Compare
write
Share an Interview