Upload Button Icon Add office photos
Engaged Employer

i

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

Preplaced Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Preplaced Product Designer Interview Questions and Answers

Updated 3 Oct 2023

Preplaced Product Designer Interview Experiences

1 interview found

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

I applied via LinkedIn and was interviewed in Sep 2023. 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 tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Explain your projects
  • Q2. Describe some issues in our existing website

Interview Preparation Tips

Interview preparation tips for other job seekers - Analyse their website before starting the interview.

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Phone Interview 

(1 Question)

  • Q1. What are your top three motivations?
Round 2 - Aptitude Test 

More on technical questions

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

Interview Questionnaire 

3 Questions

  • Q1. Explain why background and experience good fit for the job?
  • Q2. Tell us what has been best work achivement, good point imported to this career
  • Q3. Describe a difficult task you were face and addressed it?

Interview Preparation Tips

Interview preparation tips for other job seekers - First understand this questions and give answers in your own words.
Explain your answer which type of experience and chanllenges you faced in your job.

I appeared for an interview before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 360 minutes
Round difficulty - Medium

Basically TCS conduct its flagship event named as CODEVITA . And it offers Internship to prefinal (3rd )year students .

  • Q1. 

    Allocate Books Problem Statement

    Given an array of integers arr, where arr[i] represents the number of pages in the i-th book, and an integer m representing the number of students, allocate all the books ...

  • Ans. 

    Allocate books to students in a way that minimizes the maximum number of pages assigned to a student.

    • Iterate through possible allocations and calculate the maximum pages assigned to a student.

    • Find the minimum of these maximums to get the optimal allocation.

    • Return the minimum pages allocated in each test case, or -1 if not possible.

  • Answered by AI

Interview Preparation Tips

Eligibility criteriaMust be doing B.TECHTata Consultancy Services (TCS) interview preparation:Topics to prepare for the interview - Data Structure , Algorithms ,DBMS , OOPs ,OSTime required to prepare for the interview - 2 MonthsInterview preparation tips for other job seekers

Tip 1 : Good understanding of Data Structure and Algorithms 
Tip 2 : Be clear in your Core Subjects.
Tip 3 : Do at least 1 good Project .
Tip 4 : Be humble and speak truth .

Application resume tips for other job seekers

Tip 1 : Simple and Crisp .
Tip 2 : Do host your project and mention the link in the resume .
Tip 3 : Single Page

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via LinkedIn

Interview Questionnaire 

1 Question

  • Q1. Questions on basic html,css,javascript,angular

Interview Preparation Tips

Interview preparation tips for other job seekers - Go specifically through the requirements mentioned in job profile before attending the interview to keep interviewer and us in the same page.

Interview Questionnaire 

1 Question

  • Q1. What is web designing
  • Ans. 

    Web designing is the process of creating and designing websites that are visually appealing and user-friendly.

    • Involves planning, designing, and creating websites

    • Includes elements such as layout, color, graphics, and typography

    • Requires knowledge of programming languages such as HTML, CSS, and JavaScript

    • Incorporates user experience (UX) and user interface (UI) design principles

    • Examples include e-commerce sites, blogs, an

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be cool and deliver the matter what u know

Skills evaluated in this interview

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

I applied via Naukri.com

Round 1 - One-on-one 

(3 Questions)

  • Q1. How to I will start our work
  • Q2. What's my monthly sellery
  • Q3. Where are you sending me a work
Round 2 - Group Discussion 

Graphic design is to designes some posters some headlines were creating a best and beautiful designs

Round 3 - How to I started my work 

(2 Questions)

  • Q1. I hope my work you will be like
  • Q2. How and when I started my work
Round 4 - Technical 

(2 Questions)

  • Q1. What's you send me payment
  • Q2. What's my work timings
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Dec 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Asked about fundamentals of javascript and react
  • Q2. React lifecycle in functional components
  • Ans. 

    React lifecycle in functional components

    • useEffect hook replaces lifecycle methods

    • useEffect runs after every render by default

    • useEffect can be controlled by dependencies array

    • useEffect cleanup function can be used to clean up effects

    • useLayoutEffect hook runs synchronously after DOM mutations

  • Answered by AI
Round 3 - Coding Test 

Return numbers in array equal to sum

Interview Preparation Tips

Interview preparation tips for other job seekers - better understanding of javascript fundamentals and react

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Html, cas, java

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear voice and give some options

I appeared for an interview in Sep 2021.

Round 1 - Coding Test 

(2 Questions)

Round duration - 45 Minutes
Round difficulty - Easy

  • Q1. 

    Triplets with Given Sum Problem

    Given an array or list ARR consisting of N integers, your task is to identify all distinct triplets within the array that sum up to a specified number K.

    Explanation:

    A t...

  • Ans. 

    The task is to identify all distinct triplets within an array that sum up to a specified number.

    • Iterate through the array and use nested loops to find all possible triplets.

    • Check if the sum of the triplet equals the specified number.

    • Print the valid triplets or return -1 if no such triplet exists.

  • Answered by AI
  • Q2. 

    Find Magic Index in Sorted Array

    Given a sorted array A consisting of N integers, your task is to find the magic index in the given array, where the magic index is defined as an index i such that A[i] = i...

  • Ans. 

    Find the magic index in a sorted array where A[i] = i.

    • Iterate through the array and check if A[i] = i for each index i.

    • Since the array is sorted, you can optimize the search using binary search.

    • Return the index if found, else return -1.

  • Answered by AI
Round 2 - Video Call 

(3 Questions)

Round duration - 50 Minutes
Round difficulty - Hard

  • Q1. 

    Alien Dictionary Problem Statement

    You are provided with a sorted dictionary (by lexical order) in an alien language. Your task is to determine the character order of the alien language from this dictiona...

  • Ans. 

    Given a sorted alien dictionary in an array of strings, determine the character order of the alien language.

    • Iterate through the words in the dictionary to build a graph of character dependencies.

    • Perform a topological sort on the graph to determine the character order.

    • Return the character array representing the order of characters in the alien language.

  • Answered by AI
  • Q2. 

    Jumping Numbers Problem Statement

    Given a positive integer N, your goal is to find all the Jumping Numbers that are smaller than or equal to N.

    A Jumping Number is one where every adjacent digit has an a...

  • Ans. 

    Find all Jumping Numbers smaller than or equal to a given positive integer N.

    • Iterate through numbers from 0 to N and check if each number is a Jumping Number.

    • For each number, check if the absolute difference between adjacent digits is 1.

    • Include all single-digit numbers as Jumping Numbers.

    • Output the list of Jumping Numbers that are smaller than or equal to N.

  • Answered by AI
  • Q3. 

    Matching Prefix Problem Statement

    Given an integer N representing the number of strings in an array Arr composed of lowercase English alphabets, determine a string S of length N such that it can be used t...

  • Ans. 

    Given an array of strings, find the lexicographically smallest string that can be used as a prefix to minimize the total cost of deleting prefixes from the strings.

    • Iterate through the array to find the common prefix among all strings

    • Choose the lexicographically smallest common prefix

    • Delete the common prefix from each string in the array to minimize the total cost

  • Answered by AI
Round 3 - HR 

Round duration - 20 Minutes
Round difficulty - Easy

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Frontend Developer in NoidaEligibility criteriaNo critertiaInfo Edge India (Naukri.com) interview preparation:Topics to prepare for the interview - Data Structure, Algorithms, JavaScript, HTML/CSS, ReactTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Be consistent, practice regularly whatever you read/study.
Tip 2 : Apply what you learn through code.

Application resume tips for other job seekers

Tip 1 : Have some projects on your resume.
Tip 2 : If you have an internship or training explain it in a proper way like what are the techniques you learned during your training.

Final outcome of the interviewSelected

Skills evaluated in this interview

Preplaced Interview FAQs

How many rounds are there in Preplaced Product Designer interview?
Preplaced interview process usually has 2 rounds. The most common rounds in the Preplaced interview process are Resume Shortlist and One-on-one Round.

Tell us how to improve this page.

Preplaced Product Designer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.5k Interviews
Accenture Interview Questions
3.8
 • 8.2k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.7
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.9k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all
Preplaced Product Designer Salary
based on 4 salaries
₹7.2 L/yr - ₹9.2 L/yr
39% less than the average Product Designer Salary in India
View more details
Front end Developer
7 salaries
unlock blur

₹4.2 L/yr - ₹10 L/yr

Product Manager
4 salaries
unlock blur

₹2 L/yr - ₹9 L/yr

Product Designer
4 salaries
unlock blur

₹8 L/yr - ₹8 L/yr

Associate Product Manager
3 salaries
unlock blur

₹6 L/yr - ₹12 L/yr

Explore more salaries
Compare Preplaced with

Naukri

4.0
Compare

Foundit

3.4
Compare

Timesjobs.com

1.6
Compare

Indeed

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