Upload Button Icon Add office photos

Filter interviews by

FreshersNow UI UX Developer Interview Questions and Answers

Updated 14 Feb 2024

FreshersNow UI UX Developer Interview Experiences

1 interview found

UI UX Developer Interview Questions & Answers

user image Madhankumar Reddy

posted on 14 Feb 2024

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

I applied via Company Website and was interviewed in Jan 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

I know UI/UX designer

Round 2 - HR 

(4 Questions)

  • Q1. What you know in figma
  • Ans. 

    Figma is a design tool used for creating UI/UX designs and prototypes.

    • Figma is a cloud-based design tool that allows collaboration among team members.

    • It provides a wide range of design features like vector editing, prototyping, and design components.

    • Figma supports real-time collaboration, making it easy for multiple designers to work on the same project simultaneously.

    • It allows designers to create interactive prototype...

  • Answered by AI
  • Q2. Self introduction
  • Q3. I completed my projects
  • Q4. Scrolling don’t know Reamining almost know
Round 3 - Group Discussion 

Give some topics and tell

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. Can u do video editing
  • Q2. Can do work on divince

Interview Preparation Tips

Interview preparation tips for other job seekers - Do not run for big company
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. API call and thunk
Round 2 - Technical 

(1 Question)

  • Q1. State and Props

UI UX Developer Interview Questions & Answers

TCS user image Md Jamal Uddin

posted on 25 Feb 2024

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

I applied via Naukri.com and was interviewed before Feb 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Design Accessibility
  • Q2. Design principles
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Walk-in and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Javascript array questions like palindrom and others with aptitude

Round 2 - Technical 

(4 Questions)

  • Q1. Skill related technical questions
  • Q2. How to share data in components react
  • Ans. 

    Data can be shared between components in React using props, context, or state management libraries like Redux.

    • Use props to pass data from parent to child components

    • Use context to share data across multiple components without passing props manually

    • Use state management libraries like Redux to manage global state and share data between components

  • Answered by AI
  • Q3. Prop drilling explain in react
  • Ans. 

    Prop drilling is the process of passing data through multiple levels of components in React.

    • Prop drilling occurs when a component needs to pass data to a deeply nested child component.

    • It can lead to code that is hard to maintain and understand.

    • One way to avoid prop drilling is by using Context API or Redux for state management.

  • Answered by AI
  • Q4. Redux flow explain
  • Ans. 

    Redux is a predictable state container for JavaScript apps.

    • Redux stores the entire state of an application in a single immutable object.

    • State changes are made by dispatching actions, which are plain JavaScript objects.

    • Reducers specify how the application's state changes in response to actions.

    • Redux flow: Action -> Reducer -> Store -> View

  • Answered by AI
Round 3 - Behavioral 

(1 Question)

  • Q1. Previous project discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear the basics of react or angular and redux also.

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. What are states and props in React?
  • Ans. 

    States and props are important concepts in React for managing and passing data between components.

    • States are mutable data that can be changed within a component

    • Props are read-only data passed from parent to child components

    • States are managed within a component using setState() method

    • Props are accessed using this.props in a component

  • Answered by AI
  • Q2. What is Virtual DOM
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM that allows for efficient updates and rendering in web applications.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing direct manipulation of the actual DOM.

    • When changes are made to the virtual DOM, a comparison is done with the actual DOM to determine the minimal updates needed for rendering.

    • This process helps reduce the numbe...

  • Answered by AI
  • Q3. Build a fetch and filter component
  • Ans. 

    A fetch and filter component for data retrieval and manipulation

    • Use fetch API to retrieve data from an API endpoint

    • Implement a filter function to manipulate the retrieved data based on user input

    • Display the filtered data in the UI

  • Answered by AI
Round 2 - Coding Test 

Javascript and React snippets

Interview Preparation Tips

Topics to prepare for LTIMindtree Senior Front end Developer interview:
  • Async
  • Javascript
  • React.Js

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is the closure in JS?
  • Ans. 

    Closure in JS is a function that retains access to variables from its parent scope even after the parent function has finished executing.

    • Closure allows functions to have access to variables from an outer function even after the outer function has finished executing.

    • It is created whenever a function is defined within another function, and the inner function has access to the outer function's variables.

    • Closures are commo...

  • Answered by AI
  • Q2. Explain about web worker ?
  • Ans. 

    Web workers allow running JavaScript code in the background without blocking the main thread.

    • Web workers are separate JavaScript files that run in the background.

    • They allow for multi-threading in web applications.

    • Web workers can perform tasks like heavy calculations or network requests without affecting the main UI thread.

    • Communication between web workers and the main thread is done through message passing.

  • Answered by AI
  • Q3. How to pass props in React
  • Ans. 

    Props in React are passed from parent components to child components to share data and functionality.

    • Props are passed as attributes in JSX when rendering a component

    • Props can be accessed in the child component using 'this.props'

    • Props are read-only and should not be modified directly

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - As a UI developer profile we should be proficient in HTML and CSS with JS knowledge is mandotory.

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Feb 2024. There were 3 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. What is react and it's advantage
  • Ans. 

    React is a JavaScript library for building user interfaces.

    • React allows for the creation of reusable UI components

    • It uses a virtual DOM for efficient rendering

    • React is declarative, making it easier to understand and debug code

  • Answered by AI
  • Q2. React life cycle
  • Q3. Questions related to Redux
  • Q4. Simple app using redux
  • Ans. 

    Creating a simple app using Redux for state management in a front end application.

    • Set up Redux store with reducers and actions

    • Connect components to Redux store using mapStateToProps and mapDispatchToProps

    • Dispatch actions to update state in Redux store

    • Use combineReducers to manage multiple reducers

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Previous project
  • Q2. Agile process followed in project
  • Ans. 

    Agile process involves iterative development, frequent collaboration, and adaptability to changes.

    • Daily stand-up meetings to discuss progress and roadblocks

    • Sprints for focused development and testing

    • Continuous feedback and iteration based on user input

    • Use of tools like Jira or Trello for project management

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Salary discussion
  • Q2. Work location discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Strong in basics and coding

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Group Discussion 

What is your name
From
Qualification
Family background
Hobbies
Weekness strength
Thanks you

Round 2 - Aptitude Test 

Mathematics,communication skills,

Round 3 - HR 

(5 Questions)

  • Q1. Self introduction
  • Q2. My name is mounika
  • Q3. I caming form narasaraopet,palnadu district
  • Q4. Caming to my familybackground we have 4 members My mother name is pravathi My father name is narasi reddy I have one sister she studying b.tech 3rd year My father is a farmer My mother is farmer
  • Q5. My hobbies are reading books, movies, playing kho kho no weakness My goal is to became a software engineer

Interview Preparation Tips

Topics to prepare for Amazon Web Developer interview:
  • Web developer,lyuxer security,
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed in Apr 2023. 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 

(4 Questions)

  • Q1. Based on html,css Javascript
  • Q2. Based on ReactJs
  • Q3. Javascript promise method
  • Ans. 

    JavaScript Promise is an object representing the eventual completion or failure of an asynchronous operation.

    • Promises are used to handle asynchronous operations such as fetching data from an API.

    • They have three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() and .catch() methods.

    • Promises can also be created using the Promise constructor.

  • Answered by AI
  • Q4. Javascript callback funtions
Round 3 - Aptitude Test 

Based on html, Css, Javascript and React-Js

Interview Preparation Tips

Topics to prepare for HCLTech Front end Developer interview:
  • HTML
  • CSS
  • Javascript
  • React.Js
Interview preparation tips for other job seekers - Hope i am a good Hardworker and good knowledage prsone give me one operchinitiy.

Skills evaluated in this interview

FreshersNow Interview FAQs

How many rounds are there in FreshersNow UI UX Developer interview?
FreshersNow interview process usually has 3 rounds. The most common rounds in the FreshersNow interview process are Group Discussion, Aptitude Test and HR.
What are the top questions asked in FreshersNow UI UX Developer interview?

Some of the top questions asked at the FreshersNow UI UX Developer interview -

  1. What you know in fi...read more
  2. Scrolling don’t know Reamining almost k...read more
  3. I completed my proje...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 FreshersNow interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.2k Interviews
Accenture Interview Questions
3.9
 • 8k Interviews
Infosys Interview Questions
3.7
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Cognizant Interview Questions
3.8
 • 5.5k Interviews
Amazon Interview Questions
4.1
 • 4.9k Interviews
Capgemini Interview Questions
3.8
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.7k Interviews
Genpact Interview Questions
3.9
 • 3k Interviews
View all
fresher
59 salaries
unlock blur

₹1.5 L/yr - ₹5.4 L/yr

Software Tester
4 salaries
unlock blur

₹3.4 L/yr - ₹4.8 L/yr

Software Engineer
3 salaries
unlock blur

₹3.3 L/yr - ₹4.2 L/yr

Software Developer
3 salaries
unlock blur

₹1.1 L/yr - ₹3.5 L/yr

Civil Site Engineer
3 salaries
unlock blur

₹3 L/yr - ₹3 L/yr

Explore more salaries
Compare FreshersNow with

Freshersworld.com

4.0
Compare

Foundit

3.6
Compare

Timesjobs.com

1.9
Compare

Indeed

4.0
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview