{"id":18059,"date":"2023-09-25T12:49:07","date_gmt":"2023-09-25T12:49:07","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=18059"},"modified":"2023-09-25T12:49:07","modified_gmt":"2023-09-25T12:49:07","slug":"django-interview-questions","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/django-interview-questions\/","title":{"rendered":"Django Interview Questions"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695646120907-Topic%20%2873%29.jpg\" alt=\"\" \/><\/p>\n<p>Django is a high-level, open-source Python web framework that is renowned for its speed, simplicity, and versatility. Originally developed at the Lawrence Journal-World newspaper in 2003 by Adrian Holovaty and Simon Willison, it was released as an open-source project in 2005 and has since gained widespread adoption in the web development community.<\/p>\n<p>Django follows the &quot;batteries-included&quot; philosophy, which means it provides a comprehensive set of tools and libraries that streamline web development, allowing developers to focus on building robust, feature-rich web applications. It adheres to the Model-View-Controller (MVC) architectural pattern, although in Django, this pattern is referred to as Model-View-Template (MVT)<\/p>\n<h2>Importance of Django<\/h2>\n<p>Django holds significant importance in the field of web development for several reasons:<\/p>\n<p><strong>1. Rapid Development:<\/strong> Django&#8217;s &quot;batteries-included&quot; philosophy means it provides a wide range of built-in tools and libraries for common web development tasks. This accelerates the development process by reducing the need to write repetitive code, allowing developers to focus on application-specific features.<\/p>\n<p><strong>2. High-Level Abstractions:<\/strong> Django&#8217;s Object-Relational Mapping (ORM) simplifies database interactions, making it easier to work with databases. Developers can define data models using Python classes, eliminating the need for writing raw SQL queries.<\/p>\n<p><strong>3. Scalability:<\/strong> Django is designed to handle projects of varying sizes. Whether you&#8217;re building a small website or a large-scale application, Django&#8217;s modular and reusable components make it easy to scale your project as needed.<\/p>\n<p><strong>4. Security:<\/strong> Django prioritizes security. It includes built-in protection against common web vulnerabilities like Cross-Site Scripting (XSS), Cross-Site Request Forgery (CSRF), and SQL injection. This focus on security helps developers create more secure applications.<\/p>\n<p><strong>5. Community and Documentation:<\/strong> Django has a vibrant and active community of developers and enthusiasts. This community provides extensive documentation, tutorials, and third-party packages, making it easier for developers to learn and solve problems.<\/p>\n<p><strong>6. Flexibility:<\/strong> While Django provides many built-in features, it also allows developers to override and customize nearly every aspect of the framework. This flexibility ensures that developers can adapt Django to suit the unique requirements of their projects.<\/p>\n<p><strong>7. Admin Interface:<\/strong> Django&#8217;s automatically generated admin panel is a powerful tool for managing application data. It simplifies CRUD (Create, Read, Update, Delete) operations and is a valuable asset for administrators and content managers.<\/p>\n<p><strong>8. ORM and Database Support:<\/strong> Django&#8217;s ORM supports multiple database backends, allowing developers to choose the most appropriate database for their project. This flexibility is essential for working with different data storage solutions.<\/p>\n<p><strong>9. SEO-Friendly URLs:<\/strong> Django&#8217;s URL routing system enables the creation of clean, human-readable URLs, which is crucial for search engine optimization (SEO) and user-friendly navigation.<\/p>\n<p><strong>10. Community Packages:<\/strong> Django&#8217;s ecosystem includes a vast collection of third-party packages and extensions that extend its functionality. This allows developers to leverage pre-built solutions for various tasks, reducing development time and effort.<\/p>\n<h2>Django Interview Questions For Freshers<\/h2>\n<p><strong>1. What are the key features of Django?<\/strong><br \/>\nDjango includes features like an ORM (Object-Relational Mapping), admin interface, URL routing, template engine, and automatic admin interface<br \/>\ngeneration.<\/p>\n<p><strong>2. What is Django ORM, and why is it important?<\/strong><br \/>\nDjango ORM (Object-Relational Mapping) is a feature that allows you to interact with your database using Python objects. It abstracts the database layer and simplifies database operations.<\/p>\n<p><strong>3. Explain Django&#8217;s middleware.<\/strong><br \/>\nMiddleware is a way to process requests and responses globally before they reach the view or after they leave the view. It&#8217;s used for tasks like authentication, logging, and security.<\/p>\n<p><strong>4. What is Django&#8217;s role in managing forms?<\/strong><br \/>\nDjango provides a powerful form handling system that simplifies form creation, validation, and rendering.<\/p>\n<p><strong>5. How does Django handle authentication?<\/strong><br \/>\nDjango includes a built-in authentication system that provides user registration, login, logout, and password reset functionalities.<\/p>\n<p><strong>6. What is Django&#8217;s admin site, and how do you customize it?<\/strong><br \/>\nThe Django admin site is an automatically generated web-based administrative interface for managing the application&#8217;s data. You can customize it by defining admin classes and overriding templates.<\/p>\n<p><strong>8. Explain Django&#8217;s URL routing system.<\/strong><br \/>\nDjango uses a URL dispatcher to route incoming URLs to the appropriate view functions, based on regular expressions defined in the URL patterns.<\/p>\n<p><strong>9. What is a Django view, and what types of views are available?<\/strong><br \/>\nA view in Django is a Python function that takes a web request and returns a web response. There are function-based views and class-based views.<\/p>\n<p><strong>10. What is Django&#8217;s template system, and how does it work?<\/strong><br \/>\nDjango&#8217;s template system is used to generate HTML dynamically. It allows you to separate the presentation layer from the application logic using templates.<\/p>\n<p><strong>11. What is CSRF protection, and how does Django implement it?<\/strong><br \/>\nCSRF (Cross-Site Request Forgery) protection is a security measure to prevent unauthorized requests. Django implements CSRF protection by using a middleware and tokens.<\/p>\n<p><strong>12. What are Django models, and how do you define them?<\/strong><br \/>\nDjango models are Python classes that define the structure and behavior of database tables. They are defined in the models.py file using Django&#8217;s ORM.<\/p>\n<p><strong>13. Explain the use of migrations in Django.<\/strong><br \/>\nMigrations are scripts generated by Django to manage database schema changes over time. They allow you to evolve the database schema without losing data.<\/p>\n<p><strong>14. What is the purpose of Django&#8217;s settings.py file?<\/strong><br \/>\nThe settings.py file contains configuration settings for a Django project, including database settings, application settings, and middleware configurations.<\/p>\n<p><strong>15. What is Django&#8217;s session framework, and how is it used?<\/strong><br \/>\nDjango&#8217;s session framework allows you to store and retrieve user data across HTTP requests. It&#8217;s often used to maintain user sessions and store temporary data.<\/p>\n<p><strong>16. How does Django handle file uploads?<\/strong><br \/>\nDjango provides the FileField and ImageField fields to handle file uploads. Uploaded files are typically stored in a designated directory on the server.<\/p>\n<p><strong>17. What are Django signals, and why are they useful?<\/strong><br \/>\nDjango signals allow decoupled applications to communicate with each other by sending and receiving signals when certain actions occur. They are useful for implementing custom functionality in response to events.<\/p>\n<p><strong>18. What is Django REST framework, and why is it used?<\/strong><br \/>\nDjango REST framework is a powerful and flexible toolkit for building Web APIs in Django applications. It simplifies the creation of APIs by providing serializers, authentication, and views for handling HTTP requests.<\/p>\n<p><strong>19. How do you handle database transactions in Django?<\/strong><br \/>\nDjango provides a context manager called transaction.atomic to handle database transactions. It ensures that a series of database operations either all succeed or all fail.<\/p>\n<p><strong>20. What is the purpose of Django&#8217;s middleware?<\/strong><\/p>\n<p>Middleware is a way to process requests and responses globally before they reach the view or after they leave the view. It&#8217;s used for tasks like authentication, logging, and security.<\/p>\n<p><strong>Conclusion<\/strong><br \/>\nIn conclusion, Django interview questions cover a wide range of topics that showcase the framework&#8217;s versatility and significance in web development. Understanding Django&#8217;s core components, such as models, views, templates, and its ORM, is essential. Additionally, knowledge of security practices, middleware, and database management through migrations is crucial.<\/p>\n<p>Django&#8217;s built-in features, like its admin interface and authentication system, greatly expedite the development process, making it a go-to choice for developers. Furthermore, Django&#8217;s commitment to security, flexibility, scalability, and its vast ecosystem of third-party packages contribute to its enduring importance in the world of web development.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Django is a high-level, open-source Python web framework that is renowned for its speed, simplicity, and versatility. Originally developed at the Lawrence Journal-World newspaper in 2003 by Adrian Holovaty and Simon Willison, it was released as an open-source project in 2005 and has since gained widespread adoption in the web development community. Django follows the [&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":[147],"tags":[],"class_list":["post-18059","post","type-post","status-publish","format-standard","hentry","category-interview-questions"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Django Interview Questions<\/title>\n<meta name=\"description\" content=\"Django is a high-level, open-source Python web framework that is renowned for its speed, simplicity, and versatility.\" \/>\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\/django-interview-questions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Django Interview Questions\" \/>\n<meta property=\"og:description\" content=\"Django is a high-level, open-source Python web framework that is renowned for its speed, simplicity, and versatility.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/django-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-25T12:49:07+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695646120907-Topic%20%2873%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\/django-interview-questions\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/django-interview-questions\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Django Interview Questions\",\"datePublished\":\"2023-09-25T12:49:07+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/django-interview-questions\/\"},\"wordCount\":1197,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/django-interview-questions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695646120907-Topic%20%2873%29.jpg\",\"articleSection\":[\"Interview Questions\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/django-interview-questions\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/django-interview-questions\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/django-interview-questions\/\",\"name\":\"Django Interview Questions\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/django-interview-questions\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/django-interview-questions\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695646120907-Topic%20%2873%29.jpg\",\"datePublished\":\"2023-09-25T12:49:07+00:00\",\"description\":\"Django is a high-level, open-source Python web framework that is renowned for its speed, simplicity, and versatility.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/django-interview-questions\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/django-interview-questions\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/django-interview-questions\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695646120907-Topic%20%2873%29.jpg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695646120907-Topic%20%2873%29.jpg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/django-interview-questions\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Interview Questions\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/interview-questions\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Django 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":"Django Interview Questions","description":"Django is a high-level, open-source Python web framework that is renowned for its speed, simplicity, and versatility.","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\/django-interview-questions\/","og_locale":"en_US","og_type":"article","og_title":"Django Interview Questions","og_description":"Django is a high-level, open-source Python web framework that is renowned for its speed, simplicity, and versatility.","og_url":"https:\/\/prepbytes.com\/blog\/django-interview-questions\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2023-09-25T12:49:07+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695646120907-Topic%20%2873%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\/django-interview-questions\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/django-interview-questions\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Django Interview Questions","datePublished":"2023-09-25T12:49:07+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/django-interview-questions\/"},"wordCount":1197,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/django-interview-questions\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695646120907-Topic%20%2873%29.jpg","articleSection":["Interview Questions"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/django-interview-questions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/django-interview-questions\/","url":"https:\/\/prepbytes.com\/blog\/django-interview-questions\/","name":"Django Interview Questions","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/django-interview-questions\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/django-interview-questions\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695646120907-Topic%20%2873%29.jpg","datePublished":"2023-09-25T12:49:07+00:00","description":"Django is a high-level, open-source Python web framework that is renowned for its speed, simplicity, and versatility.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/django-interview-questions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/django-interview-questions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/django-interview-questions\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695646120907-Topic%20%2873%29.jpg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1695646120907-Topic%20%2873%29.jpg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/django-interview-questions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"Interview Questions","item":"https:\/\/prepbytes.com\/blog\/category\/interview-questions\/"},{"@type":"ListItem","position":3,"name":"Django 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\/18059","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=18059"}],"version-history":[{"count":2,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18059\/revisions"}],"predecessor-version":[{"id":18070,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/18059\/revisions\/18070"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=18059"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=18059"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=18059"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}