Upload Button Icon Add office photos
Engaged Employer

i

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

Flipkart Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Flipkart Graphic Designer Interview Questions and Answers

Updated 4 Sep 2024

Flipkart Graphic Designer Interview Experiences

4 interviews found

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

I applied via Referral and was interviewed before Sep 2023. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. What are your strengths and weaknesses?
  • Ans. 

    My strengths include creativity, attention to detail, and strong communication skills. My weaknesses include a tendency to be a perfectionist and difficulty saying no.

    • Strengths: creativity, attention to detail, strong communication skills

    • Weaknesses: perfectionism, difficulty saying no

  • Answered by AI

Graphic Designer Interview Questions & Answers

user image Arpan Banerjee

posted on 11 Jun 2024

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. About my background and experience

Graphic Designer Interview Questions Asked at Other Companies

asked in Vistaprint
Q1. If assignment goes perfect and you are suitable for the job then ... read more
asked in Consulero
Q2. What is the difference between photoshop and illustrator?
asked in Consulero
Q3. Tell me about masks and clipping masks in photoshop?
Q4. How much you updated tobyour software and knowledge about your cr ... read more
asked in Consulero
Q5. What is the difference between vector and raster images?

I applied via Naukri.com and was interviewed in Aug 2022. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Flipkart ke bare mein kya jante Hain
  • Q2. Flipkart sabse pahle kahan open ho
  • Q3. An engineering manager of the team you are interviewing for will use several behavioral

Interview Preparation Tips

Interview preparation tips for other job seekers - These interview rounds assess a candidate's proficiency in problem-solving, data structures, and algorithms, including coding problems on arrays, lists, graphs, trees, dynamic programming, recursion, linked list, queues, trees, maps, etc.

I applied via Naukri.com and was interviewed in May 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Question are majorly based on to understand my knowledge and work experience

Interview Preparation Tips

Interview preparation tips for other job seekers - The whole process was too soomth... And organised.. had 3-4 rounds of discussion and a technical assemement and everything was pretty smooth from beginning to day of joining...

And to be honest this was best onboarding experience till now in work experience history.

Flipkart interview questions for designations

 UI/UX Designer

 (1)

 Product Designer

 (1)

Interview questions from similar companies

I applied via Company Website and was interviewed in Aug 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 - Aptitude Test 

Ankita Shankar surve. my education graphic design and fine art - drawing and painting.

Interview Preparation Tips

Topics to prepare for Amazon Graphic Designer interview:
  • Graphic Designing
Interview preparation tips for other job seekers - Adobe Photoshop, Adobe InDesign ,Adobe illustrator ,coral draw.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed in Aug 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Related java question
  • Q2. Coding questions
Round 2 - HR 

(2 Questions)

  • Q1. About salary discussion
  • Q2. What is your strength
  • Ans. 

    My strength lies in my ability to think creatively and problem-solve efficiently.

    • Strong visual communication skills

    • Proficient in Adobe Creative Suite

    • Ability to work under pressure and meet deadlines

    • Experience in creating visually appealing designs for various platforms

    • Strong attention to detail

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Good
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Company Website and was interviewed in Sep 2022. There were 2 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 Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. SAP related questions
  • Q2. SAP mm workings and projects orientation
  • Ans. 

    SAP MM is a module in SAP ERP that deals with procurement and inventory management.

    • SAP MM stands for Material Management

    • It includes functionalities such as purchasing, inventory management, and invoice verification

    • Projects oriented towards SAP MM can involve implementing the module in a company's ERP system, optimizing procurement processes, or improving inventory management

    • Examples of SAP MM projects include implement...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be specific and clear
Make sure the details you mentioned must be as per your CV

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

The online round was conducted on Hackerearth around 11:30 PM 
This round was an online coding plus MCQ round which includes 15 MCQ with positive 4 and negative 1 and 3 coding questions with two questions 10 marks and one was of 20 marks . MCQ were easy to medium and covers all the topic of Networks OOPS DBMS and CPP/JAVA 
In Coding section one 20 marks question was medium and two 10 marks were of easy level, like if you practice regularly you can crack two 10 marks means you can score 20 marks out of 40 in coding

  • Q1. 

    Reach the Destination Problem Statement

    You are given a source point (sx, sy) and a destination point (dx, dy). Determine if it is possible to reach the destination point using only the following valid mo...

  • Ans. 

    The problem involves determining if it is possible to reach a destination point from a source point using specified moves.

    • Iterate through each test case and check if destination is reachable from source using specified moves

    • Implement a recursive function to simulate the moves and check if destination is reached

    • Consider constraints to optimize the solution

    • Example: For input (1, 1, 3, 5), the output should be true as des

  • Answered by AI
  • Q2. 

    Ways To Make Coin Change

    Given an infinite supply of coins of varying denominations, determine the total number of ways to make change for a specified value using these coins. If it's not possible to make...

  • Ans. 

    The task is to find the total number of ways to make change for a specified value using given denominations.

    • Use dynamic programming to solve this problem efficiently.

    • Create a 1D array to store the number of ways to make change for each value from 0 to the target value.

    • Iterate through the denominations and update the array based on the current denomination.

    • The final answer will be the value at the target index of the ar

  • Answered by AI
  • Q3. 

    Min Jumps Problem Statement

    In Ninja town, represented as an N * M grid, people travel by jumping over buildings in the grid's cells. Santa is starting at cell (0, 0) and must deliver gifts to cell (N-1, ...

  • Ans. 

    Santa needs to find the quickest path to deliver gifts in Ninja town by jumping over buildings with least travel time.

    • Santa starts at (0, 0) and needs to reach (N-1, M-1) on Christmas Eve.

    • Santa can jump to (x+1, y+1), (x+1, y), or (x, y+1) from any cell (x, y).

    • Travel time between two buildings equals the absolute difference in their heights.

    • Find the quickest path with least travel time.

    • Example: For grid [[1, 3, 5], [2,

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 50 minutes
Round difficulty - Medium

It was a technical interview which was scheduled on 16th October 2020 at 10:00 AM 
This round mainly focus on your DSA, DBMS , OS Networking and coding skills like how optimised you can write code 
This round was conducted on Zoom 
Their were 2 interviewers and both of them were very calm and supportive

  • Q1. 

    Pythagorean Triplets Detection

    Determine if an array contains a Pythagorean triplet by checking whether there are three integers x, y, and z such that x2 + y2 = z2 within the array.

    Input:

    The first lin...
  • Ans. 

    Detect if an array contains a Pythagorean triplet by checking if there are three integers x, y, and z such that x^2 + y^2 = z^2.

    • Iterate through all possible triplets of numbers in the array and check if they form a Pythagorean triplet.

    • Use a nested loop to generate all possible combinations of three numbers from the array.

    • Check if the sum of squares of two numbers is equal to the square of the third number for each trip...

  • Answered by AI
  • Q2. 

    Cycle Detection in a Singly Linked List

    Determine if a given singly linked list of integers forms a cycle or not.

    A cycle in a linked list occurs when a node's next points back to a previous node in the ...

  • Ans. 

    Detect if a singly linked list forms a cycle by checking if a node's next pointer points back to a previous node.

    • Use Floyd's Tortoise and Hare algorithm to detect a cycle in the linked list.

    • Maintain two pointers, one moving at twice the speed of the other.

    • If there is a cycle, the two pointers will eventually meet.

    • If one of the pointers reaches the end of the list (null), there is no cycle.

  • Answered by AI
Round 3 - HR 

Round duration - 10 minutes
Round difficulty - Easy

This was the HR round conducted online through ZOOM on 16th October 2020 around 4:00 PM
There were two interviewers and both were quite good and frank 
This round mainly focus on basic resume questions and about yourself

Interview Preparation Tips

Eligibility criteria% in X and XII – 60% or 6 CGPA in Pursuing Degree – 60% or 6 CGPA , No Standing ArrearsTata Cliq interview preparation:Topics to prepare for the interview - Data Structures, Algorithms, Network and Communication, DBMS, SQL, OOPS, OS, JavaTime required to prepare for the interview - 6 MonthsInterview preparation tips for other job seekers

Tip 1 : Practice DSA and have a proper grasp on that as cramming wont help you because the questioned asked are different and you might get confused and rather you wont be able to answer at all 
Tip 2 : When you are preparing for the company be it off campus or on-campus always go through the job description and read it carefully what technologies they use because they might ask some question related to it 
Tip 3 : In my views if you are starting to code then start with GFG , for me it worked you will get all level question from basic and then you can move to platforms like LEETCODE , LEETFREE 
Tip 4 : Don't rush ever if you think you are not able to solve question , don't panic everyone is not able to do good but the main thing is to develop your thought process and its done by practicing more and more questions
Tip 5 : While solving don't try to look for answer at once, read the question understand it try to make a flow chart on paper and try to code it if after a long try if you are not able to solve then have a look at it and analyze where you went wrong .
Tip 6 : Always make a time table it will help you to prepare well and on time with every concept 
Tip 7 : Do a minimum of 2 to 3 projects that you know well because sometimes they may ask you to run in front of them and explain it so you should be confident enough to explain
Tip 8 : While giving a interview don't ever say a no to any question just try to answer what all you know related to it and reply in positive that you know that much related to this topic and don't try to fool them as they catch mistakes easily 
Tip 9 : Last but not least always keep a smile on your face and don't be nervous it will help you to show that you are confident enough and it will be interesting for both of you .

Application resume tips for other job seekers

Tip 1 : It should be a one page resume for freshers 
Tip 2 : Keep it crisp , don't include everything about yourself , keep those details for the interview
Tip 3 : Read the JD know about the company, its vision and the requisites for the position you are applying for and develop the resume with the things keeping in mind 
Tip 4 : You should be also clear about career objective because they may ask on your career objectives in HR or Managerial Round
Tip 5 : Organize the information while writing it , have a proper heading and all the extra information using bullet points and avoid writing paragraphs
Tip 6 : Keep the resume short and simple as the recruiter don't like the long and exaggerated resumes 
Tip 7 : While writing your work experiences try to write your accomplishment not your duties .
Tip 8 : Only include the projects that you know well otherwise who knows if they ask something that you know , it may give a bad impression and chances can be low

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Apr 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basic array question
Round 2 - Technical 

(1 Question)

  • Q1. Find the first circular tour that visits all petrol pumps
  • Ans. 

    The first circular tour that visits all petrol pumps can be found using the concept of a circular linked list.

    • Create a circular linked list with each node representing a petrol pump

    • Calculate the difference between petrol available at each pump and the distance to the next pump

    • Start from a pump where the sum of differences is positive and traverse the circular linked list until completing the tour

  • Answered by AI

Skills evaluated in this interview

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 90 minutes
Round difficulty - Easy

This was MCQ+Coding round.

  • Q1. How can you check if two strings are anagrams of each other?
  • Ans. 

    Check if two strings are anagrams by comparing the sorted versions of the strings.

    • Sort both strings and compare if they are equal.

    • Use a hashmap to store the frequency of characters in each string and compare the maps.

    • Ignore spaces and punctuation when comparing the strings.

  • Answered by AI
Round 2 - Face to Face 

Round duration - 90 minutes
Round difficulty - Easy

This was face to face interview round.

Round 3 - Face to Face 

Round duration - 90 minutes
Round difficulty - Easy

This was face to face interview round.

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute Of Technology, Silchar, Assam. I applied for the job as SDE - 1 in SiddharthnagarEligibility criteria6 CGPAAmazon interview preparation:Topics to prepare for the interview - Basic Computer Science backgroundTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Participate in live contests on websites like Codechef, Codeforces etc as much as possible.
Tip 2 : Practice previous interview questions from LeetCode, GeeksForGeeks.
Tip 3 : Revise Computer Science subjects like DBMS, OOPS thoroughly.

Application resume tips for other job seekers

Add projects and Internships if you have done any and add only those things which you really know.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

Flipkart Interview FAQs

How many rounds are there in Flipkart Graphic Designer interview?
Flipkart interview process usually has 1 rounds. The most common rounds in the Flipkart interview process are One-on-one Round and HR.
How to prepare for Flipkart Graphic Designer 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 Flipkart. The most common topics and skills that interviewers at Flipkart expect are Graphic Designing, Photoshop, Illustrator, Visual Design and Animation.
What are the top questions asked in Flipkart Graphic Designer interview?

Some of the top questions asked at the Flipkart Graphic Designer interview -

  1. An engineering manager of the team you are interviewing for will use several be...read more
  2. Question are majorly based on to understand my knowledge and work experie...read more
  3. Flipkart ke bare mein kya jante H...read more

Recently Viewed

INTERVIEWS

JustDial

No Interviews

INTERVIEWS

Netflix

No Interviews

INTERVIEWS

Flipkart

No Interviews

SALARIES

Petrofac

SALARIES

Accenture

SALARIES

McDermott International

SALARIES

Gujarat State Petronet

INTERVIEWS

Uber eats

No Interviews

INTERVIEWS

Amazon

No Interviews

INTERVIEWS

Amazon

No Interviews

Tell us how to improve this page.

Flipkart Graphic Designer Interview Process

based on 3 interviews

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

Amazon Interview Questions
4.1
 • 5k Interviews
BigBasket Interview Questions
3.9
 • 355 Interviews
PolicyBazaar Interview Questions
3.6
 • 345 Interviews
JustDial Interview Questions
3.5
 • 324 Interviews
Info Edge Interview Questions
3.9
 • 316 Interviews
Zomato Interview Questions
3.7
 • 308 Interviews
Myntra Interview Questions
4.0
 • 213 Interviews
Naukri Interview Questions
4.0
 • 185 Interviews
Uber Interview Questions
4.2
 • 149 Interviews
View all
Flipkart Graphic Designer Salary
based on 98 salaries
₹3 L/yr - ₹9.6 L/yr
35% more than the average Graphic Designer Salary in India
View more details

Flipkart Graphic Designer Reviews and Ratings

based on 12 reviews

4.1/5

Rating in categories

3.3

Skill development

3.3

Work-life balance

3.1

Salary

3.5

Job security

3.8

Company culture

2.4

Promotions

3.6

Work satisfaction

Explore 12 Reviews and Ratings
Senior Executive
2.7k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Executive
1.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Team Lead
1.8k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
1.5k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Executive
1.3k salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Flipkart with

Amazon

4.1
Compare

Myntra

4.0
Compare

Snapdeal

3.8
Compare

Meesho

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