Upload Button Icon Add office photos

Filter interviews by

Symphony Talent Software Developer Interview Questions, Process, and Tips

Updated 14 Sep 2021

Symphony Talent Software Developer Interview Experiences

1 interview found

I appeared for an interview in Jan 2021.

Round 1 - Video Call 

(5 Questions)

Round duration - 105 minutes
Round difficulty - Medium

Yes, here comes the technical Round. Like other casual Interviews, it started with my introduction. and then the Interviewer asked me about OOPs Concepts and for every concept he asked for an example code. it took around 20 mins for this round and next he started asking questions from my project ( in which I mentioned ML Project ). From this he has asked Like why do you choose this algorithm and why did you learned ML. After That he moved to the problem solving part. He asked 6 questions on Problem solving. this took me around 30 mins to solve. I'll mention those problems in the below section. And he started asking me about tree's implementation. I answered him the theoretical part for the questions asked. and furtherly he asked me 6-7 SQL queries which took me around 20mins I remember. And from there he started asking questions about CN and OS. As I don't know about them- I replied Like i didn't have much Knowledge In these Sessions but I have Learned Some new technologies that are trending in the market. So, the key point for every Interview is like- we need not to be know everything it is up to us to in which area we are having interest and finally you should be able to show that you are expert in that and one more thing- Any job role is not expecting to be good at only one area of tech- So you should be able to convince the Interviewer that you are capable of understanding, learning new tech and to be have good team working skills.

  • Q1. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next pointer points back to a previous node.

    • Use Floyd's Tortoise and Hare algorithm to detect a cycle in O(N) time complexity and O(1) space complexity.

    • Start with two pointers, slow and fast, moving at different speeds. If they meet at some point, there is a cycle.

    • If the fast pointer reaches the end of the list (null), there is no cycle.

    • Check if the n...

  • Answered by AI
  • Q2. 

    Merge Sort Linked List Problem Statement

    You are given a singly linked list of integers. Your task is to sort the linked list using the merge sort algorithm.

    Explanation:

    Merge Sort is a divide and conq...

  • Ans. 

    Implement merge sort algorithm to sort a singly linked list of integers.

    • Divide the linked list into two halves using slow and fast pointers.

    • Recursively sort the two halves.

    • Merge the sorted halves using a merge function.

    • Handle the base case of empty or single node list.

    • Ensure the termination of the linked list with -1 at the end.

    • Example: For input 3 1 2 -1, output should be 1 2 3 -1.

  • Answered by AI
  • Q3. 

    Matrix Symmetry Check Problem Statement

    You are provided with a square matrix. Your task is to determine if the matrix is symmetric. Return true if it is symmetric, otherwise return false.

    A matrix is co...

  • Ans. 

    Determine if a square matrix is symmetric by checking if its transpose is equal to itself.

    • Iterate through the matrix and compare each element with its corresponding element in the transpose

    • If any pair of elements are not equal, return false immediately

    • If all pairs are equal, return true at the end

  • Answered by AI
  • Q4. 

    Spiral Matrix Problem Statement

    You are given a N x M matrix of integers. Your task is to return the spiral path of the matrix elements.

    Input

    The first line contains an integer 'T' which denotes the nu...
  • Ans. 

    The task is to return the spiral path of elements in a given matrix.

    • Iterate through the matrix in a spiral path by adjusting the boundaries at each step.

    • Keep track of the direction of traversal (right, down, left, up) to cover all elements.

    • Handle edge cases like when the matrix is a single row or column.

    • Implement a function that takes the matrix dimensions and elements as input and returns the spiral path.

  • Answered by AI
  • Q5. 

    Height of Binary Tree

    You are provided with the Inorder and Level Order traversals of a Binary Tree composed of integers. Your goal is to determine the height of this Binary Tree without actually construc...

  • Ans. 

    Find the height of a Binary Tree given its Inorder and Level Order traversals without constructing it.

    • Use the properties of Inorder and Level Order traversals to determine the height of the Binary Tree.

    • The height of a Binary Tree is the number of edges on the longest path from the root to a leaf node.

    • Consider edge cases like a single node tree or empty tree while calculating the height.

  • Answered by AI
Round 2 - HR 

Round duration - 45 minutes
Round difficulty - Medium

In this round Company Director for India team and HR has joined.
I started with my Introduction and he has asked what I know about the Company. I started saying everything from google and Wikipedia and from their official site. As this is a off campus recruitment he started explaining about the company what they do and the job role I have applied for. He said that the job was very challenging one and we'll be closely dealing with clients and meeting their expectations is quite challenging for the role. and then he started asking some real HR questions. for which I have answered in a cool way

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BengaluruEligibility criteriaBachelor’s degree in Engineering or a relevant fieldSymphony Talent, LLC interview preparation:Topics to prepare for the interview - Java, DBMS, SQL, HTML, CSS, JS, Standards and FrameWorks of JSP, Maven, Junit, Log4j, Collections.Time required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : Basics of technology you know and work proof ( can be projects or events you have conducted ) for that particular technology is must.
Tip 2 : Even if you are not good at a particular technology, try to be best at some other technology.
Tip 3 : Never show of your weakness. and never in technology. There must be some, be you good at a particular thing. so find it out and become expertise in that.

Application resume tips for other job seekers

Tip 1 : Hide some interesting facts about you in the resume, So that you can impress the recruiter during the interview.
Tip 2 : Don't try online resumes, Instead you can make your own resume in MS Word to stand out from others. For me it took 2-3 hours to learn making resume in word and to complete it.

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview questions from similar companies

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

I appeared for an interview before Jan 2024.

Round 1 - Technical 

(1 Question)

  • Q1. What is your basic knowledge of Web Forms, ASP.NET, .NET Core, and SQL Server?
  • Ans. 

    I have a strong understanding of Web Forms, ASP.NET, .NET Core, and SQL Server.

    • Proficient in creating web forms using ASP.NET

    • Experience with .NET Core for building modern web applications

    • Skilled in working with SQL Server for database management

    • Knowledge of integrating ASP.NET with SQL Server for data-driven applications

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Fundamental knowledge of Webform, .NET, and SQL Server.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Have you read the job description
  • Q2. What you know about Vision India Services Pvt Ltd and Why do you wish to join us
  • Ans. 

    Vision India Services Pvt Ltd is a leading software development company known for its innovative solutions and client satisfaction.

    • Vision India Services Pvt Ltd is known for its expertise in software development and IT services

    • The company has a strong reputation for delivering high-quality solutions to clients

    • Vision India Services Pvt Ltd values employee growth and provides opportunities for career advancement

    • I wish to...

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. What did you like the best in Job Description
  • Ans. 

    I enjoyed the opportunity to work on cutting-edge technologies and collaborate with a talented team.

    • Exciting projects using the latest technologies

    • Collaboration with a talented team

    • Opportunity for professional growth and learning

  • Answered by AI
  • Q2. Get me 2 best reason we should hire you
  • Ans. 

    I have a strong technical background and a proven track record of delivering high-quality software solutions.

    • Extensive experience in software development with proficiency in multiple programming languages such as Java, Python, and JavaScript

    • Strong problem-solving skills and ability to work well in a team environment, demonstrated by successful completion of complex projects on time and within budget

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Read JD description properly & prepare accordingly

I applied via Naukri.com and was interviewed in Dec 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. How many numbers consulting in this year?

Interview Preparation Tips

Interview preparation tips for other job seekers - Introduction your self. project. skills
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. How does dependency injection work in spring boot
  • Ans. 

    Dependency injection in Spring Boot allows objects to be injected into a class, reducing tight coupling and improving flexibility.

    • In Spring Boot, dependency injection is achieved through the use of @Autowired annotation.

    • Dependencies are injected into a class by Spring framework at runtime.

    • It helps in achieving loose coupling between classes and promotes easier testing.

    • Example: @Autowired private UserService userService

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is the role of @rest controller
  • Ans. 

    The @RestController annotation in Spring Boot is used to define a RESTful web service endpoint.

    • Used to create RESTful web services in Spring Boot

    • Maps HTTP requests to handler methods

    • Returns data in JSON or XML format

    • Example: @RestController public class UserController { @GetMapping("/users") public List<User> getAllUsers() { return userService.getAllUsers(); }

  • Answered by AI
Round 3 - Technical 

(1 Question)

  • Q1. Explain the use of @Request mapping
  • Ans. 

    The @RequestMapping annotation is used in Spring MVC to map web requests to specific handler methods.

    • Used to map HTTP requests to specific controller methods

    • Can specify the HTTP method, URL path, and other parameters

    • Helps in routing requests to the appropriate controller method

    • Example: @RequestMapping(value = "/hello", method = RequestMethod.GET)

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Try to reach your goals and achieve

I applied via Naukri.com and was interviewed in Dec 2018. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Last round with branch Head

Interview Preparation Tips

Round: Test
Experience: Apptitude Test

Round: Resume Shortlist
Experience: Telephonic interview with HR

General Tips: When I was applied for Naukri I got a call from Bangalore HR and short listed for an interview with Gurgaon branch Head
First of all given apptitude test and got clear and next round with branch head clear the interview then I called for hr said your next round again. I confused but called next day from hr told me you are selected a then I got offer letter on email and joined the organisation.
Thanks
Skills: Communication, Body Language, Problem Solving, Analytical Skills, Leadership, Presentation Skills, Time Management, Decision Making Skills
Duration: <1 week

I applied via Walk-in and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. About yourself, about yesterday

Interview Preparation Tips

Interview preparation tips for other job seekers - Please be ready with full of confidence and command in English.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Job Fair and was interviewed in Feb 2023. 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 

Scenario wise questionaries, they had give for the explained on.

Round 3 - HR 

(2 Questions)

  • Q1. What the education and assessment.
  • Ans. 

    Education and assessment are crucial for measuring knowledge and skills.

    • Education provides the foundation for learning and acquiring knowledge and skills.

    • Assessment measures the level of understanding and mastery of the subject matter.

    • Effective education and assessment methods can lead to better learning outcomes and improved performance.

    • Examples of assessment methods include exams, quizzes, projects, and presentations

  • Answered by AI
  • Q2. Tell me about your self?

Interview Preparation Tips

Interview preparation tips for other job seekers - Good one for interns. Process approaches are also fine and manage able

I applied via Company Website and was interviewed before Nov 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. Basic Hr question
  • Q2. 1. Introduce your self.
  • Q3. 2.Why you want to join vision india.
  • Q4. 3. What do you know about vision india.
  • Q5. Skills

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic about companies and introduction and basic hr
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Self Introduction
  • Q2. Operations round
  • Q3. About job profile

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well on job discription

Tell us how to improve this page.

Interview Questions from Similar Companies

NR Consulting Interview Questions
4.6
 • 20 Interviews
Ven Consulting Interview Questions
3.4
 • 19 Interviews
Hire Glocal Interview Questions
4.7
 • 17 Interviews
TELUS Health Interview Questions
4.0
 • 17 Interviews
Gi Group Interview Questions
3.8
 • 15 Interviews
View all

Symphony Talent Software Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Senior Associate
54 salaries
unlock blur

₹9.1 L/yr - ₹33 L/yr

Associate
33 salaries
unlock blur

₹5.3 L/yr - ₹16 L/yr

Associate Software Engineer
10 salaries
unlock blur

₹8 L/yr - ₹13 L/yr

Associate Engineer
10 salaries
unlock blur

₹8 L/yr - ₹10 L/yr

Senior Software Engineer
8 salaries
unlock blur

₹23 L/yr - ₹41 L/yr

Explore more salaries
Compare Symphony Talent with

Vision India Services

3.7
Compare

Creative Hands HR Consultancy

4.0
Compare

Gi Group

3.8
Compare

Ven Consulting

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