{"id":17898,"date":"2023-09-19T09:39:16","date_gmt":"2023-09-19T09:39:16","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=17898"},"modified":"2023-09-19T09:39:16","modified_gmt":"2023-09-19T09:39:16","slug":"react-top-25-interview-questions","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/","title":{"rendered":"React Top 25 Interview Questions"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695116200809-Topic%20%2837%29.jpg\" alt=\"\" \/><\/p>\n<p>React, the popular JavaScript library for building user interfaces, has gained widespread adoption in the world of web development. As a React developer, whether you&#8217;re preparing for a job interview or simply looking to deepen your knowledge, it&#8217;s essential to understand some of the most common and challenging questions that may come up during an interview. In this article, we&#8217;ve compiled the top 25 React interview questions and provided comprehensive answers to help you succeed.<\/p>\n<h2>React Top 25 Interview Questions<\/h2>\n<p><strong>1. What is React, and why is it used?<\/strong><br \/>\nReact is a JavaScript library used to build user interfaces. It&#8217;s known for its component-based architecture and efficient rendering, making it suitable for building dynamic web applications.<\/p>\n<p><strong>2. Explain the concept of Virtual DOM in React.<\/strong><br \/>\nThe Virtual DOM is a lightweight copy of the actual DOM. React uses it to optimize updates by minimizing direct manipulation of the real DOM, resulting in improved performance.<\/p>\n<p><strong>3. What is JSX, and how does it differ from HTML?<\/strong><br \/>\nJSX is a JavaScript extension that allows you to write HTML-like code within JavaScript. It is transpiled into regular JavaScript code, making it possible to use HTML-like syntax within React components.<\/p>\n<p><strong>4. Describe the key differences between class components and functional components.<\/strong><br \/>\nClass components are ES6 classes that can have state and lifecycle methods. Functional components are simpler, stateless functions that can use React Hooks to manage state and lifecycle.<\/p>\n<p><strong>5. What are props in React, and how do you use them?<\/strong><br \/>\nProps (short for properties) are used to pass data from parent to child components in React. They are read-only and help in creating reusable and dynamic components.<\/p>\n<p><strong>6. Explain React component lifecycle methods and their order of execution.<\/strong><br \/>\nReact component lifecycle methods include componentDidMount, componentDidUpdate, and componentWillUnmount. They define when and how components are created, updated, and destroyed.<\/p>\n<p><strong>7. What is state in React? How is it different from props?<\/strong><br \/>\nState is an internal data store within a component that can be changed over time. It is mutable and used for managing component-specific data. Props, on the other hand, are read-only and passed from parent to child components.<\/p>\n<p><strong>8. What is React Router, and why is it used?<\/strong><br \/>\nReact Router is a library used for adding client-side routing to React applications. It allows developers to create single-page applications with multiple views.<\/p>\n<p><strong>9. What is Redux, and how does it work with React?<\/strong><br \/>\nRedux is a state management library for JavaScript applications. It helps manage application state in a predictable way and can be used with React via the react-redux library.<\/p>\n<p><strong>10. Explain the purpose of keys in React lists.<\/strong><br \/>\nKeys are used to identify and differentiate elements in a list of React components. They are essential for optimizing rendering and maintaining component state.<\/p>\n<p><strong>11. What is React Context, and when would you use it?<\/strong><br \/>\nReact Context is an API for sharing the state between components without having to pass props through every level of the component tree. It&#8217;s useful for managing the global application state.<\/p>\n<p><strong>12. What are React Hooks, and what are some commonly used hooks?<\/strong><br \/>\nReact Hooks are functions that allow you to use state and other React features in functional components. Commonly used hooks include useState, useEffect, and useContext.<\/p>\n<p><strong>13. What is lazy loading in React, and why is it important?<\/strong><br \/>\nLazy loading is a technique that loads components or resources asynchronously when they are needed, enhancing application performance by reducing initial load times.<\/p>\n<p><strong>14. How can you optimize the performance of a React application?<\/strong><br \/>\nPerformance optimization techniques in React include code splitting, memoization, minimizing unnecessary re-renders, and using production builds.<\/p>\n<p><strong>15. What are controlled and uncontrolled components in React forms?<\/strong><br \/>\nControlled components are components whose form elements are controlled by React&#8217;s state. Uncontrolled components rely on the DOM for their state.<\/p>\n<p><strong>16. What are React Fragments, and why are they used?<\/strong><br \/>\nReact Fragments are used to group multiple elements without adding an extra node to the DOM. They help improve component structure and maintainability.<\/p>\n<p><strong>17. Explain the concept of error boundaries in React.<\/strong><br \/>\nError boundaries are components that catch and handle errors that occur during rendering, preventing the entire application from crashing.<\/p>\n<p><strong>18. How can you conditionally render components in React?<\/strong><br \/>\nConditional rendering in React can be achieved using if statements, the ternary operator, or logical operators like &amp;&amp; and || in JSX.<\/p>\n<p><strong>19. What is the purpose of the shouldComponentUpdate method?<\/strong><br \/>\nshouldComponentUpdate is a lifecycle method used to optimize rendering by determining whether a component should re-render based on changes in its props or state.<\/p>\n<p><strong>20. What is the significance of the key prop when rendering lists, and what happens if it&#8217;s not used?<\/strong><br \/>\nThe key prop is used to identify and track individual elements in a list. Without it, React may have difficulty efficiently updating the list and may lead to unexpected behavior.<\/p>\n<p><strong>21. How does React handle forms, and what are controlled components?<\/strong><br \/>\nReact manages form elements using controlled components, where form element values are controlled by React&#8217;s state. This allows React to update and validate form inputs easily.<\/p>\n<p><strong>22. What is the purpose of the useEffect hook in React?<\/strong><br \/>\nuseEffect is used for managing side effects in functional components, such as data fetching, DOM manipulation, and subscribing to data sources. It replaces lifecycle methods like componentDidMount and componentDidUpdate.<\/p>\n<p><strong>23. What are portals in React, and why are they useful?<\/strong><br \/>\nPortals allow you to render a component&#8217;s children at a different location in the DOM, which can be useful for creating modals, tooltips, or popovers that are not confined to the component&#8217;s parent hierarchy.<\/p>\n<p><strong>24. Explain the concept of context providers and consumers in React.<\/strong><br \/>\nContext providers and consumers are part of the React Context API. Providers supply data to the context, while consumers access that data from any part of the component tree, making it easier to share data between components.<\/p>\n<p><strong>25. How can you secure a React application against common security vulnerabilities?<\/strong><br \/>\nSecuring a React application involves practices like input validation, avoiding cross-site scripting (XSS) attacks, implementing proper authentication and authorization, and protecting against cross-site request forgery (CSRF) attacks.<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nMastering React and performing well in React interviews requires a solid understanding of the library&#8217;s fundamentals and best practices. These top 25 React interview questions and answers should serve as a valuable resource to help you prepare and demonstrate your expertise in React development during interviews. Additionally, consider exploring more advanced topics and keeping up with the latest React developments to stay at the forefront of web development.<\/p>\n<h2>FAQs related to React Top 25 Interview Questions<\/h2>\n<p>Below are some of the React Top 25 Interview questions:<\/p>\n<p><strong>1. What is JSX, and why is it used in React?<\/strong><br \/>\nJSX is a syntax extension for JavaScript used in React to describe the structure of UI components. It allows developers to write HTML-like code within JavaScript.<\/p>\n<p><strong>2. Explain the concept of the Virtual DOM and how it contributes to React&#8217;s performance.<\/strong><br \/>\nThe Virtual DOM is a lightweight representation of the actual DOM. React uses it to optimize updates by minimizing direct manipulation of the real DOM, resulting in improved performance.<\/p>\n<p><strong>3. What are React components, and what are the benefits of using them?<\/strong><br \/>\nReact components are reusable, self-contained units of code that encapsulate UI elements and behavior. They promote modularity, reusability, and maintainability in applications.<\/p>\n<p><strong>4. What are props in React, and how are they used to pass data between components?<\/strong><br \/>\nProps (short for properties) are used to pass data from parent to child components in React. They are read-only and help in creating dynamic and reusable components.<\/p>\n<p><strong>5.  the difference between state and props in React.<\/strong><br \/>\nState is used to manage component-specific data that can change over time and is mutable within the component. Props are read-only and are used for passing data from parent to child components.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>React, the popular JavaScript library for building user interfaces, has gained widespread adoption in the world of web development. As a React developer, whether you&#8217;re preparing for a job interview or simply looking to deepen your knowledge, it&#8217;s essential to understand some of the most common and challenging questions that may come up during an [&hellip;]<\/p>\n","protected":false},"author":52,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[226],"tags":[],"class_list":["post-17898","post","type-post","status-publish","format-standard","hentry","category-react-interview-questions"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>React Top 25 Interview Questions | React interview Questions | PrepBytes Blog<\/title>\n<meta name=\"description\" content=\"React, the popular JavaScript library for building user interfaces, has gained widespread adoption in the world of web development.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"React Top 25 Interview Questions | React interview Questions | PrepBytes Blog\" \/>\n<meta property=\"og:description\" content=\"React, the popular JavaScript library for building user interfaces, has gained widespread adoption in the world of web development.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/\" \/>\n<meta property=\"og:site_name\" content=\"PrepBytes Blog\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/prepbytes0211\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-09-19T09:39:16+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695116200809-Topic%20%2837%29.jpg\" \/>\n<meta name=\"author\" content=\"Prepbytes\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Prepbytes\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"React Top 25 Interview Questions\",\"datePublished\":\"2023-09-19T09:39:16+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/\"},\"wordCount\":1283,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695116200809-Topic%20%2837%29.jpg\",\"articleSection\":[\"React interview Questions\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/\",\"name\":\"React Top 25 Interview Questions | React interview Questions | PrepBytes Blog\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695116200809-Topic%20%2837%29.jpg\",\"datePublished\":\"2023-09-19T09:39:16+00:00\",\"description\":\"React, the popular JavaScript library for building user interfaces, has gained widespread adoption in the world of web development.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695116200809-Topic%20%2837%29.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695116200809-Topic%20%2837%29.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"React interview Questions\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/react-interview-questions\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"React Top 25 Interview Questions\"}]},{\"@type\":\"WebSite\",\"@id\":\"http:\/\/43.205.93.38\/#website\",\"url\":\"http:\/\/43.205.93.38\/\",\"name\":\"PrepBytes Blog\",\"description\":\"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING\",\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"http:\/\/43.205.93.38\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"http:\/\/43.205.93.38\/#organization\",\"name\":\"Prepbytes\",\"url\":\"http:\/\/43.205.93.38\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"contentUrl\":\"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp\",\"width\":160,\"height\":160,\"caption\":\"Prepbytes\"},\"image\":{\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/prepbytes0211\/\",\"https:\/\/www.instagram.com\/prepbytes\/\",\"https:\/\/www.linkedin.com\/company\/prepbytes\/\",\"https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA\"]},{\"@type\":\"Person\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\",\"name\":\"Prepbytes\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g\",\"caption\":\"Prepbytes\"},\"url\":\"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"React Top 25 Interview Questions | React interview Questions | PrepBytes Blog","description":"React, the popular JavaScript library for building user interfaces, has gained widespread adoption in the world of web development.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/","og_locale":"en_US","og_type":"article","og_title":"React Top 25 Interview Questions | React interview Questions | PrepBytes Blog","og_description":"React, the popular JavaScript library for building user interfaces, has gained widespread adoption in the world of web development.","og_url":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-09-19T09:39:16+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695116200809-Topic%20%2837%29.jpg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"React Top 25 Interview Questions","datePublished":"2023-09-19T09:39:16+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/"},"wordCount":1283,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695116200809-Topic%20%2837%29.jpg","articleSection":["React interview Questions"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/","url":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/","name":"React Top 25 Interview Questions | React interview Questions | PrepBytes Blog","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695116200809-Topic%20%2837%29.jpg","datePublished":"2023-09-19T09:39:16+00:00","description":"React, the popular JavaScript library for building user interfaces, has gained widespread adoption in the world of web development.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695116200809-Topic%20%2837%29.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695116200809-Topic%20%2837%29.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/react-top-25-interview-questions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"React interview Questions","item":"https:\/\/prepbytes.com\/blog\/category\/react-interview-questions\/"},{"@type":"ListItem","position":3,"name":"React Top 25 Interview Questions"}]},{"@type":"WebSite","@id":"http:\/\/43.205.93.38\/#website","url":"http:\/\/43.205.93.38\/","name":"PrepBytes Blog","description":"ONE-STOP RESOURCE FOR EVERYTHING RELATED TO CODING","publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"http:\/\/43.205.93.38\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"http:\/\/43.205.93.38\/#organization","name":"Prepbytes","url":"http:\/\/43.205.93.38\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/","url":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","contentUrl":"https:\/\/blog.prepbytes.com\/wp-content\/uploads\/2025\/07\/uzxxllgloialmn9mhwfe.webp","width":160,"height":160,"caption":"Prepbytes"},"image":{"@id":"http:\/\/43.205.93.38\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/prepbytes0211\/","https:\/\/www.instagram.com\/prepbytes\/","https:\/\/www.linkedin.com\/company\/prepbytes\/","https:\/\/www.youtube.com\/channel\/UC0xGnHDrjUM1pDEK2Ka5imA"]},{"@type":"Person","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e","name":"Prepbytes","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/232042cd1a1ea0e982c96d2a2ec93fb70a8e864e00784491231e7bfe5a9e06b5?s=96&d=mm&r=g","caption":"Prepbytes"},"url":"https:\/\/prepbytes.com\/blog\/author\/gourav-jaincollegedekho-com\/"}]}},"_links":{"self":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/17898","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/users\/52"}],"replies":[{"embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/comments?post=17898"}],"version-history":[{"count":2,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/17898\/revisions"}],"predecessor-version":[{"id":17902,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/17898\/revisions\/17902"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=17898"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=17898"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=17898"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}