Upload Button Icon Add office photos
Engaged Employer

i

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

IBM Verified Tick

Compare button icon Compare button icon Compare
4.1

based on 21.3k Reviews

Filter interviews by

IBM UI UX Developer Interview Questions and Answers

Updated 15 May 2024

IBM UI UX Developer Interview Experiences

1 interview found

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

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

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
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
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 question 1 easy 2 medium dsa

Round 2 - Coding Test 

2 codes of dsa and mcq.

Round 3 - Technical 

(2 Questions)

  • Q1. Code paring round
  • Q2. Dsa question of graph
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Aug 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 - Assignment 

Kasineni venkata Sai Mukesh

Round 3 - One-on-one 

(5 Questions)

  • Q1. Create a frame by using python
  • Ans. 

    Creating a frame using Python involves using loops to print characters in a specific pattern.

    • Use nested loops to print characters in the desired pattern

    • Determine the dimensions of the frame (rows and columns)

    • Print characters based on the position in the loop

  • Answered by AI
  • Q2. Create a profile by using css and java script
  • Ans. 

    Create a profile using CSS and JavaScript

    • Use CSS to style the profile layout

    • Use JavaScript to add interactive elements like buttons or animations

    • Include a profile picture, name, bio, and contact information

    • Add hover effects or transitions for a polished look

  • Answered by AI
  • Q3. What are the key responsibilities of Web Developers?
  • Ans. 

    Key responsibilities of Web Developers include designing, coding, and maintaining websites, as well as collaborating with clients and team members.

    • Designing and developing websites using programming languages such as HTML, CSS, and JavaScript

    • Ensuring websites are responsive and optimized for various devices

    • Collaborating with clients to understand their requirements and provide solutions

    • Testing and debugging websites to...

  • Answered by AI
  • Q4. List the advantages of HTTP/2 over HTTP 1.1.
  • Ans. 

    HTTP/2 offers several advantages over HTTP 1.1, including improved performance and efficiency.

    • Multiplexing: HTTP/2 allows multiple requests and responses to be sent and received at the same time over a single connection, improving efficiency.

    • Header compression: HTTP/2 uses HPACK compression for headers, reducing overhead and improving performance.

    • Server push: HTTP/2 allows servers to push resources to the client before...

  • Answered by AI
  • Q5. What do you mean by ETag (Entity Tag) and how does it work?
  • Ans. 

    ETag is an HTTP header used for web caching to determine if a resource has changed.

    • ETag is a unique identifier assigned to a specific version of a resource on the web server.

    • When a client requests a resource, the server sends the ETag along with the resource.

    • The client can then use the ETag in subsequent requests to check if the resource has been modified.

    • If the ETag matches the current version of the resource on the s...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(3 Questions)

  • Q1. How to handle state in functional components.
  • Ans. 

    State in functional components can be managed using the useState hook in React.

    • Use the useState hook to declare state variables in functional components.

    • useState returns an array with the current state value and a function to update that value.

    • Example: const [count, setCount] = useState(0);

    • State variables should be immutable, so always use the setter function to update them.

  • Answered by AI
  • Q2. What is event loop in javascript.
  • Ans. 

    Event loop in JavaScript is responsible for handling asynchronous operations by executing callback functions in a non-blocking way.

    • Event loop is a mechanism that allows JavaScript to perform non-blocking operations.

    • It continuously checks the call stack and the callback queue to see if there are any functions that need to be executed.

    • If the call stack is empty, it takes the first function from the callback queue and pus...

  • Answered by AI
  • Q3. What is hosting in Javascript
  • Ans. 

    Hosting in JavaScript refers to the process of declaring a variable or function before it is used in the code.

    • Hosting allows you to use variables and functions before they are declared in the code.

    • Variables are hoisted to the top of their scope, while functions are fully hoisted.

    • Example: console.log(myVar); var myVar = 10; This will not throw an error because 'myVar' is hoisted to the top of the scope.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. What is Virtual dom?
  • Ans. 

    Virtual DOM is a lightweight copy of the actual DOM in memory, used for efficient updates and rendering in web development.

    • Virtual DOM is a concept used in frameworks like React to improve performance by minimizing actual DOM manipulations.

    • When changes are made to the UI, the virtual DOM is updated first, then compared to the actual DOM to determine the minimal changes needed.

    • This process helps reduce the number of upd...

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Why should we hire you?

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed in Nov 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Aptitude Test 

About mental ability questions coding decoding

Round 3 - Group Discussion 

About AI Artificial intelligence

Interview Preparation Tips

Topics to prepare for Genpact Html Developer interview:
  • Software Installation
Interview preparation tips for other job seekers - Ita useful
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Guru Nanak Dev Engineering College, Ludhiana and was interviewed in Jun 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

The aptitude was of moderate level. I you are preparing for Gate, you can easily crack it.

Round 2 - Technical 

(2 Questions)

  • Q1. There were questions from my core subject .
  • Q2. Few coding questions were also there.

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your resume simple and add those skills which you owe otherwise Interviewer will know your lacking area in few minutes.

IBM Interview FAQs

How many rounds are there in IBM UI UX Developer interview?
IBM interview process usually has 2 rounds. The most common rounds in the IBM interview process are Technical.
How to prepare for IBM UI UX Developer 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 IBM. The most common topics and skills that interviewers at IBM expect are Application Security, Docker, Front End, HTML and Kubernetes.
What are the top questions asked in IBM UI UX Developer interview?

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

  1. API call and th...read more
  2. State and Pr...read more

Tell us how to improve this page.

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
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
LTIMindtree Interview Questions
3.9
 • 2.9k Interviews
View all
IBM UI UX Developer Salary
based on 5 salaries
₹2.5 L/yr - ₹10.5 L/yr
23% more than the average UI UX Developer Salary in India
View more details

IBM UI UX Developer Reviews and Ratings

based on 3 reviews

4.3/5

Rating in categories

3.5

Skill development

4.3

Work-Life balance

4.2

Salary & Benefits

4.3

Job Security

3.5

Company culture

4.1

Promotions/Appraisal

3.4

Work Satisfaction

Explore 3 Reviews and Ratings
Application Developer
11.5k salaries
unlock blur

₹5.5 L/yr - ₹23.6 L/yr

Software Engineer
5.4k salaries
unlock blur

₹4.8 L/yr - ₹22.6 L/yr

Advisory System Analyst
5.2k salaries
unlock blur

₹9.2 L/yr - ₹27 L/yr

Senior Software Engineer
5k salaries
unlock blur

₹8 L/yr - ₹30 L/yr

Senior Systems Engineer
4.6k salaries
unlock blur

₹5.6 L/yr - ₹18.5 L/yr

Explore more salaries
Compare IBM with

Oracle

3.7
Compare

TCS

3.7
Compare

Cognizant

3.8
Compare

Accenture

3.9
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