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 Solution Analyst Interview Questions and Answers

Updated 6 Jan 2025

9 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

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

Solution Analyst Interview Questions Asked at Other Companies

Q1. Write your name 100 times without using any loop.
Q2. What are the aggregate functions in SQL?
Q3. What does professional growth mean to you?
Q4. What is oops what are pillars of oops what is list and tuples
Q5. How does asset accounting interact with other modules in SAP?
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

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

A Solution Analyst was asked
Q. Given an array, remove the duplicate elements and return the array without duplicates.
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

A Solution Analyst was asked
Q. 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.

A Solution Analyst was asked
Q. Write a recursive 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 fibo...

Are these interview questions helpful?
A Solution Analyst was asked 6mo ago
Q. 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

A Solution Analyst was asked
Q. 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...

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 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?
  • 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
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

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

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.

Interview questions from similar companies

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

(1 Question)

  • Q1. Discussed on my last salary
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - HR 

(1 Question)

  • Q1. General fit to profile filtration
Round 2 - Technical 

(3 Questions)

  • Q1. To the profile applied for
  • Q2. Explain an actual component
  • Ans. 

    An actual component is a reusable and modular piece of software that performs a specific function within a larger system.

    • Components are often designed to be independent and can be easily integrated into different systems.

    • Examples of components include buttons, input fields, and dropdown menus in a user interface.

    • Components can have their own logic, styling, and functionality, making them versatile building blocks for s...

  • Answered by AI
  • Q3. Design the architecture
  • Ans. 

    Designing the architecture for a software system involves planning the structure and components of the system.

    • Identify the key components of the system and their interactions

    • Choose appropriate technologies and frameworks for each component

    • Consider scalability, performance, security, and maintainability

    • Create a detailed diagram or documentation of the architecture

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Attitude towards work

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not bluff they will catch you immediately as even their management are hardcore coders

Skills evaluated in this interview

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

Tell us how to improve this page.

Overall Interview Experience Rating

3.1/5

based on 10 interview experiences

Difficulty level

Easy 14%
Moderate 86%

Duration

Less than 2 weeks 86%
2-4 weeks 14%
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
View all
Sankey Solutions Solution Analyst Salary
based on 262 salaries
₹3.1 L/yr - ₹7.9 L/yr
49% less than the average Solution Analyst Salary in India
View more details

Sankey Solutions Solution Analyst Reviews and Ratings

based on 83 reviews

3.3/5

Rating in categories

3.8

Skill development

2.9

Work-life balance

3.1

Salary

2.9

Job security

3.2

Company culture

3.2

Promotions

3.2

Work satisfaction

Explore 83 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