Upload Button Icon Add office photos

Filter interviews by

Spinny Senior Engineer Interview Questions and Answers

Updated 28 Jul 2023

Spinny Senior Engineer Interview Experiences

1 interview found

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

I applied via Apna Jobs and was interviewed in Jun 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

Asking about background work experience

Round 2 - Technical 

(3 Questions)

  • Q1. Asking about work in which the candidate have well knowledge and well idea
  • Q2. Which types of work you will do without any help
  • Q3. Candidate will answer as they want and have knowledge

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell about event loop.
  • Ans. 

    Event loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking for and handling events.

    • Event loop is commonly used in JavaScript to handle asynchronous operations.

    • It allows for non-blocking I/O operations by delegating tasks to the operating system.

    • Event loop continuously checks the event queue for any pending events and executes them in a sequential manner.

    • Example: In ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Technical 

(3 Questions)

  • Q1. What is ACID in DBs ?
  • Ans. 

    ACID stands for Atomicity, Consistency, Isolation, and Durability in databases.

    • Atomicity ensures that all operations in a transaction are completed successfully or none at all.

    • Consistency ensures that the database remains in a consistent state before and after the transaction.

    • Isolation ensures that multiple transactions can be executed concurrently without affecting each other.

    • Durability ensures that once a transaction...

  • Answered by AI
  • Q2. What is the difference in checked and unchecked exceptions ?
  • Ans. 

    Checked exceptions are checked at compile time while unchecked exceptions are not checked at compile time.

    • Checked exceptions are subclasses of Exception class except RuntimeException and its subclasses.

    • Unchecked exceptions are subclasses of RuntimeException and Error classes.

    • Checked exceptions must be caught or declared in the method signature using 'throws' keyword.

    • Unchecked exceptions do not need to be caught or decl...

  • Answered by AI
  • Q3. Find the min difference between any two integers of 2 sorted list
  • Ans. 

    To find the minimum difference between any two integers of 2 sorted lists, iterate through both lists simultaneously and keep track of the minimum difference.

    • Iterate through both sorted lists simultaneously

    • Keep track of the minimum difference found so far

    • Update the minimum difference if a smaller difference is found

  • Answered by AI

Skills evaluated in this interview

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

I was interviewed in Dec 2024.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Walk through your professional journey?
  • Ans. 

    I started my career in marketing, then transitioned to project management, and eventually moved into senior leadership roles.

    • Started in marketing role at XYZ Company

    • Transitioned to project management at ABC Company

    • Promoted to senior leadership roles at DEF Company

    • Led cross-functional teams to successful project completion

  • Answered by AI
  • Q2. Why do you want to change?
  • Ans. 

    Seeking new challenges and opportunities for growth.

    • Looking for a new challenge to further develop my skills and knowledge.

    • Interested in exploring new opportunities for career advancement.

    • Seeking a more dynamic work environment to expand my professional horizons.

  • Answered by AI
Round 2 - Case Study 

Case study based on critical thinking, data analysis, decision making etc

Round 3 - Technical 

(2 Questions)

  • Q1. Explain your approach to solve the case study? And various other case study related question
  • Q2. Problem Solving Question
Round 4 - One-on-one 

(3 Questions)

  • Q1. Problem Solving Questions
  • Q2. Case Based Questions
  • Q3. RCA Questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Technology (IIT), Kanpur and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Aptitude only BASIC QUESTIONS

Round 2 - One-on-one 

(2 Questions)

  • Q1. Resume Projects
  • Q2. Resume Position of responsibiloity

Interview Preparation Tips

Topics to prepare for Meesho Senior Associate interview:
  • Root Cause Analysis
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. What is event loop, how it works.
  • Ans. 

    Event loop is a mechanism in programming that allows for asynchronous execution of code by continuously checking for and handling events.

    • Event loop is commonly used in JavaScript to handle asynchronous operations like setTimeout, setInterval, and AJAX requests.

    • It works by continuously checking the event queue for any pending events, executing them one by one, and then moving on to the next event.

    • Event loop helps in pre...

  • Answered by AI
  • Q2. Micro task queue and macro task queue.
  • Q3. Is node.js single threaded or multi-threaded, also discuss threadpool and it's usages.
  • Q4. Tell the order of output, among process, promise, setTimeout, fs, setInterval.
  • Ans. 

    The order of output is fs, process, setTimeout, setInterval, promise.

    • fs module is synchronous and will output first

    • process is next in line

    • setTimeout will be executed after process

    • setInterval will be executed after setTimeout

    • promise will be executed last

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. JavaScript usages compiler or interpreter.
  • Ans. 

    JavaScript is an interpreted language.

    • JavaScript is an interpreted language, meaning it is executed line by line at runtime.

    • There is no separate compilation step in JavaScript like in languages that use compilers.

    • Examples of interpreted languages include Python, Ruby, and PHP.

  • Answered by AI
  • Q2. Tell the output among various for loops using var, let and bind.
  • Ans. 

    Output comparison of for loops using var, let, and bind in JavaScript.

    • Using var: variable is function-scoped, may lead to unexpected behavior in loops.

    • Using let: variable is block-scoped, recommended for loop iterations.

    • Using bind: creates a new function with a specified 'this' value and initial arguments.

  • Answered by AI
  • Q3. A medium level dsa question on array, solved it using pre-sum.
  • Q4. Situation based question, on how to pick a suitable database.
Round 3 - Technical 

(4 Questions)

  • Q1. What do you do on daily basis, and how to decide a tech-stack on high level.
  • Ans. 

    I work on coding, debugging, testing, and collaborating with team members. Tech stack decisions are based on project requirements, scalability, performance, and team expertise.

    • Daily tasks include coding, debugging, testing, and collaborating with team members

    • Tech stack decisions are based on project requirements, scalability, performance, and team expertise

    • Consider factors like language compatibility, libraries/framewo...

  • Answered by AI
  • Q2. Design an online scalable, real-time document sharing application like google docs.
  • Ans. 

    Design a scalable, real-time document sharing app like Google Docs.

    • Use websockets for real-time collaboration

    • Implement version control to track changes

    • Utilize a distributed database for scalability

    • Include user authentication and access control

    • Support offline editing with automatic sync

  • Answered by AI
  • Q3. How to handle images also in the future.
  • Ans. 

    Utilize cloud storage for scalability, implement image compression techniques, and regularly update image processing libraries.

    • Utilize cloud storage for scalability

    • Implement image compression techniques

    • Regularly update image processing libraries

  • Answered by AI
  • Q4. Any other way to solve the problem, of high I/O on same document to overcome throughput and conflicts.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Questions were crayon box ,the bot and the game and happy neighbourhood for 90 mins

Round 2 - Technical 

(2 Questions)

  • Q1. Array basics was asked
  • Q2. Segment tree,prefix sum
Round 3 - Technical 

(1 Question)

  • Q1. Low level design was asked
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Introduce yourself
  • Ans. 

    Experienced Senior Executive with a proven track record in leading teams and driving business growth.

    • Over 10 years of experience in senior leadership roles

    • Successfully implemented cost-saving initiatives resulting in 20% increase in profitability

    • Strong communication and negotiation skills

    • Led cross-functional teams to achieve company goals

  • Answered by AI
  • Q2. What do you know about blinkit ?
  • Ans. 

    Blinkit is an Indian e-commerce platform that offers a wide range of products including groceries, electronics, fashion, and more.

    • Indian e-commerce platform

    • Offers groceries, electronics, fashion, and more

    • Provides delivery services

    • Competes with other e-commerce giants like Amazon and Flipkart

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Approached by Company and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Coding Test 

SQL - Coding test with Excel

Interview Preparation Tips

Topics to prepare for Myntra Senior Analyst interview:
  • SQL
  • Excel
  • Python
Interview preparation tips for other job seekers - -- Write structured code and be patient and clear
-- Ask follow up questions
-- If you dont know the optimized solution try to give atleast another solution
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Mar 2024.

Round 1 - Assignment 

I have met good experience

Round 2 - One-on-one 

(5 Questions)

  • Q1. What is your qualification?
  • Ans. I am M.A ,B.Ed
  • Answered Anonymously
  • Q2. How many years you have teaching experience?
  • Ans. 24 years teaching experience.
  • Answered Anonymously
  • Q3. Do you want job?
  • Q4. Where do you live?
  • Q5. When will join your job?
  • Ans. İmmediatiely
  • Answered Anonymously

Interview Preparation Tips

Interview preparation tips for other job seekers - If candidates are giving the good interview then you selected that person.

Spinny Interview FAQs

How many rounds are there in Spinny Senior Engineer interview?
Spinny interview process usually has 3 rounds. The most common rounds in the Spinny interview process are Resume Shortlist, Aptitude Test and Technical.

Tell us how to improve this page.

Spinny Senior Engineer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Swiggy Interview Questions
3.8
 • 426 Interviews
Udaan Interview Questions
4.0
 • 335 Interviews
Meesho Interview Questions
3.7
 • 328 Interviews
CARS24 Interview Questions
3.6
 • 321 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Blinkit Interview Questions
3.7
 • 177 Interviews
BlackBuck Interview Questions
3.8
 • 172 Interviews
FirstCry Interview Questions
3.7
 • 163 Interviews
Tata 1mg Interview Questions
3.6
 • 144 Interviews
Paisabazaar.com Interview Questions
3.5
 • 138 Interviews
View all

Spinny Senior Engineer Reviews and Ratings

based on 1 review

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Operations Analyst
479 salaries
unlock blur

₹2.2 L/yr - ₹6.5 L/yr

Relationship Manager
246 salaries
unlock blur

₹2.7 L/yr - ₹5.1 L/yr

Team Lead
189 salaries
unlock blur

₹3.3 L/yr - ₹8.5 L/yr

CAR Consultant
158 salaries
unlock blur

₹2.1 L/yr - ₹4.5 L/yr

Assistant Manager
147 salaries
unlock blur

₹3.6 L/yr - ₹11 L/yr

Explore more salaries
Compare Spinny with

Truebil

3.9
Compare

CarDekho

3.7
Compare

Carwale

3.4
Compare

Cartrade.com

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