Upload Button Icon Add office photos
Engaged Employer

i

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

Sony India Software Center Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Sony India Software Center Interview Questions, Process, and Tips

Updated 10 Sep 2024

Top Sony India Software Center Interview Questions and Answers

View all 29 questions

Sony India Software Center Interview Experiences

Popular Designations

32 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(1 Question)

  • Q1. Introduce yourself and the roles and responsibilities in your current project
  • Ans. 

    I am a Service Delivery Specialist with experience in managing projects and ensuring timely delivery of services.

    • Currently, I am responsible for overseeing the implementation of new service delivery processes in my project.

    • I work closely with cross-functional teams to identify areas for improvement and streamline service delivery workflows.

    • My role also involves monitoring key performance indicators to track the success...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well the topic before attending the Interview Go through the JD .

Service Delivery Specialist Interview Questions asked at other Companies

Q1. How to remove an empty directory
View answer (2)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Basic Programming concepts
  • Q2. Design patterns
  • Q3. Networking concepts
Round 2 - HR 

(1 Question)

  • Q1. Reason for leaving previous org and other typical HR questions

Technical Specialist Interview Questions asked at other Companies

Q1. What are the features of Solar wind which you are aware of?
View answer (4)
Sony India Software Center Interview Questions and Answers for Freshers
illustration image
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. Internal working of Hashmap
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and uses hashing to quickly retrieve values based on keys.

    • Hashmap uses an array to store key-value pairs.

    • Keys are hashed to determine the index where the value will be stored.

    • Collision handling is done by chaining or open addressing.

    • Retrieving a value involves hashing the key to find the index and then accessing the value at that index.

  • Answered by AI
  • Q2. Second largest element in array
  • Ans. 

    Find the second largest element in an array of strings.

    • Sort the array in descending order

    • Access the element at index 1 to get the second largest element

  • Answered by AI
  • Q3. Reverse linked list
Round 2 - Technical 

(3 Questions)

  • Q1. Sort 0s and 1s
  • Ans. 

    Sort an array of strings containing 0s and 1s

    • Iterate through the array and count the number of 0s and 1s

    • Create a new array with the sorted order of 0s and 1s

    • Return the sorted array

  • Answered by AI
  • Q2. Basic questions on springboot
  • Q3. Previous projects

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on basics

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 (196)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

10 basic questions in python. No need for DSA or anything.

Round 2 - Technical 

(2 Questions)

  • Q1. What is cnn network,dropout,weight initialization techniques, why relu ?
  • Ans. 

    CNN is a type of neural network commonly used for image recognition. Dropout is a regularization technique to prevent overfitting. Weight initialization techniques are methods to set initial weights in a neural network. ReLU is a popular activation function due to its ability to address the vanishing gradient problem.

    • CNN (Convolutional Neural Network) is commonly used for image recognition tasks due to its ability to c...

  • Answered by AI
  • Q2. A scenario based question to test thinking capabilities
Round 3 - HR 

(1 Question)

  • Q1. It is just a form filling session

Deep Learning Engineer Interview Questions asked at other Companies

Q1. Graph Coloring Problem You are given a graph with 'N' vertices numbered from '1' to 'N' and 'M' edges. Your task is to color this graph using two colors, such as blue and red, in a way that no two adjacent vertices (connected by an edge) sh... read more
View answer (1)

Sony India Software Center interview questions for popular designations

 Software Engineer

 (3)

 Deep Learning Engineer

 (2)

 Graduate Engineer

 (1)

 Technical Specialist

 (1)

 Team Manager

 (1)

 Business Analyst

 (1)

 Java Developer

 (1)

 Service Engineer

 (1)

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

I applied via Approached by Company and was interviewed in Mar 2024. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions about JS and React
Round 2 - One-on-one 

(1 Question)

  • Q1. Questions on my previous experience and scenario based questions

Interview Preparation Tips

Interview preparation tips for other job seekers - I was good experience

Junior Frontend Developer Interview Questions asked at other Companies

Q1. What all libraries you have used apart from styling library?
View answer (1)

Get interview-ready with Top Sony India Software Center Interview Questions

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

Java Developer Interview Questions asked at other Companies

Q1. Sort 0 and 1 Problem Statement Given an integer array ARR of size N containing only integers 0 and 1, implement a function to sort this array. The solution should scan the array only once without using any additional arrays. Input: The firs... read more
View answer (3)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. JSON Response iteration
  • Q2. Unique Elements in a given String
  • Ans. 

    Find unique elements in a given string

    • Iterate through each character in the string

    • Use a hash set to keep track of unique characters

    • If a character is already in the set, it is not unique

    • Return the set of unique characters as an array of strings

  • Answered by AI
  • Q3. Post method using rest assured
  • Ans. 

    The POST method in Rest Assured is used to send data to a server to create a new resource.

    • Use the given() method to set the base URI and path

    • Create a request specification using the request() method

    • Set the request body using the body() method

    • Specify the content type using the contentType() method

    • Send the POST request using the post() method

    • Validate the response using assertions

  • Answered by AI

Skills evaluated in this interview

Senior QA Engineer Interview Questions asked at other Companies

Q1. Combination Sum Problem Statement Given an array of distinct positive integers ARR and a non-negative integer 'B', find all unique combinations in the array where the sum is equal to 'B'. Numbers can be chosen multiple times from ARR. Ensur... read more
View answer (1)

Interview Questions & Answers

user image Anonymous

posted on 27 Jul 2024

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

(2 Questions)

  • Q1. What is objectness loss?
  • Ans. 

    Objectness loss is a loss function used in object detection models to penalize incorrect localization of objects.

    • Objectness loss helps in determining how well the model localizes objects in an image.

    • It penalizes the model for predicting bounding boxes that do not contain the object of interest.

    • Commonly used in models like YOLO (You Only Look Once) for object detection tasks.

  • Answered by AI
  • Q2. What is vanishing gradient means how to avoid that
  • Ans. 

    Vanishing gradient occurs when gradients become very small during backpropagation, leading to slow learning or stuck in local minima.

    • Vanishing gradient is a common issue in deep neural networks, especially in deep architectures like RNNs.

    • It occurs when the gradients of the loss function with respect to the weights become very small, making weight updates negligible.

    • To avoid vanishing gradient, one can use activation fu...

  • Answered by AI

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Aug 2023. 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 Resume tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Introdunction Round
  • Q2. Technical Round and HR Round

Interview Preparation Tips

Topics to prepare for Sony India Software Center Technical Support Trainee interview:
  • Core Java
  • HTML
  • CSS
  • Javascript
  • Python
Interview preparation tips for other job seekers - If you are seeking job firstly work on yourself like your english your dressing and your knowledge power.
Then you feel comfort and don't need to panic it's common but keep calm.
And for cracking the interview you just give time to yourself 5 to 8 dayss. Be honest there and speak confidently, nervousness is common they give to some time to prepare yourself.
All the best:)

Technical Support Trainee Interview Questions asked at other Companies

Q1. What is current?
View answer (1)
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Feb 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. How to create embedding from base and can we create text embedding from pretrained model
  • Ans. 

    Yes, embeddings can be created from base using techniques like Word2Vec, GloVe, or FastText. Text embeddings can also be created from pretrained models like BERT or Word2Vec.

    • Use techniques like Word2Vec, GloVe, or FastText to create embeddings from base data

    • Pretrained models like BERT or Word2Vec can be used to create text embeddings

    • Fine-tuning pretrained models can also be done to create custom text embeddings

  • Answered by AI

Skills evaluated in this interview

Deep Learning Engineer Interview Questions asked at other Companies

Q1. Graph Coloring Problem You are given a graph with 'N' vertices numbered from '1' to 'N' and 'M' edges. Your task is to color this graph using two colors, such as blue and red, in a way that no two adjacent vertices (connected by an edge) sh... read more
View answer (1)
Contribute & help others!
anonymous
You can choose to be anonymous

Sony India Software Center Interview FAQs

How many rounds are there in Sony India Software Center interview?
Sony India Software Center interview process usually has 2-3 rounds. The most common rounds in the Sony India Software Center interview process are Technical, HR and Resume Shortlist.
How to prepare for Sony India Software Center 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 Center. The most common topics and skills that interviewers at Sony India Software Center expect are Python, Analytical, Javascript, Linux and Debugging.
What are the top questions asked in Sony India Software Center interview?

Some of the top questions asked at the Sony India Software Center interview -

  1. How would you define a pointer in a read only mo...read more
  2. Write a java program to add the digits of a given numb...read more
  3. Write a java program to find tall pallindrome Strings from array of strin...read more
How long is the Sony India Software Center interview process?

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

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

ZEE5

No Interviews

INTERVIEWS

Evalueserve

No Interviews

SALARIES

LTIMindtree

REVIEWS

LTIMindtree

No Reviews

INTERVIEWS

Wells Fargo

No Interviews

SALARIES

State Street Corporation

INTERVIEWS

Aon

No Interviews

REVIEWS

State Street Corporation

No Reviews

Tell us how to improve this page.

Sony India Software Center Interview Process

based on 20 interviews

Interview experience

3.9
  
Good
View more

Interview Questions from Similar Companies

IBM Interview Questions
4.0
 • 2.3k Interviews
Oracle Interview Questions
3.7
 • 847 Interviews
Google Interview Questions
4.4
 • 824 Interviews
Cisco Interview Questions
4.1
 • 371 Interviews
SAP Interview Questions
4.2
 • 283 Interviews
Adobe Interview Questions
3.9
 • 234 Interviews
Intel Interview Questions
4.2
 • 214 Interviews
OPPO Interview Questions
4.0
 • 209 Interviews
View all

Sony India Software Center Reviews and Ratings

based on 195 reviews

3.8/5

Rating in categories

3.4

Skill development

3.8

Work-life balance

3.5

Salary

3.7

Job security

4.0

Company culture

3.2

Promotions

3.4

Work satisfaction

Explore 195 Reviews and Ratings
Senior Software Engineer
171 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
135 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Specialist
89 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Specialist
55 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
50 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Sony India Software Center with

Microsoft Corporation

4.0
Compare

IBM

4.0
Compare

Oracle

3.7
Compare

Adobe

3.9
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