Posts

Showing posts from August, 2026

Accenture React Interview Experience

Recently, I appeared for an Accenture Frontend / React Developer interview . The interview covered JavaScript, React, accessibility, and performance optimization. Sharing some of the key questions and topics that were discussed. Introduction & Project Tell me about yourself. Explain your project, role, and responsibilities. Explain your project architecture. What challenges have you faced in your project? JavaScript What is Hoisting ? Give an example. What is a Closure ? Explain with an example. What is the difference between var, let, and const ? Explain the Event Loop . What are Promises and how do they work? Accessibility / WCAG What is WCAG ? Why is accessibility important? How do you make a React application accessible? What are ARIA attributes ? React What are React Hooks ? Difference between useState() and useRef() . Explain useEffect() . What is the difference between Context API and Redux ? What are Controlled and Uncontrolled Components ? Explain React rendering and reco...

Angular Developer Interview Questions

 If you are preparing for an Angular Developer interview , these are some common questions that cover JavaScript, HTML, CSS, TypeScript, Angular, Signals, APIs, testing, and coding . I have kept the questions simple and practical so they are easy to use for interview preparation. JavaScript Questions Why were Arrow Functions introduced when traditional functions already existed? Explain how the JavaScript Event Loop works. What are Callback Functions ? Explain Hoisting in JavaScript. What is the difference between var, let, and const ? What is the difference between map(), filter(), reduce(), and forEach() ? What is localStorage ? How is it different from sessionStorage ? Explain Prototype in JavaScript. HTML & CSS Questions What is the difference between relative, absolute, fixed, and sticky positioning? What are Semantic and Non-Semantic HTML elements ? Angular Questions Explain Angular Component Lifecycle Hooks . In which lifecycle hook should you call an API, and why? ...

TCS React.js Interview Questions

I recently appeared for a React.js / Frontend Developer interview at TCS . The interview was mainly focused on real-world scenarios, project experience, and problem-solving rather than only theoretical questions. I’m sharing some of the questions that were asked. These may help others who are preparing for React.js interviews. Project Discussion Explain your current project and your responsibilities. How is your application structured from frontend to backend? How do different modules communicate with each other? Tell me about a production issue you faced and how you fixed it. React.js Questions If changing one filter causes the whole page to re-render, how would you find and fix the issue? How would you manage a large form with multiple sections and validations? How would you prevent users from clicking Submit multiple times and creating duplicate API requests? For a real-time dashboard, would you use polling or WebSockets? Why? If a React component has become 1,000+ lines, how would...