Upload Button Icon Add office photos
Engaged Employer

i

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

Sportskeeda Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Sportskeeda Software Engineer Intern Interview Questions and Answers

Updated 7 Feb 2024

Sportskeeda Software Engineer Intern Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Implement DOM Manipulation
  • Ans. 

    DOM Manipulation is the process of dynamically changing the structure or content of a web page using JavaScript.

    • Use document.getElementById() to select an element by its ID

    • Use element.innerHTML to modify the HTML content of an element

    • Use element.style.property to change the CSS style of an element

    • Use element.addEventListener() to attach event handlers to elements

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Stipend Expected
  • Q2. When can you join

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied through third party platform. Overall, it is a great company to start your career.

Skills evaluated in this interview

Interview questions from similar companies

I applied via Naukri.com and was interviewed in May 2019. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. They were ask Questions from Reasoning and from database developer profile.

Interview Preparation Tips

Interview preparation tips for other job seekers - Never Loose Hope Guys.Trust yourself guys Just go and attend the interviews Confidently,Don't Think about the result and try to give interviews daily Don't think about the small companies or big companies every interview will give you confidence and knowledge for your next interviews if not cleared it will give many experiences.My Last Wording is :- Each and Everything day is a new opportunity for us to became a better version of ourselves.
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Coding Test 

The interview primarily centered around core Java concepts, including exception handling, Java streams, and collections. The coding question was related to binary search.

Interview Preparation Tips

Interview preparation tips for other job seekers - Ensure that you have a strong understanding of core Java concepts, particularly the features introduced in Java 8.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Initially first was HackerRank assessment then first round was of DSA. Asked 3 questions
1) Find max sum of substrings of length k
2) Find whether 2 strings are anagram or not
3) There is a Array and Find the max sum of subsequence. If you take element index at 1 in array then you are not suppose to take element index at 0 & 2 -> I solved it with Recursion then applied DP.

Cracked Round 1.

Round 2 - Assignment 

This was a machine coding round where I have to create 3 API of Cricbuzz feature.
1) Post API which will take Match Details and we have to create points table like we have in IPL
2) Get API to fetch Point table based on total Points
3) Get API to fetch last 3 matchs of a team and there results.

Round 3 - Assignment 

This was Code review round. Interviewer first asked about my project in my current company and multiple questions like hiw many team member and how many juniors u are handling. Then we move to code review and he checked extensibility of code by asking if I have to add year wise point table then How will you add then If there are many Tournament then how you will implement.

Interview Preparation Tips

Interview preparation tips for other job seekers - Write extensible code in machine coding round & create good project structure, DB design & Refactored code.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Mar 2023. There were 3 interview rounds.

Round 1 - Coding Test 

HACKERANK CODING TEST

Round 2 - One-on-one 

(1 Question)

  • Q1. BASIC STUFF ABOUT DBMS, OOPS, SYSTEM DESIGN
Round 3 - Assignment 

MACHINE LEARNING - HAD TO DESIGN ONE OF CRICBUZZ FEATURE

I applied via Company Website and was interviewed before Aug 2021. There were 5 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 

45 mins, Purely on DSA - Arrays, Strings, LinkedList, Trees

Round 3 - Technical 

(1 Question)

  • Q1. System design round with focus on scalability
Round 4 - Technical 

(1 Question)

  • Q1. Bar Raiser Round with focus on company culture and employee alignment
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion and culture fit round

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basics and have the curiosity to learn. Please go through the company culture website and align your answers based on the culture.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 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 Resume tips
Round 2 - One-on-one 

(1 Question)

  • Q1. Sql Query Sequence and basically asks the SqlServer Releted question and Webform Also.

Interview Preparation Tips

Topics to prepare for DISH TV Software Developer interview:
  • SQL
  • MVC
  • ASP.Net
  • Webform
  • API
Interview preparation tips for other job seekers - Most Of the people mistakes lack of confidence.this is the main factor to select or not.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Technical aspects about linked list,trees, stacks

Round 2 - Group Discussion 

Topic related to humanities

Software Engineer Interview Questions & Answers

DISH TV user image Ujjwal Srivastava

posted on 28 Dec 2024

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Case Study 

I was given a case study to write multiple outputs by lookinginto a program.

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Aug 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between string and string builder.
  • Ans. 

    String is immutable, while StringBuilder is mutable and more efficient for concatenating strings.

    • String is immutable, meaning once created, its value cannot be changed. StringBuilder is mutable, allowing for modifications without creating new objects.

    • String concatenation creates a new string object each time, while StringBuilder modifies the existing object directly.

    • StringBuilder is more efficient for concatenating mul...

  • Answered by AI
  • Q2. What is async and await
  • Ans. 

    Async and await are keywords in JavaScript used to work with asynchronous code.

    • Async is used to define a function as asynchronous, allowing it to run in the background without blocking the main thread.

    • Await is used to pause the execution of an async function until a Promise is settled, and then resumes the function with the resolved value.

    • Async/await is a more readable and cleaner way to write asynchronous code compare...

  • Answered by AI
Contribute & help others!
anonymous
You can choose to be anonymous

Sportskeeda Interview FAQs

How many rounds are there in Sportskeeda Software Engineer Intern interview?
Sportskeeda interview process usually has 2 rounds. The most common rounds in the Sportskeeda interview process are Technical and HR.
What are the top questions asked in Sportskeeda Software Engineer Intern interview?

Some of the top questions asked at the Sportskeeda Software Engineer Intern interview -

  1. Implement DOM Manipulat...read more
  2. Stipend Expec...read more

Recently Viewed

INTERVIEWS

Sportskeeda

No Interviews

SALARIES

TCS

SALARIES

TCS

INTERVIEWS

Welocalize

No Interviews

SALARIES

TCS

INTERVIEWS

Josh Talks

No Interviews

SALARIES

TCS

INTERVIEWS

Sportskeeda

No Interviews

SALARIES

TCS

SALARIES

TCS

Tell us how to improve this page.

Sportskeeda Software Engineer Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Tata Play Interview Questions
4.0
 • 70 Interviews
DISH TV Interview Questions
3.5
 • 59 Interviews
Hathway Interview Questions
3.5
 • 42 Interviews
Disney+ Hotstar Interview Questions
3.7
 • 36 Interviews
Gtpl Hathway Interview Questions
3.9
 • 24 Interviews
BookMyShow Interview Questions
4.0
 • 23 Interviews
YuppTV Interview Questions
3.5
 • 18 Interviews
View all
Content Writer
22 salaries
unlock blur

₹1.5 L/yr - ₹5.5 L/yr

SEO Analyst
21 salaries
unlock blur

₹4 L/yr - ₹7.2 L/yr

Product Manager
13 salaries
unlock blur

₹13.5 L/yr - ₹36 L/yr

Associate Product Manager
10 salaries
unlock blur

₹5.5 L/yr - ₹13 L/yr

Editor
7 salaries
unlock blur

₹3.8 L/yr - ₹6 L/yr

Explore more salaries
Compare Sportskeeda with

Cricbuzz

3.1
Compare

Dream Sports India

4.2
Compare

Star Sports

4.3
Compare

Disney+ Hotstar

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