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, Process, and Tips

Updated 6 Jan 2025

Top Sankey Solutions Interview Questions and Answers

View all 17 questions

Sankey Solutions Interview Experiences

Popular Designations

20 interviews found

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

I applied via Campus Placement and was interviewed in Sep 2022. There were 3 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 - Aptitude Test 

Its aptitude test which is easy. most of the candidate can pass

Round 3 - One-on-one 

(3 Questions)

  • Q1. This is one-one round as technical round which is online which is pass by luck. if you have luck to pass then you will pass. If you give all answer correctly but you don't have luck then try next company b...
  • Q2. The questions are all based on opps concepts and java or python based
  • Q3. Encapsulation, abstraction, polymorphism

Interview Preparation Tips

Interview preparation tips for other job seekers - Luck is very important to get the job here. and also oops concepts are to be hands on

Top Sankey Solutions Solution Analyst Interview Questions and Answers

Q1. What are the Aggregate functions in sql
View answer (2)

Solution Analyst Interview Questions asked at other Companies

Q1. What are the Aggregate functions in sql
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Nov 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Basic theoretical questions of Marketing, 4Ps, funnel etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask your doubts regarding the role for better clarity at the front.

Marketing Associate Interview Questions asked at other Companies

Q1. How would you sell the product if the parent has a concern of child using excessive mobile or technology
View answer (1)

HR Associate Interview Questions & Answers

user image Anonymous

posted on 27 Aug 2024

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

I applied via Internshala and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Personal Round - about your family & past experiences
  • Q2. About HR- past experiences about HR

HR Associate Interview Questions asked at other Companies

Q1. How will you convince the customer who is very frustated?
View answer (1)
Round 1 - Aptitude Test 

30 minutes of aptitude round

Round 2 - Technical 

(2 Questions)

  • Q1. It take regarding your techniqle knowledge
  • Q2. Basic question of as per your resume
Round 3 - Technical 

(1 Question)

  • Q1. Basic question of interview as per resume

Interview Preparation Tips

Interview preparation tips for other job seekers - not much more i am sharing this is fine.
not much more i am shring this i sfine

Junior Software Developer Interview Questions asked at other Companies

Q1. Given n coins for two players playing a game. Each player picks coins from the given n coins in such a way that he can pick 1 to 5 coins in one turn and the game continues for both the players. The player who picks the last coin looses the ... read more
View answer (2)

Sankey Solutions interview questions for popular designations

 Solution Analyst

 (8)

 Software Developer

 (3)

 Junior Software Developer

 (2)

 Business Analyst

 (1)

 HR Associate

 (1)

 Java Developer

 (1)

 Marketing Associate

 (1)

 Software Engineer

 (1)

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
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.
  • Ans. 

    A recursion program is a function that calls itself until a base case is reached.

    • Identify the base case and write the code to handle it

    • Write the recursive case that calls the function with a modified input

    • Ensure the recursive case moves towards the base case

    • Example: Factorial function: function factorial(n) { if (n === 0) { return 1; } else { return n * factorial(n-1); } }

    • Example: Fibonacci sequence: function fibonacci

  • Answered by AI
  • Q2. What are the Aggregate functions in sql
  • Ans. 

    Aggregate functions in SQL are used to perform calculations on a set of values and return a single value.

    • Common aggregate functions include SUM, AVG, COUNT, MAX, and MIN.

    • SUM calculates the total of a set of values.

    • AVG calculates the average of a set of values.

    • COUNT counts the number of values in a set.

    • MAX returns the highest value in a set.

    • MIN returns the lowest value in a set.

  • Answered by AI

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

Top Sankey Solutions Solution Analyst Interview Questions and Answers

Q1. What are the Aggregate functions in sql
View answer (2)

Solution Analyst Interview Questions asked at other Companies

Q1. What are the Aggregate functions in sql
View answer (2)

Get interview-ready with Top Sankey Solutions Interview Questions

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

I applied via Company Website and was interviewed before Mar 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. MySql basic, Oops concept
  • Q2. Find 2nd highest salary
  • 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

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. About your self

Skills evaluated in this interview

Top Sankey Solutions Solution Analyst Interview Questions and Answers

Q1. What are the Aggregate functions in sql
View answer (2)

Solution Analyst Interview Questions asked at other Companies

Q1. What are the Aggregate functions in sql
View answer (2)
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Apr 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

Easy question of logical and reasoning

Round 3 - Coding Test 

Basic questions related to oops concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Just chill and be confident

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray Sum Problem Statement Given an array of integers, determine the maximum possible sum of any contiguous subarray within the array. Example: Input: array = [34, -50, 42, 14, -5, 86] Output: 137 Explanation: The maximum sum is... read more
View answer (38)
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jan 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all tips
Round 2 - HR 

(2 Questions)

  • Q1. 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

  • Answered by AI
  • Q2. Remove duplicate from array
  • Ans. 

    Remove duplicates from an array

    • Use a loop to iterate through the array

    • Use a hash table to keep track of unique values

    • If a value is already in the hash table, remove it from the array

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be calm. Very easy question where asked and be confident

Skills evaluated in this interview

Top Sankey Solutions Solution Analyst Interview Questions and Answers

Q1. What are the Aggregate functions in sql
View answer (2)

Solution Analyst Interview Questions asked at other Companies

Q1. What are the Aggregate functions in sql
View answer (2)

I applied via LinkedIn and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is ux design ..?
  • Ans. 

    UX design is the process of designing digital products that are user-centered and provide a positive user experience.

    • UX design focuses on understanding user needs and behaviors

    • It involves creating wireframes, prototypes, and conducting user testing

    • Good UX design results in products that are easy to use and meet user goals

    • Examples of good UX design include the iPhone, Airbnb, and Google Maps

  • Answered by AI
  • Q2. What are the types of trends?
  • Ans. 

    There are various types of trends in UI/UX design.

    • Visual trends (e.g. flat design, material design)

    • Interaction trends (e.g. microinteractions, chatbots)

    • Layout trends (e.g. card-based design, asymmetrical layouts)

    • Typography trends (e.g. bold and large fonts, custom typography)

    • Color trends (e.g. gradients, duotones)

    • Animation trends (e.g. motion graphics, 3D animations)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I am very confident during my interview. I have a positive mindset during interview. don’t be hesitate to give answer. I have well prepared.

Skills evaluated in this interview

UI/UX Designer Interview Questions asked at other Companies

Q1. Design an app home screen that will have all the insurance types, EV, Pet care, and Child care at one place.
View answer (3)

Solution Analyst Interview Questions & Answers

user image Dipti Shipate

posted on 2 Feb 2022

I applied via Campus Placement and was interviewed before Feb 2021. There were 3 interview rounds.

Round 1 - Coding Test 

2 coding questions

Round 2 - Assignment 
Round 3 - HR 

(1 Question)

  • Q1. Why should we hire you?

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn technologies before joining

Top Sankey Solutions Solution Analyst Interview Questions and Answers

Q1. What are the Aggregate functions in sql
View answer (2)

Solution Analyst Interview Questions asked at other Companies

Q1. What are the Aggregate functions in sql
View answer (2)

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, Bootstrap and CSS.
What are the top questions asked in Sankey Solutions interview?

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

  1. What are the Aggregate functions in ...read more
  2. Write your name 100 times without using any lo...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.

Sankey Solutions Interview Process

based on 25 interviews

Interview experience

3.5
  
Average
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
IBM Interview Questions
4.0
 • 2.4k Interviews
View all

Sankey Solutions Reviews and Ratings

based on 165 reviews

3.9/5

Rating in categories

4.2

Skill development

3.6

Work-life balance

3.7

Salary

3.6

Job security

3.9

Company culture

3.8

Promotions

3.8

Work satisfaction

Explore 165 Reviews and Ratings
Solution Analyst
256 salaries
unlock blur

₹2.3 L/yr - ₹9.3 L/yr

Software Developer
35 salaries
unlock blur

₹3 L/yr - ₹9.9 L/yr

Solution Lead
24 salaries
unlock blur

₹5 L/yr - ₹11 L/yr

UI/UX Designer
12 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Full Stack Developer
10 salaries
unlock blur

₹2.9 L/yr - ₹4 L/yr

Explore more salaries
Compare Sankey Solutions with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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