Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Sony India Software Centre Team. If you also belong to the team, you can get access from here

Sony India Software Centre Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Sony India Software Centre Java Developer Interview Questions and Answers

Updated 10 Sep 2024

Sony India Software Centre Java Developer Interview Experiences

1 interview found

Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain project architecture
  • Ans. 

    Project architecture refers to the high-level structure of a software system, including components, relationships, and interactions.

    • Project architecture defines how different components of a software system interact with each other.

    • It includes the design decisions related to technologies, frameworks, databases, and communication protocols.

    • Common architectural patterns include MVC, microservices, and layered architectur...

  • Answered by AI

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Sony India Software Centre?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview in Jun 2016.

Interview Preparation Tips

Round: Test
Experience: We had to code in the given duration. The question was a simple dynamic programming one. But the catch was that we could test our solution only a given number of times.
Tips: Make sure you're strong in your coding basics and have enough self confidence.
Duration: 3 hours
Total Questions: 1

Round: Technical Interview
Experience: The tech round was basically on the resume. There were a few questions about the projects I had done.
Tips: Know about everything you've written in your resume. Don't write anything that you're not very sure of.

Round: HR Interview
Experience: Questions were about my work and achievements in college and future plans.
Tips: Talk freely and don't be nervous. Don't reveal any future study plans to the HR!

College Name: Nitk surathkal

Java Developer Interview Questions Asked at Other Companies

asked in Deloitte
Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size ... read more
Q2. Parent class has run() and walk(). Parent run() calls walk(). Chi ... read more
asked in Infosys
Q3. Which should be preferred between String and StringBuffer when th ... read more
Q4. How do you sort a list of students based on their first name?
asked in Cognizant
Q5. What array list and linkedlist difference,how hashmap internally ... read more

I appeared for an interview before Nov 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 150 Minutes
Round difficulty - Medium

Have to attempt 2 programming questions within 2:30 hours. Can take any time over the weekend. Relatively easy problems. Questions were long, but the solution code was small.

  • Q1. 

    The Skyline Problem

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette when viewed from a distance. Each building is ...

  • Ans. 

    Compute the skyline of given rectangular buildings in a 2D city, eliminating hidden lines and forming the outer contour of the silhouette.

    • Iterate through the buildings and create a list of critical points (x, y) where the height changes.

    • Sort the critical points based on x-coordinate and process them to generate the skyline.

    • Merge consecutive horizontal segments of equal height to ensure no duplicates in the output.

  • Answered by AI
  • Q2. 

    MergeSort Linked List Problem Statement

    You are given a Singly Linked List of integers. Your task is to sort the list using the 'Merge Sort' algorithm.

    Input:

    The input consists of a single line contain...
  • Ans. 

    Sort a Singly Linked List using Merge Sort algorithm.

    • Implement the Merge Sort algorithm for linked lists.

    • Divide the list into two halves, sort each half recursively, then merge them.

    • Use a fast and slow pointer to find the middle of the list for splitting.

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

    • Example: Input: 4 3 2 1 -1, Output: 1 2 3 4

  • Answered by AI
Round 2 - Coding Test 

(1 Question)

Round duration - 240 Minutes
Round difficulty - Medium

Had to solve 1 programming question in 4 hours. It was in the morning on a weekend. The environment was not so good. It was a small institute and got very crowded. The platform was also buggy. but the question was not difficult. Was able to solve it in just 1 hour and leave.

  • Q1. 

    Batch Photography Problem

    Alex has acquired a machine that can photocopy photos in batches of a minimum size 'K'. Given 'N' photos with resolutions represented in an integer array photos, the machine prod...

  • Ans. 

    Minimize maximum error by splitting photos into batches of size at least 'K'.

    • Sort the array of resolutions in ascending order.

    • Iterate through the array and calculate the error for each possible batch.

    • Return the minimum possible maximum error found.

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 30 Minutes
Round difficulty - Easy

It was in the afternoon. The interviewer basically asked me what technologies I have worked on. Checked my knowledge of those technologies with simple questions. Told me what I'll be working on if I get selected.

  • Q1. 

    Sort 0 1 2 Problem Statement

    Given an integer array arr of size 'N' containing only 0s, 1s, and 2s, write an algorithm to sort the array.

    Input:

    The first line contains an integer 'T' representing the n...
  • Ans. 

    Sort an integer array containing only 0s, 1s, and 2s in linear time complexity.

    • Use three pointers to keep track of the positions of 0s, 1s, and 2s in the array.

    • Iterate through the array and swap elements based on the values encountered.

    • Maintain left pointer for 0s, right pointer for 2s, and current pointer for traversal.

    • Example: If current element is 0, swap it with element at left pointer and increment both pointers.

    • E...

  • Answered by AI
Round 4 - Video Call 

(2 Questions)

Round duration - 90 Minutes
Round difficulty - Hard

It was also in the afternoon. The interviewer was the member of the team I'll be working on if I get selected. He asked me some basic questions about related technologies.
Gave me 2-3 DS & Algo problems and asked me to solve them.

  • Q1. 

    Array Sum Calculation

    Calculate the sum of all elements in an array of length N.

    Input:

    Line 1: An integer N indicating the size of the array.
    Line 2: N integers, the elements of the array, separated by ...
  • Ans. 

    Calculate the sum of all elements in an array of length N.

    • Iterate through the array and add each element to a running sum.

    • Return the final sum as the output.

  • Answered by AI
  • Q2. 

    Ninja and Alien Language Order Problem

    An alien dropped its dictionary while visiting Earth. The Ninja wants to determine the order of characters used in the alien language, based on the given list of wor...

  • Ans. 

    Determine the order of characters in an alien language based on a list of words.

    • Create a graph where each character is a node and there is a directed edge from character 'a' to character 'b' if 'a' comes before 'b' in any word.

    • Perform a topological sort on the graph to get the order of characters.

    • Return the order as a string in lexicographical order.

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaNo CriteriaSamsung R&D Institute interview preparation:Topics to prepare for the interview - Recursion, Backtracking, Dynamic Programming, Trees, ArrayTime required to prepare for the interview - 4 MonthsInterview preparation tips for other job seekers

Tip 1 : It's a Daily process. Not weekly, Not monthly. DAILY!
Tip 2 : Take part in Online Contests. HackerEarth is best for Contests posted by companies.
Tip 3 : Even after you have solved some problem, try to find a better solution for it online. Companies don't want a solution, they want optimized solution.

Application resume tips for other job seekers

Tip 1 : Modify resume for each job you are applying for. It should show why you are suitable for that particular job.
Tip 2 : Remove any extra things like interests and hobbies. No one cares.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I appeared for an interview in Apr 2025, where I was asked the following questions.

  • Q1. , what are your greatest accomplishmes
  • Ans. 

    I successfully led a team project that improved operational efficiency by 30%, showcasing my leadership and problem-solving skills.

    • Led a team of 5 in a project that streamlined processes, resulting in a 30% increase in efficiency.

    • Implemented a new software tool that reduced data entry time by 50%, allowing the team to focus on strategic tasks.

    • Received 'Employee of the Month' for outstanding contributions to a high-stak...

  • Answered by AI
  • Q2. Do you have questions
  • Q3. Whey should have you
  • Ans. 

    I bring a unique blend of skills, experience, and passion that aligns perfectly with your team's goals and values.

    • Proven track record: In my previous role, I increased sales by 30% through targeted marketing strategies.

    • Strong teamwork: I successfully led a project team of 5, fostering collaboration that resulted in a 15% reduction in project delivery time.

    • Adaptability: I thrive in fast-paced environments, quickly learn...

  • Answered by AI
  • Q4. Tel me about a time you failed
  • Ans. 

    I once missed a project deadline due to poor time management, which taught me valuable lessons about prioritization and communication.

    • Failed to deliver a project on time due to underestimating the workload.

    • Realized I didn't communicate effectively with my team about progress.

    • Learned the importance of setting realistic deadlines and checking in regularly.

    • Implemented a new project management tool to better track tasks an...

  • Answered by AI
  • Q5. Do you have a questions for us
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic Qustions JS
  • Ans. 

    JavaScript is a versatile programming language used for web development, enabling dynamic content and interactive features.

    • JavaScript is an interpreted language, meaning it runs directly in the browser without needing compilation.

    • It supports object-oriented, imperative, and functional programming styles.

    • Variables can be declared using var, let, or const, with let and const providing block scope.

    • Functions can be defined...

  • Answered by AI
  • Q2. Intermediate topics JS

Interview Preparation Tips

Interview preparation tips for other job seekers - All good very relevant questions asked based on project
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Campus Placement and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude questions

Round 2 - One-on-one 

(2 Questions)

  • Q1. Tell me about ur projects
  • Q2. Oops concept and theory based questions
Round 3 - HR 

(2 Questions)

  • Q1. Tell me about ur self
  • Q2. About location and relocate
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

2 Question leetcode medium difficulty

Round 2 - Technical 

(1 Question)

  • Q1. 1 coding 1 System design
  • Ans. 

    Implement a system to track inventory in a warehouse.

    • Use a database to store information about products, quantities, and locations.

    • Create APIs for adding, updating, and retrieving inventory data.

    • Implement authentication and authorization to control access to the system.

    • Consider implementing a front-end interface for users to interact with the system.

    • Include error handling and logging to ensure system reliability.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare leetcode well with SD
Are these interview questions helpful?
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was nice contents 3 questions

Round 2 - Coding Test 

It contents 2 dsa questions

Round 3 - Technical 

(2 Questions)

  • Q1. Project related
  • Q2. Dsa questions and oops concept

Interview Preparation Tips

Interview preparation tips for other job seekers - nice
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. What is your experience
  • Ans. 

    I have 5 years of experience in software development, specializing in web applications using Java and JavaScript.

    • 5 years of experience in software development

    • Specialize in web applications

    • Proficient in Java and JavaScript

  • Answered by AI
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Writing a program based on Array sorting
  • Ans. 

    Sorting an array of strings using a program

    • Use a sorting algorithm like bubble sort, selection sort, or merge sort

    • Compare strings using built-in comparison functions or custom comparison functions

    • Ensure the sorting algorithm is efficient for large arrays

  • Answered by AI
  • Q2. Basics of C & C++
Round 2 - Behavioral 

(1 Question)

  • Q1. Tell about yourself, passion and goals in life
  • Ans. 

    Passionate software developer with a goal to continuously learn and grow in the field.

    • Passionate about coding and problem-solving

    • Goal to stay updated with latest technologies and trends

    • Interested in developing innovative solutions for real-world problems

  • Answered by AI

Sony India Software Centre Interview FAQs

How many rounds are there in Sony India Software Centre Java Developer interview?
Sony India Software Centre interview process usually has 1 rounds. The most common rounds in the Sony India Software Centre interview process are Technical.
How to prepare for Sony India Software Centre Java Developer 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 Sony India Software Centre. The most common topics and skills that interviewers at Sony India Software Centre expect are Agile, Angularjs, Coding, Debugging and Full Stack.

Tell us how to improve this page.

Overall Interview Experience Rating

2/5

based on 1 interview experience

Interview Questions from Similar Companies

OPPO Interview Questions
4.0
 • 230 Interviews
LG Electronics Interview Questions
3.9
 • 230 Interviews
Blue Star Interview Questions
4.1
 • 178 Interviews
HP India Interview Questions
3.9
 • 153 Interviews
Voltas Interview Questions
4.0
 • 150 Interviews
Samsung Research Interview Questions
3.1
 • 140 Interviews
Bajaj Electricals Interview Questions
4.0
 • 134 Interviews
Whirlpool Interview Questions
3.9
 • 107 Interviews
View all
Senior Software Engineer
180 salaries
unlock blur

₹8.2 L/yr - ₹20.9 L/yr

Software Engineer
148 salaries
unlock blur

₹6.8 L/yr - ₹13.7 L/yr

Technical Specialist
110 salaries
unlock blur

₹18.8 L/yr - ₹32 L/yr

Senior Technical Specialist
62 salaries
unlock blur

₹25 L/yr - ₹42 L/yr

Technical Lead
51 salaries
unlock blur

₹16.4 L/yr - ₹29.7 L/yr

Explore more salaries
Compare Sony India Software Centre with

OPPO

4.0
Compare

LG Electronics

3.9
Compare

Bajaj Electricals

4.0
Compare

Voltas

4.0
Compare
write
Share an Interview