Upload Button Icon Add office photos

Filter interviews by

Flixstock Interview Questions and Answers

Updated 26 Sep 2024

Flixstock Interview Experiences

Popular Designations

3 interviews found

Team Manager Interview Questions & Answers

user image Anonymous

posted on 16 Jun 2023

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

I applied via LinkedIn and was interviewed before Jun 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 tips
Round 2 - HR 

(2 Questions)

  • Q1. The HR asks basic questions to judge your conversation skills.
  • Q2. The HR would ask you reasons for leaving the last organization.
Round 3 - One-on-one 

(4 Questions)

  • Q1. Round with Business Head
  • Q2. Question 1 - How good are you with Photoshop?
  • Q3. Question 2 - Drape a test image.
  • Ans. 

    Draping a test image involves overlaying a sample image over a designated area for testing purposes.

    • Select a test image to drape over the designated area

    • Ensure the test image covers the area completely

    • Evaluate the test image for any discrepancies or issues

    • Adjust the test image as needed for accurate testing results

  • Answered by AI
  • Q4. Question 3 - Why should we hire you
Round 4 - One-on-one 

(3 Questions)

  • Q1. Final Round with the VP Sales
  • Q2. The VP would try to know the real reason for leaving your last organization or change
  • Q3. The next round would be about getting to know you (Kind of personality and aptitude test).

Interview Preparation Tips

Interview preparation tips for other job seekers - DON'T JOIN THIS COMPANY.

Team Manager Interview Questions asked at other Companies

Q1. To maintain SIEM solution which are the daily activities that you will perform?
View answer (4)

Team leader Image Edit Interview Questions & Answers

user image Anonymous

posted on 25 Oct 2023

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

I applied via Referral and was interviewed before Oct 2022. There was 1 interview round.

Round 1 - Assignment 

High quality Image editing test

Interview Preparation Tips

Interview preparation tips for other job seekers - don't join flixstock ever
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before May 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. Hr asked me about my work profile my past experience with the clients and the brands and my team management skills.
  • Ans. I had been working for Moksha earlier and told them about the brands name which i jad been working for like levis & peter england. And in the absence of team leader i have got the opportunity to handle the team and to deal with the stakeholders to filter the requirements for the projects.
  • Answered Anonymously
Round 3 - Technical 

(1 Question)

  • Q1. The knowledge of softwares and how i used them to implement my idea.

Interview Preparation Tips

Interview preparation tips for other job seekers - Be cleared and specific with your work and present them with your idea of how you would help them to increase the revenue model for their company.

Senior Quality Analyst Interview Questions asked at other Companies

Q1. - Difference Between Verification and Vakudation -Difference between Microprocessor and Microcontroller -Test levels - Difference between Smoke and Regression - Who does Verification of software and Validation of Software - If a functionali... read more
View answer (1)

Jobs at Flixstock

View all

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Technical 

(1 Question)

  • Q1. Sharing my Interview experience "Amol Ruikar" was the interviewer for me I was his LinkedIn Profile and I was Surprised, this kind of senior person gave wrong comments about my interview to HR. My Inte...
Interview experience
3
Average
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Synchronization
  • Q2. Design patterns
Round 2 - Technical 

(2 Questions)

  • Q1. Actions to perform to improve application performance
  • Q2. Hibernate questions, spring boot annotations

Interview Preparation Tips

Interview preparation tips for other job seekers - round 1 was easy - intermediate however round 2 was quite tough , they asked counter questions so be ready, need in depth knowledge in java , Spring Boot , Hibernate

Software Technologies Interview Questions & Answers

Signzy Technologies user image Anonymous

posted on 3 Jan 2025

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. ACID Properties
  • Ans. 

    ACID properties are a set of properties that guarantee reliable and consistent transactions in a database system.

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

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

    • Isolation ensures that the concurrent execution of transactions results in a system state that would be obtai...

  • Answered by AI
  • Q2. What are Idempotent HTTP Requests?
  • Ans. 

    Idempotent HTTP requests are requests that can be repeated multiple times without changing the result beyond the initial request.

    • Idempotent requests have the same outcome no matter how many times they are executed.

    • GET, PUT, and DELETE HTTP methods are typically idempotent.

    • POST requests are not idempotent as they can create new resources with each execution.

  • Answered by AI
  • Q3. Questions regarding your project, and how did you learn from the projects and tasks assigned to you?
  • Q4. System Design

Interview Preparation Tips

Topics to prepare for Signzy Technologies Software Technologies interview:
  • System DEsign
  • DSa
  • Algo
  • DBMS
  • Operating System
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 in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Let var const difference
  • Ans. 

    var, let, and const are all used to declare variables in JavaScript, but they have different scopes and mutability.

    • var is function-scoped and can be redeclared and reassigned

    • let is block-scoped and can be reassigned but not redeclared

    • const is block-scoped and cannot be reassigned or redeclared

  • Answered by AI
  • Q2. Polyfills of bind method
  • Ans. 

    Polyfills of bind method provide a way to use the bind method in older browsers that do not support it natively.

    • Polyfill code typically checks if the bind method is available and if not, it creates a new function that mimics the behavior of bind.

    • One common polyfill for the bind method is the following: Function.prototype.bind = Function.prototype.bind || function() { // polyfill code here };

    • Polyfills are often used to ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Make a search bar in React
  • Ans. 

    Create a search bar component in React for filtering data

    • Create a functional component for the search bar

    • Use state to store the search query

    • Implement a onChange event handler to update the search query

    • Filter the data based on the search query

  • Answered by AI
  • Q2. React js core concepts
Round 3 - HR 

(2 Questions)

  • Q1. How you structure your work
  • Ans. 

    I structure my work by breaking down tasks, setting priorities, creating timelines, and regularly reviewing progress.

    • Break down tasks into smaller, manageable chunks

    • Set priorities based on deadlines and importance

    • Create timelines to track progress and ensure timely completion

    • Regularly review progress and adjust plans as needed

  • Answered by AI
  • Q2. How you make a project from scratch
  • Ans. 

    To make a project from scratch, start by defining requirements, creating a plan, designing the architecture, implementing the code, testing, and deploying.

    • Define project requirements and goals

    • Create a project plan with timelines and milestones

    • Design the architecture of the project, including database schema and system components

    • Implement the code following best practices and coding standards

    • Test the project thoroughly ...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Find element whose count is more than n/2
  • Ans. 

    Use Boyer-Moore Majority Vote Algorithm to find element with count more than n/2.

    • Initialize candidate element and count

    • Iterate through array, updating count if same as candidate or decrementing if different

    • If count becomes 0, update candidate element

    • Iterate again to confirm candidate element count is more than n/2

  • Answered by AI
  • Q2. One puzzle based on distance and banana

Skills evaluated in this interview

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

(1 Question)

  • Q1. Explain the inter relation between a sales and marketing funnel
  • Ans. 

    Sales and marketing funnels are interconnected processes that guide potential customers from awareness to purchase.

    • Sales funnel focuses on converting leads into customers through direct sales tactics.

    • Marketing funnel focuses on generating awareness and interest in a product or service.

    • Marketing activities feed into the top of the sales funnel by attracting potential customers.

    • Sales activities further qualify and nurtur...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - DONOT JOIN THIS COMPANY NO MATTER HOW MUCH MONEY THEY PAY OR EVEN IF YOU ARE IN DESPERATE NEEDS. The only word I have for the CEO is a psycho. He would randonmly arrange meetings for later hours and night without prior notice and bash the team left right centre without any reason. Once in a meeting, he asked my teammate a question. He said, I want to see the report. R E P O R T. Do you know how to read and write? This was happening at 12:30 am with two of the female teammates still at office and nobody cared about how they will reach hoke so late. They have no vision, no work culture, the CEO will wake up one day ajd hire 50 people and the other day fire 80 people. Why? Just because he can. I was still fortunate enough to work with a good team of lesser people but I never slept peacefully knowing that they can fire me anyday. Tye gujju owner favors his zero skills gujju close knit team members and nobody gives any credit for your hardwork or anything at all. It is just an utter waste of time. Just don’t join!
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(3 Questions)

  • Q1. JavaScript OOP concept questions on constructors and classes
  • Q2. Output based questions based on Event Loop and constructors.
  • Q3. Difference between public, private, protected access modifiers.
  • Ans. 

    Public, private, and protected are access modifiers used in object-oriented programming to control the visibility of class members.

    • Public: accessible from outside the class

    • Private: only accessible within the class

    • Protected: accessible within the class and its subclasses

  • Answered by AI

Interview Preparation Tips

Topics to prepare for SalesHandy Node JS Developer interview:
  • Javascript
  • OOPS

Skills evaluated in this interview

Flixstock Interview FAQs

How many rounds are there in Flixstock interview?
Flixstock interview process usually has 3 rounds. The most common rounds in the Flixstock interview process are Resume Shortlist, HR and One-on-one Round.
How to prepare for Flixstock 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 Flixstock. The most common topics and skills that interviewers at Flixstock expect are Python, Javascript, Fashion Designing, HTML and Fashion Styling.
What are the top questions asked in Flixstock interview?

Some of the top questions asked at the Flixstock interview -

  1. Question 2 - Drape a test ima...read more
  2. The knowledge of softwares and how i used them to implement my id...read more
  3. The next round would be about getting to know you (Kind of personality and apti...read more

Tell us how to improve this page.

Flixstock Interview Process

based on 3 interviews

Interview experience

3.7
  
Good
View more

Interview Questions from Similar Companies

BigBasket Interview Questions
3.9
 • 355 Interviews
Lenskart Interview Questions
3.2
 • 300 Interviews
Myntra Interview Questions
4.0
 • 215 Interviews
Blinkit Interview Questions
3.7
 • 179 Interviews
FirstCry Interview Questions
3.7
 • 166 Interviews
Nykaa Interview Questions
3.5
 • 113 Interviews
AJIO Interview Questions
3.7
 • 64 Interviews
Pepperfry Interview Questions
3.3
 • 31 Interviews
Zivame.com Interview Questions
3.7
 • 9 Interviews
CURE India Interview Questions
4.7
 • 2 Interviews
View all

Flixstock Reviews and Ratings

based on 103 reviews

3.0/5

Rating in categories

3.1

Skill development

3.1

Work-life balance

3.0

Salary

2.9

Job security

3.0

Company culture

3.0

Promotions

3.0

Work satisfaction

Explore 103 Reviews and Ratings
Software Engineer

India

2-4 Yrs

Not Disclosed

Software Engineer

Gurgaon / Gurugram

2-4 Yrs

Not Disclosed

Python Developer

Gurgaon / Gurugram

2-4 Yrs

Not Disclosed

Explore more jobs
Image Editor
50 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Graphic Designer
13 salaries
unlock blur

₹2 L/yr - ₹3.2 L/yr

Team Lead
8 salaries
unlock blur

₹3.9 L/yr - ₹6.5 L/yr

Senior Image Editor
7 salaries
unlock blur

₹3 L/yr - ₹5.8 L/yr

Operations Manager
6 salaries
unlock blur

₹3.3 L/yr - ₹10 L/yr

Explore more salaries
Compare Flixstock with

Myntra

4.0
Compare

AJIO

3.7
Compare

Nykaa

3.5
Compare

Lenskart

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