Upload Button Icon Add office photos

Sonata Software

Compare button icon Compare button icon Compare

Filter interviews by

Sonata Software Interview Questions, Process, and Tips

Updated 20 Feb 2025

Top Sonata Software Interview Questions and Answers

View all 62 questions

Sonata Software Interview Experiences

Popular Designations

113 interviews found

Tester Interview Questions & Answers

user image Anonymous

posted on 18 Apr 2023

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

I applied via Naukri.com and was interviewed in Oct 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 - Technical 

(2 Questions)

  • Q1. 1.Test plan 2.Smoke test 3.Sanity testing 4.Functional testing
  • Q2. Regression testing

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well with real time examples

Tester Interview Questions asked at other Companies

Q1. What is Sdlc and stlc. What is rtm. Diff bet severity n priority. What is scrum. What is burn down chart. What is verification n validation. What is testplan, testcase n test scenario. How testplan looks like. Steps of sdlc elaborate.
View answer (1)

Network Engineer Interview Questions & Answers

user image PATHAN ASLAM KHAN

posted on 30 Jun 2022

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 

It is all about basic common questions like Mathematics,Reasoning,English etc

Round 3 - Technical 

(6 Questions)

  • Q1. Y is network is moreuseful to users?
  • Ans. 

    A network is more useful to users because it allows for easy communication, access to resources, and sharing of information.

    • Networks enable users to communicate with each other easily and quickly.

    • Users can access resources such as files, printers, and applications that are shared on the network.

    • Information can be easily shared and disseminated among users on the network.

    • Networks provide a platform for collaboration and...

  • Answered by AI
  • Q2. Is there any breach in the network?
  • Ans. 

    Yes, there is a breach in the network.

    • Unusual network traffic patterns

    • Unauthorized access to sensitive data

    • Unexpected system behavior or performance issues

    • Logs indicating suspicious activities

    • Security alerts or notifications

  • Answered by AI
  • Q3. How to use VPNs and why?
  • Ans. 

    VPNs are used to create secure and private connections over public networks.

    • VPNs encrypt data to ensure confidentiality and protect against unauthorized access.

    • VPNs allow remote access to private networks, enabling users to securely connect to their work network from anywhere.

    • VPNs can bypass geographical restrictions and censorship, providing access to restricted content.

    • VPNs can be used to enhance online privacy by ma...

  • Answered by AI
  • Q4. What does DNS mean?
  • Ans. 

    DNS stands for Domain Name System. It is a decentralized system that translates domain names into IP addresses.

    • DNS is responsible for resolving domain names to their corresponding IP addresses.

    • It allows users to access websites and other resources using easy-to-remember domain names instead of numerical IP addresses.

    • DNS operates through a hierarchical structure of servers, including authoritative DNS servers, recursive...

  • Answered by AI
  • Q5. Explain about OSI model?
  • Ans. 

    The OSI model is a conceptual framework that standardizes the functions of a communication system into seven layers.

    • The OSI model stands for Open Systems Interconnection model.

    • It was developed by the International Organization for Standardization (ISO) in 1984.

    • The model is divided into seven layers: Physical, Data Link, Network, Transport, Session, Presentation, and Application.

    • Each layer has specific functions and int...

  • Answered by AI
  • Q6. Ips and IDS mean?
  • Ans. 

    IPS stands for Intrusion Prevention System and IDS stands for Intrusion Detection System.

    • IPS is a security device that actively monitors network traffic to prevent malicious activities.

    • IDS is a security device that passively monitors network traffic to detect potential security breaches.

    • IPS can block or prevent malicious traffic from entering the network.

    • IDS can only detect and alert about potential security threats.

    • Bo...

  • Answered by AI
Round 4 - HR 

(3 Questions)

  • Q1. Y did u choose networking as carrer
  • Ans. 

    I chose networking as a career because of my passion for technology and problem-solving.

    • Passion for technology and problem-solving

    • Interest in understanding how computer networks function

    • Opportunity to work with cutting-edge technologies

    • Ability to troubleshoot and resolve network issues

    • Desire to contribute to the development of secure and efficient networks

  • Answered by AI
  • Q2. What is ur expected CTC
  • Ans. 

    I would expect a competitive salary based on my experience, skills, and the market standards.

    • I would like to discuss the salary range for this position based on the responsibilities and expectations.

    • Considering my qualifications and the industry standards, I anticipate a fair compensation package.

    • I am open to negotiation and would appreciate a salary that reflects my expertise and contributions.

    • I believe a mutually ben...

  • Answered by AI
  • Q3. Thankyou for joining tgis company

Skills evaluated in this interview

Top Sonata Software Network Engineer Interview Questions and Answers

Q1. Is there any breach in the network?
View answer (1)

Network Engineer Interview Questions asked at other Companies

Q1. TCP/IP layers, why is transport needed for communication? What is Subnet mask and how does it help in data communication. Why is Vlan needed? Based on what information does a switch and router send a packet or frame? Types of arp, What is p... read more
View answer (2)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jun 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 - One-on-one 

(2 Questions)

  • Q1. Design a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Nodes contain data and a reference to the next node

    • Can be singly linked (each node points to the next) or doubly linked (each node points to the next and previous)

    • Operations include insertion, deletion, traversal, and searching

    • Example: Node { data: 5, next: Node { data: 10, next: null } }

  • Answered by AI
  • Q2. Implement binary search
  • Ans. 

    Binary search is a divide and conquer algorithm that efficiently finds the target value in a sorted array.

    • Start by defining the low and high indices of the array.

    • Calculate the mid index as (low + high) / 2.

    • Compare the target value with the value at the mid index and adjust the low and high indices accordingly.

    • Repeat the process until the target value is found or the low index surpasses the high index.

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Sorting algorithm to use when 70% of numbers are sorted
  • Ans. 

    Use a modified version of Merge Sort or Tim Sort for efficient sorting when 70% of numbers are already sorted.

    • Consider using Merge Sort with optimizations for nearly sorted arrays, such as checking for already sorted subarrays before merging.

    • Tim Sort, a hybrid sorting algorithm derived from Merge Sort and Insertion Sort, is also a good choice for partially sorted arrays.

    • Both algorithms have a time complexity of O(n log...

  • Answered by AI
  • Q2. What is virtual destructor in c++
  • Ans. 

    A virtual destructor in C++ is used to ensure that the correct destructor is called when deleting an object through a base class pointer.

    • Virtual destructors are necessary when deleting an object through a pointer to a base class in order to properly call the derived class destructor.

    • Without a virtual destructor, only the base class destructor would be called, potentially leading to memory leaks or undefined behavior.

    • Ex...

  • Answered by AI
  • Q3. What is overflow in c++ ?
  • Ans. 

    Overflow in C++ occurs when a value is too large to be stored in the data type, leading to unexpected behavior.

    • Overflow can happen when adding two large numbers, causing the result to exceed the maximum value that can be stored in the data type.

    • For example, adding 2147483647 + 1 to an int data type in C++ will result in overflow, wrapping around to -2147483648.

    • To prevent overflow, it is important to check for potential...

  • Answered by AI

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (185)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(2 Questions)

  • Q1. Asked about design patterns
  • Q2. Asked angular questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Get good knowledge in oops, design patterns, angular concepts

Technical Lead 2 Interview Questions asked at other Companies

Q1. Different SDLC Models? which one is best? what is STLC
View answer (1)

Sonata Software interview questions for popular designations

 Team Lead

 (6)

 Consultant

 (5)

 Software Developer

 (5)

 Digital Engineer

 (4)

 Functional Consultant

 (4)

 Software Engineer

 (4)

 Senior Consultant

 (3)

 Senior Software Engineer

 (3)

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

I applied via Approached by Company and was interviewed before Dec 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Asked basic questions

Round 2 - HR 

(2 Questions)

  • Q1. Where do you see yourself in 10 years
  • Q2. Are you willing to relocate

Software Developer Interview Questions asked at other Companies

Q1. Maximum Subarray SumGiven an array of numbers, find the maximum sum of any contiguous subarray of the array. For example, given the array [34, -50, 42, 14, -5, 86], the maximum sum would be 137, since we would take elements 42, 14, -5, and ... read more
View answer (39)

Get interview-ready with Top Sonata Software Interview Questions

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Do not use an unprofessional email address such as cool_boy@email.com. It shows a lack of professionalism by the candidate.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Technical stuff and real time expalmes
  • Q2. Difference between sanity and Smoke test
  • Ans. 

    Sanity test is a narrow regression test while Smoke test is a broader test to check if the application is stable enough for further testing.

    • Sanity test is a quick test to check if the critical functionalities are working after a small change in the code.

    • Smoke test is a broader test to check if the application is stable enough for further testing.

    • Sanity test is usually performed by developers while Smoke test is perform...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.Concepts And Confidence
2. Communication
3. Flexible

Skills evaluated in this interview

Manual Testing Interview Questions asked at other Companies

Q1. A man have 3 things [grain,chicken and fox] and he has to cross a river and he can carry only one thing at a time. And there are some conditions: 1.He can not leave grain and chicken at a place. 2.He can not leave chicken and fox together. ... read more
View answer (3)

Jobs at Sonata Software

View all

Engineer Trainee Interview Questions & Answers

user image Haricharan Gatty

posted on 30 Jul 2022

I applied via Campus Placement and was interviewed in Jun 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be truthful in your resume. It is very easy to catch false or lies during the interview by asking basic questions.
View all tips
Round 2 - Aptitude Test 

Basic questions with questions related to percentages , Simple Interests, Speed and distances etc

Round 3 - Coding Test 

Basic coding questions you can write in any coding languages of your wish

Round 4 - Technical 

(3 Questions)

  • Q1. The last round was HR and technical together in which they will ask about your resume details
  • Q2. What you have mentioned in your resume and basic coding questions
  • Q3. About your final year project

Interview Preparation Tips

Topics to prepare for Sonata Software Engineer Trainee interview:
  • Basic coding
Interview preparation tips for other job seekers - Basic coding questions
Skills you had learnt in your project

Engineer Trainee Interview Questions asked at other Companies

Q1. If 10 people had a meeting and they shake hands only once with each of the others, then how many handshakes will be there in total ?
View answer (8)

Software Engineer Interview Questions & Answers

user image Hitesh pasumarthy

posted on 13 Dec 2022

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Be honest with your years of experience. All information you share will be verified at the time of joining.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. About the previous experience
  • Q2. Explained in detail about the past works taken

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident, be honest and make sure you give your 100 percent, be ready to be cooked

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (171)
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - HR 

(1 Question)

  • Q1. Basic information for exiting a job
  • Ans. Discussed were salary, job role, and daily work.
  • Answered by Pavan sc
Round 2 - Technical 

(1 Question)

  • Q1. Ticketing tool Incident and Service request. Toole for the ticketing Networking TCP/IP Basic Switch and router Sinariyous Vendor support Network-related Quotations.
Round 3 - Technical 

(1 Question)

  • Q1. Networking Routing and switching OSPF,EIGRP, RIP Color coding on RJ45 Cress and Strite.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic logical reasoning questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain any Riddle and solve.
  • Q2. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Just pass the Anti you will get placed.

Digital Engineer Interview Questions asked at other Companies

Q1. 1. Why is UiPath the most preferred RPA tool in industry?
View answer (1)

Sonata Software Interview FAQs

How many rounds are there in Sonata Software interview?
Sonata Software interview process usually has 2-3 rounds. The most common rounds in the Sonata Software interview process are Technical, Resume Shortlist and HR.
How to prepare for Sonata Software 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 Sonata Software. The most common topics and skills that interviewers at Sonata Software expect are SQL, AWS, Communication Skills, Java and Javascript.
What are the top questions asked in Sonata Software interview?

Some of the top questions asked at the Sonata Software interview -

  1. When to use abstract class and when should we use interfaces in Ja...read more
  2. What is your current CTC and what is your expected C...read more
  3. How to troubleshoot outlook issue and what are the steps will tak...read more
How long is the Sonata Software interview process?

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

Tell us how to improve this page.

Sonata Software Interview Process

based on 96 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k 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
Mphasis Interview Questions
3.4
 • 810 Interviews
CitiusTech Interview Questions
3.4
 • 268 Interviews
View all

Sonata Software Reviews and Ratings

based on 1.1k reviews

3.4/5

Rating in categories

3.4

Skill development

3.6

Work-life balance

3.1

Salary

3.3

Job security

3.3

Company culture

2.8

Promotions

3.2

Work satisfaction

Explore 1.1k Reviews and Ratings
D365 SCM Consultant with Advance Warehousing

Hyderabad / Secunderabad,

Chennai

+1

8-13 Yrs

Not Disclosed

D365 CE Technical Lead

Hyderabad / Secunderabad,

Chennai

+1

8-13 Yrs

Not Disclosed

Opportunity For D365 F&O Technical Support - SE

Hyderabad / Secunderabad,

Chennai

+1

4-9 Yrs

Not Disclosed

Explore more jobs
Consultant
649 salaries
unlock blur

₹6 L/yr - ₹22 L/yr

Senior System Analyst
576 salaries
unlock blur

₹3.9 L/yr - ₹16.1 L/yr

Software Engineer
401 salaries
unlock blur

₹3 L/yr - ₹12.8 L/yr

Technical Lead
312 salaries
unlock blur

₹10 L/yr - ₹32 L/yr

Digital Engineer
304 salaries
unlock blur

₹2.6 L/yr - ₹10.2 L/yr

Explore more salaries
Compare Sonata Software with

LTIMindtree

3.8
Compare

Persistent Systems

3.5
Compare

TCS

3.7
Compare

Wipro

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