Upload Button Icon Add office photos

Spinny

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Spinny Intern Interview Questions and Answers

Updated 12 Nov 2024

Spinny Intern Interview Experiences

2 interviews found

Intern Interview Questions & Answers

user image Anonymous

posted on 6 May 2024

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

I applied via LinkedIn and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. About yourself, S&W
  • Q2. Impact PORs Impact Impact

Intern Interview Questions & Answers

user image Anonymous

posted on 12 Nov 2024

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

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

Round 1 - Assignment 

One backend Assignment

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

I applied via Naukri.com and was interviewed in Dec 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What if you found that there is an error in your code which tester missed and the project is going to live in morning. What will you do even they issue remain after trying to fix in extra hours(night).
  • Ans. 

    I would immediately inform the project manager and the testing team about the error and work collaboratively to find a solution.

    • Notify the project manager and testing team about the error

    • Collaborate with the testing team to understand the issue

    • Analyze the code to identify the root cause of the error

    • Work with the development team to fix the error as quickly as possible

    • Perform thorough testing to ensure the issue is reso...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay honest and completely open about work and working style.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Hard
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Technical 

(1 Question)

  • Q1. Complete Depend on Cv topics and Data structure.
Round 2 - Technical 

(1 Question)

  • Q1. Same as Round 1 but difficulty level in high
Round 3 - Technical 

(1 Question)

  • Q1. Round 3 will be based on previous round and mostly Stack centric.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Company, give a Try they offer a good life and work balance.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before Mar 2022. 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 

Technical questions based on dsa

Round 3 - Technical 

(2 Questions)

  • Q1. Questions on sql based on joins and cte
  • Q2. Questions on linq based on data transformation
Round 4 - Coding Test 

Questions based on high level programming and system architecture

Interview Preparation Tips

Interview preparation tips for other job seekers - Be clear on the basics of dsa,sql and. Net framework

I applied via AmbitionBox and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. About last role of mine
  • Q2. Asked about My family background
  • Q3. Salary discussion and negotiation to me
  • Q4. Initially Basics of PHP language.
  • Q5. Oops concepts should have prepared
  • Q6. Questions about laravel frame work
  • Q7. Diff between unique and primary key in sql
  • Ans. 

    Unique key allows null values, primary key does not.

    • Primary key is a unique identifier for a record in a table

    • Unique key allows null values, primary key does not

    • A table can have only one primary key, but multiple unique keys

    • Primary key is automatically indexed, unique key is not necessarily indexed

  • Answered by AI
  • Q8. Use of having clause in sql
  • Ans. 

    HAVING clause is used in SQL to filter data based on aggregate functions.

    • It is used with GROUP BY clause to filter data based on aggregate functions

    • It is used to filter data after grouping has been done

    • It is similar to WHERE clause but operates on grouped data

    • Example: SELECT department, AVG(salary) FROM employees GROUP BY department HAVING AVG(salary) > 50000;

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared about the framework and Basics of primary skilled programming language.

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Java core, spring boot
  • Q2. DBMS concepts

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on fundamentals, Revise core java concept
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 hours coding round, only 1 person out of 90 cleared

Round 2 - Technical 

(1 Question)

  • Q1. Asked loads of dsa, super technical questions

Interview Questionnaire 

2 Questions

  • Q1. Implement LRU Cache
  • Ans. 

    LRU Cache is a data structure that stores the most recently used items and discards the least recently used items.

    • Use a hash table to store key-value pairs

    • Use a doubly linked list to keep track of the order of items

    • When an item is accessed, move it to the front of the list

    • When the cache is full, remove the least recently used item from the back of the list

    • Lookup and insertion should be O(1) time complexity

  • Answered by AI
  • Q2. Implement 2 stacks in an array
  • Ans. 

    Implement 2 stacks in an array

    • Divide the array into two halves

    • Use top1 and top2 to keep track of top elements of stacks

    • Push and pop elements from respective halves

    • Check for overflow and underflow conditions

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed in Aug 2022. There were 3 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 

Questions from trees and linkedin

Round 3 - Technical 

(2 Questions)

  • Q1. Question on dsa and on oops
  • Q2. Reverse linked list with multiple approach
  • Ans. 

    Reverse a linked list using multiple approaches.

    • Iterative approach: Use three pointers to reverse the links between nodes.

    • Recursive approach: Recursively reverse the rest of the list and adjust the links.

    • Stack approach: Push all the nodes onto a stack and then pop them to create the reversed list.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Free aws d resfg rtrt bert ert treytr ret ert ert tret tre tryr tr rt try tr ytry try tr ytry try try t ty try tr try

Skills evaluated in this interview

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

Spinny Interview FAQs

How many rounds are there in Spinny Intern interview?
Spinny interview process usually has 1 rounds. The most common rounds in the Spinny interview process are One-on-one Round and Assignment.
How to prepare for Spinny Intern 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 Spinny. The most common topics and skills that interviewers at Spinny expect are Employee Counseling, HR Policies, Hiring, Java and Legal Issues.

Recently Viewed

JOBS

Salesforce

No Jobs

REVIEWS

MakeMyTrip

No Reviews

INTERVIEWS

Myntra

No Interviews

INTERVIEWS

Acesoft Labs

No Interviews

COMPANY BENEFITS

Sciative Solutions

No Benefits

JOBS

KONE

No Jobs

REVIEWS

Analytics Quotient

No Reviews

SALARIES

Salesforce

JOBS

MakeMyTrip

No Jobs

DESIGNATION

Tell us how to improve this page.

Spinny Intern Interview Process

based on 2 interviews

Interview experience

2.5
  
Poor
View more

Intern Interview Questions from Similar Companies

Myntra Intern Interview Questions
4.0
 • 2 Interviews
Droom Intern Interview Questions
3.8
 • 1 Interview
Udaan Intern Interview Questions
3.9
 • 1 Interview
View all

Spinny Intern Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

3.0

Skill development

3.0

Work-life balance

3.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Operations Analyst
500 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Relationship Manager
252 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
206 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

CAR Consultant
161 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
133 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Spinny with

Truebil

3.8
Compare

CarDekho Group

3.7
Compare

Carwale

3.4
Compare

Cartrade.com

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