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

Clear (1)

Sankey Solutions Solution Analyst Interview Questions, Process, and Tips

Updated 6 Jan 2025

Top Sankey Solutions Solution Analyst Interview Questions and Answers

View all 9 questions

Sankey Solutions Solution Analyst Interview Experiences

8 interviews found

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

I applied via campus placement at Terna Engineering College, Mumbai 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
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?
  • Q2. What are the basics of Java

Solution Analyst Interview Questions Asked at Other Companies

Q1. What are the Aggregate functions in sql
Q2. Write your name 100 times without using any loop.
asked in NCR Voyix
Q3. What do you think proffesional growth in your view
Q4. What is oops what are pillars of oops what is list and tuples
Q5. Write a recursion program.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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 Resume tips
Round 2 - Coding Test 

They take test on paper and pen

Round 3 - Technical 

(1 Question)

  • Q1. Pillars of the python
  • Ans. 

    The pillars of Python refer to the core principles that guide the design and development of the Python programming language.

    • Readability counts: Python emphasizes code readability and simplicity, making it easier for developers to write and maintain code.

    • Explicit is better than implicit: Python encourages clear and explicit code over ambiguity and complexity.

    • Simple is better than complex: Python promotes simplicity and ...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. Salary expectation

Skills evaluated in this interview

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:
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 Resume 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

Sankey Solutions interview questions for designations

 Business Analyst

 (1)

 Software Developer

 (3)

 Junior Software Developer

 (2)

 Software Engineer

 (1)

 Java Developer

 (1)

 Software Trainee

 (1)

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 Resume 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

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

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 Resume 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

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
Contribute & help others!
anonymous
You can choose to be anonymous

Sankey Solutions Interview FAQs

How many rounds are there in Sankey Solutions Solution Analyst 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 Solution Analyst 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 Angular, Bootstrap, Node.Js, PHP and Spring.
What are the top questions asked in Sankey Solutions Solution Analyst interview?

Some of the top questions asked at the Sankey Solutions Solution Analyst 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

Recently Viewed

INTERVIEWS

Boeing

85 interviews

INTERVIEWS

Apexon

135 interviews

INTERVIEWS

Xogene

8 interviews

INTERVIEWS

OpenBet

3 interviews

INTERVIEWS

ABB

233 interviews

INTERVIEWS

Brose India Automotive Systems

No Interviews

INTERVIEWS

Accenture

No Interviews

INTERVIEWS

CodeArray Technologies

No Interviews

INTERVIEWS

Amdocs

No Interviews

INTERVIEWS

Advanced Micro Devices

No Interviews

Tell us how to improve this page.

Sankey Solutions Solution Analyst Interview Process

based on 11 interviews

1 Interview rounds

  • Resume Shortlist Round
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 Solution Analyst Salary
based on 256 salaries
₹2.4 L/yr - ₹9.3 L/yr
48% less than the average Solution Analyst Salary in India
View more details

Sankey Solutions Solution Analyst Reviews and Ratings

based on 77 reviews

3.2/5

Rating in categories

3.9

Skill development

2.8

Work-life balance

3.0

Salary

2.9

Job security

3.2

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 77 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
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent