Upload Button Icon Add office photos
Engaged Employer

i

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

Sony Verified Tick

Compare button icon Compare button icon Compare

Proud winner of ABECA 2024 - AmbitionBox Employee Choice Awards

zig zag pattern zig zag pattern

Filter interviews by

Clear (1)

Sony Intern Interview Questions and Answers

Updated 24 May 2024

Sony Intern Interview Experiences

2 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 24 May 2024

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

I applied via LinkedIn

Round 1 - Technical 

(1 Question)

  • Q1. Probability of bit error in a binary symmetric channel
  • Ans. 

    The probability of bit error in a binary symmetric channel can be calculated using the formula P = 1/2 * erfc(sqrt(Eb/N0)), where erfc is the complementary error function.

    • Probability of bit error in a binary symmetric channel is influenced by the signal-to-noise ratio (Eb/N0).

    • The error function erfc is used to calculate the probability of bit error.

    • The formula for calculating the probability of bit error is P = 1/2 * e

  • Answered by AI

Skills evaluated in this interview

Intern Interview Questions & Answers

user image Anonymous

posted on 24 Oct 2023

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

I applied via Referral and was interviewed in Apr 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 

(5 Questions)

  • Q1. What are your skills
  • Q2. What are your strengths
  • Q3. What are your weaknesses
  • Q4. Do you have any machine learning experience
  • Ans. 

    Yes, I have experience with machine learning through coursework and personal projects.

    • Completed coursework in machine learning algorithms

    • Developed a recommendation system using collaborative filtering

    • Utilized neural networks for image classification tasks

  • Answered by AI
  • Q5. Tell me about yourself

Skills evaluated in this interview

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. Case. There is a housing society “The wasteful society”, you coll ... read more
Q2. Which programming language you are comfortable with?
asked in Deloitte
Q3. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q4. Huffman Coding Challenge Given an array ARR of integers containin ... read more
asked in Accenture
Q5. A marketing strategy case. Client is a perfume seller in Jaipur. ... read more

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
-
Round 1 - Group Discussion 

Topic given you need to stand out

Round 2 - Case Study 

Case study given regarding marketing opportunity

Round 3 - One-on-one 

(1 Question)

  • Q1. Interview taken

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare and go for interview, practice is important
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

There were 4 sections and first one was quant, second one was logical, third was English and finally 3 coding questions in last section

Round 2 - Coding Test 

4 codes and 5 technical questions

Round 3 - One-on-one 

(3 Questions)

  • Q1. Explain multi threading
  • Ans. 

    Multi threading is the ability of a CPU to execute multiple threads concurrently.

    • Allows for parallel execution of tasks, improving performance

    • Each thread has its own stack and runs independently

    • Threads can communicate and synchronize using shared memory

    • Examples: running multiple tasks simultaneously in a web server, processing data in parallel

  • Answered by AI
  • Q2. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • It enables a single interface to be used for different data types.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q3. Diff b/w inner and outer joins
  • Ans. 

    Inner join returns only the rows that have matching values in both tables, while outer join returns all rows from both tables.

    • Inner join: returns rows with matching values in both tables

    • Outer join: returns all rows from both tables, with NULL values where there is no match

    • Example: Inner join - SELECT * FROM table1 INNER JOIN table2 ON table1.id = table2.id

    • Example: Outer join - SELECT * FROM table1 LEFT OUTER JOIN table

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Hitachi Intern interview:
  • Java
  • Web Technologies
  • Threads
  • OOPS
Interview preparation tips for other job seekers - Easy interview and all questions will be asked from your resume. Difficulty would be mainly depend on interviewer. Apart from technical few behavioral questions were asked.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Coding Test 

One questions, 3 hrs time

Round 2 - Technical 

(1 Question)

  • Q1. Related to DSA and graphs
Round 3 - HR 

(1 Question)

  • Q1. PI questions general

Intern Interview Questions & Answers

Samsung user image Pradeep Annem

posted on 13 Oct 2023

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

Trees, Graphs, 3 Questions in two hours

Round 3 - One-on-one 

(2 Questions)

  • Q1. Merge two sorted arrays
  • Ans. 

    Merge two sorted arrays into a single sorted array

    • Create a new array to store the merged result

    • Iterate through both arrays simultaneously and compare elements to add to the new array

    • Handle cases where one array is longer than the other

  • Answered by AI
  • Q2. Add a node to bst
  • Ans. 

    To add a node to a binary search tree (BST), compare the value of the new node with the current node and traverse left or right accordingly until a suitable spot is found.

    • Start at the root node

    • Compare the value of the new node with the current node

    • If the new node value is less than the current node, move to the left child node

    • If the new node value is greater than the current node, move to the right child node

    • Repeat the...

  • Answered by AI

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. Difference b/w bias and variance?
  • Ans. 

    Bias is the difference between the expected value of the model's predictions and the true values. Variance is the variability of the model's predictions for different training sets.

    • Bias is the underfitting of the model, where it is unable to capture the complexity of the data.

    • Variance is the overfitting of the model, where it is too complex and captures the noise in the data.

    • Bias can be reduced by increasing the comple...

  • Answered by AI
  • Q2. What are the different sorting technique?
  • Ans. 

    Sorting techniques are algorithms used to arrange data in a specific order.

    • Bubble Sort

    • Selection Sort

    • Insertion Sort

    • Merge Sort

    • Quick Sort

    • Heap Sort

    • Radix Sort

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well ....................

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
Less than 2 weeks
Result
-

I applied via Campus Placement and was interviewed before Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

The easy aptitude test was well-designed.

Round 2 - Group Discussion 

A group discussion on a specific topic.

Round 3 - Technical 

(1 Question)

  • Q1. Sql related questions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in May 2023. There were 4 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 - Coding Test 

MCQ questions of C language

Round 3 - Technical 

(3 Questions)

  • Q1. Tell me about yourself
  • Q2. All about the things that were added in the resume
  • Q3. I was asked to write a simple code
Round 4 - HR 

(3 Questions)

  • Q1. Tell me about yourself and your family background
  • Q2. What is your passion
  • Q3. Do you have any other offer
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Dsa is usrd and it is bad

Contribute & help others!
anonymous
You can choose to be anonymous

Sony Interview FAQs

How many rounds are there in Sony Intern interview?
Sony interview process usually has 1-2 rounds. The most common rounds in the Sony interview process are Resume Shortlist, One-on-one Round and Technical.
What are the top questions asked in Sony Intern interview?

Some of the top questions asked at the Sony Intern interview -

  1. Do you have any machine learning experie...read more
  2. Probability of bit error in a binary symmetric chan...read more

Recently Viewed

JOBS

Sony

No Jobs

INTERVIEWS

Sony

No Interviews

SALARIES

Exicom

SALARIES

Sony

INTERVIEWS

Okaya Power

No Interviews

INTERVIEWS

JCB

No Interviews

LIST OF COMPANIES

Tripjack

Overview

INTERVIEWS

BCD Travel

No Interviews

DESIGNATION

INTERVIEWS

Exicom

No Interviews

Tell us how to improve this page.

Sony Intern Interview Process

based on 2 interviews

Interview experience

4.5
  
Good
View more

Intern Interview Questions from Similar Companies

Samsung Intern Interview Questions
3.9
 • 8 Interviews
HARMAN Intern Interview Questions
3.7
 • 3 Interviews
OPPO Intern Interview Questions
4.0
 • 3 Interviews
Philips Intern Interview Questions
3.8
 • 3 Interviews
Signify Intern Interview Questions
3.5
 • 3 Interviews
Hitachi Intern Interview Questions
4.0
 • 2 Interviews
Daikin Intern Interview Questions
4.2
 • 2 Interviews
View all

Sony Intern Reviews and Ratings

based on 5 reviews

4.6/5

Rating in categories

4.6

Skill development

4.5

Work-life balance

4.0

Salary

4.6

Job security

4.5

Company culture

3.8

Promotions

4.5

Work satisfaction

Explore 5 Reviews and Ratings
Sales Executive
187 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Area Sales Manager
80 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
68 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Support Engineer
56 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
53 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Sony with

Samsung

3.9
Compare

LG Electronics

4.0
Compare

Panasonic Avionics Corporation

3.4
Compare

Toshiba

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