{"id":10076,"date":"2022-09-28T12:29:01","date_gmt":"2022-09-28T12:29:01","guid":{"rendered":"https:\/\/www.prepbytes.com\/blog\/?p=10076"},"modified":"2022-10-10T09:42:20","modified_gmt":"2022-10-10T09:42:20","slug":"commonly-asked-dbms-interview-questions-and-answers-2","status":"publish","type":"post","link":"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/","title":{"rendered":"Commonly Asked DBMS Interview Questions And Answers"},"content":{"rendered":"<p><img decoding=\"async\" src=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1664366682929-Topic.jpeg\" alt=\"\" \/><\/p>\n<p>In this article, we will discuss the most important commonly asked <a href=\"https:\/\/prepbytes.com\/blog\/category\/dbms\/\">DBMS<\/a> Interview Questions and Answers in order to make you familiar with the type of questions that can be asked during a job interview related to the Database Management System (DBMS).<\/p>\n<p>Basically, from my personal experience, there is not any specific way or formula to get through an Interview Process and it totally depends on you and the type of Interviewer. But still, it\u2019s good to be prepared for your profile for your own confidence and knowledge so that you don\u2019t feel hesitant to answer the questions asked during an interview.<\/p>\n<h3>DBMS Interview Questions And Answers<\/h3>\n<p><strong>1. What is DBMS used for?<\/strong><\/p>\n<p><strong>Answer<\/strong>: DBMS, commonly known as Database Management System, is an application system whose main purpose revolves around the data. This is a system that allows its user to store the data, define it, retrieve it and update the information about the data inside the database.<\/p>\n<p><strong>2. Why is the use of DBMS recommended? Explain by listing some of its major advantages.<\/strong><\/p>\n<p><strong>Answer: Some of the major advantages of DBMS are as follows:<\/strong><\/p>\n<ul>\n<li><strong>Controlled Redundancy<\/strong>: DBMS supports a mechanism to control the redundancy of data inside the database by integrating all the data into a single database and as data is stored in only one place, the duplicity of data does not happen.<\/li>\n<li><strong>Data Sharing<\/strong>: Sharing of data among multiple users simultaneously can also be done in DBMS as the same database will be shared among all the users and by different application programs.<\/li>\n<li><strong>Backup and Recovery Facility<\/strong>: DBMS minimizes the pain of creating the backup of data again and again by providing a feature of \u2018backup and recovery which automatically creates the data backup and restores the data whenever required.<\/li>\n<li><strong>Enforcement of Integrity Constraints<\/strong>: Integrity Constraints are very important to be enforced on the data so that the refined data after putting some constraints are stored in the database and this is followed by DBMS.<\/li>\n<li><strong>Independence of data<\/strong>: It simply means that you can change the structure of the data without affecting the structure of any of the application programs.<\/li>\n<\/ul>\n<p><strong>3. What is the purpose of SQL?<\/strong><\/p>\n<p><strong>Answer<\/strong>: SQL stands for Structured Query Language whose main purpose is to interact with the relational databases in the form of inserting and updating\/modifying the data in the database.<\/p>\n<p><strong>4. What is concurrency control?<\/strong><\/p>\n<p><strong>Answer<\/strong>: This is a process of managing simultaneous operations in a database so that database integrity is not compromised. The following are the two approaches involved in concurrency control:<\/p>\n<ul>\n<li><strong>Optimistic approach<\/strong> \u2013 Involves versioning<\/li>\n<li><strong>Pessimistic approach<\/strong> \u2013 Involves locking<\/li>\n<\/ul>\n<p><strong>5. What is meant by the trigger?<\/strong><\/p>\n<p><strong>Answer<\/strong>: Trigger is one of the very important codes or programs that get executed automatically in response to the events that occur in a table or a view. For Example, If a new record is inserted in an employee database then the data gets created automatically in the related tables like salary, department, and roles tables<\/p>\n<p><strong>6.How is the pattern matching done in the SQL?<\/strong><\/p>\n<p><strong>Answer<\/strong>: With the help of the LIKE operator, pattern matching is possible in the SQL.\u2019%\u2019 is used with the LIKE operator when it matches with 0 or more characters, and \u2018_\u2019 is used to match one particular character.<\/p>\n<p><strong>Example<\/strong>:<br \/>\nSELECT * from Emp WHERE name like \u2018b%\u2019;<\/p>\n<p>SELECT * from Emp WHERE name like \u2018hans_\u2019;<\/p>\n<p><strong>7. What is 2NF in the DBMS?<\/strong><\/p>\n<p><strong>Answer<\/strong>: 2NF is the Second Normal Form.<br \/>\nAny table is said to have in the 2NF if it satisfies the following 2 conditions:<br \/>\nA table is in the 1NF.<br \/>\nEach non-prime attribute of a table is said to be functionally dependent in totality on the primary key.<\/p>\n<p><strong>8. What is a CLAUSE in terms of SQL?<\/strong><\/p>\n<p><strong>Answer<\/strong>: This is used with the SQL queries to fetch specific data as per the requirements on the basis of the conditions that are put in the SQL. This is very helpful in picking the selective records from the complete set of records.<br \/>\nFor Example, There is a query that has a WHERE condition or the query with the HAVING clause.<\/p>\n<p><strong>9. What integrity rules exist in the DBMS?<\/strong><\/p>\n<p><strong>Answer<\/strong>: There are 2 major integrity rules that exist in the DBMS.<br \/>\nThey are:<\/p>\n<ul>\n<li><strong>Entity Integrity<\/strong>: This states a very important rule that the value of a Primary key can never have a NULL value.<\/li>\n<li><strong>Referential Integrity<\/strong>: This rule is related to the Foreign key which states that either the value of a Foreign key is a NULL value or it should be the primary key of any other relation.<\/li>\n<\/ul>\n<p><strong>10. What is the use of the DROP command and what are the differences between DROP, TRUNCATE and DELETE commands?<\/strong><\/p>\n<p><strong>Answer<\/strong>: The DROP command is a DDL command which is used to drop\/delete the existing table, database, index, or view from the database.<\/p>\n<p><strong>The major difference between DROP, TRUNCATE and DELETE commands are:<\/strong><br \/>\nDROP and TRUNCATE commands are the DDL commands which are used to delete tables from the database and once the table gets deleted, all the privileges and indexes that are related to the table also get deleted. These 2 operations cannot be rolled back and so should be used only when necessary.<br \/>\nDELETE command, on the other hand, is a DML Command which is also used to delete rows from the table and this can be rolled back.<br \/>\nNote: It is recommended to use the \u2018WHERE\u2019 clause along with the DELETE command else the complete table will get deleted from the database.<\/p>\n<p>Also you can prefer this <a href=\"https:\/\/www.prepbytes.com\/dbms-interview-questions\" title=\"DBMS Interview Questions and Answers\">DBMS Interview Questions and Answers<\/a> article for better understanding, go and check it out!<\/p>\n<p>We tried to discuss DBMS Interview Questions and Answers in this article. We hope this article gives you a better understanding of the type of DBMS Interview Questions and Answers. <a href=\"https:\/\/www.prepbytes.com\/\" title=\"PrepBytes\">PrepBytes<\/a> also provides a good collection of <a href=\"https:\/\/www.prepbytes.com\/prepbytes-courses\" title=\"Foundation Courses\">Foundation Courses<\/a> that can help you enhance your coding skills. Want to make sure you ace the interview in one go? Join our <a href=\"https:\/\/www.prepbytes.com\/placement-preparation-program\" title=\"Placement Program\">Placement Program<\/a> which will help you get prepared and land your dream job at MNCs. Mentors of Prepbytes are highly experienced and can provide you with basic, in-depth subject knowledge for better understanding.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In this article, we will discuss the most important commonly asked DBMS Interview Questions and Answers in order to make you familiar with the type of questions that can be asked during a job interview related to the Database Management System (DBMS). Basically, from my personal experience, there is not any specific way or formula [&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":[190],"tags":[],"class_list":["post-10076","post","type-post","status-publish","format-standard","hentry","category-dbms"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v25.8 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Commonly Asked DBMS Interview Questions And Answers | DBMS | PrepBytes Blog<\/title>\n<meta name=\"description\" content=\"We tried to discuss DBMS Interview Questions and Answers in this article. We hope this article gives you a better understanding of the type of DBMS Interview Questions and Answers.\" \/>\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\/commonly-asked-dbms-interview-questions-and-answers-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Commonly Asked DBMS Interview Questions And Answers | DBMS | PrepBytes Blog\" \/>\n<meta property=\"og:description\" content=\"We tried to discuss DBMS Interview Questions and Answers in this article. We hope this article gives you a better understanding of the type of DBMS Interview Questions and Answers.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/\" \/>\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=\"2022-09-28T12:29:01+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-10-10T09:42:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1664366682929-Topic.jpeg\" \/>\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=\"5 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/\"},\"author\":{\"name\":\"Prepbytes\",\"@id\":\"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e\"},\"headline\":\"Commonly Asked DBMS Interview Questions And Answers\",\"datePublished\":\"2022-09-28T12:29:01+00:00\",\"dateModified\":\"2022-10-10T09:42:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/\"},\"wordCount\":1022,\"commentCount\":0,\"publisher\":{\"@id\":\"http:\/\/43.205.93.38\/#organization\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1664366682929-Topic.jpeg\",\"articleSection\":[\"DBMS\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/\",\"url\":\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/\",\"name\":\"Commonly Asked DBMS Interview Questions And Answers | DBMS | PrepBytes Blog\",\"isPartOf\":{\"@id\":\"http:\/\/43.205.93.38\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1664366682929-Topic.jpeg\",\"datePublished\":\"2022-09-28T12:29:01+00:00\",\"dateModified\":\"2022-10-10T09:42:20+00:00\",\"description\":\"We tried to discuss DBMS Interview Questions and Answers in this article. We hope this article gives you a better understanding of the type of DBMS Interview Questions and Answers.\",\"breadcrumb\":{\"@id\":\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#primaryimage\",\"url\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1664366682929-Topic.jpeg\",\"contentUrl\":\"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1664366682929-Topic.jpeg\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"http:\/\/43.205.93.38\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"DBMS\",\"item\":\"https:\/\/prepbytes.com\/blog\/category\/dbms\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Commonly Asked DBMS Interview Questions And Answers\"}]},{\"@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":"Commonly Asked DBMS Interview Questions And Answers | DBMS | PrepBytes Blog","description":"We tried to discuss DBMS Interview Questions and Answers in this article. We hope this article gives you a better understanding of the type of DBMS Interview Questions and Answers.","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\/commonly-asked-dbms-interview-questions-and-answers-2\/","og_locale":"en_US","og_type":"article","og_title":"Commonly Asked DBMS Interview Questions And Answers | DBMS | PrepBytes Blog","og_description":"We tried to discuss DBMS Interview Questions and Answers in this article. We hope this article gives you a better understanding of the type of DBMS Interview Questions and Answers.","og_url":"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/","og_site_name":"PrepBytes Blog","article_publisher":"https:\/\/www.facebook.com\/prepbytes0211\/","article_published_time":"2022-09-28T12:29:01+00:00","article_modified_time":"2022-10-10T09:42:20+00:00","og_image":[{"url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1664366682929-Topic.jpeg","type":"","width":"","height":""}],"author":"Prepbytes","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Prepbytes","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#article","isPartOf":{"@id":"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/"},"author":{"name":"Prepbytes","@id":"http:\/\/43.205.93.38\/#\/schema\/person\/3f7dc4ae851791d5947a7f99df363d5e"},"headline":"Commonly Asked DBMS Interview Questions And Answers","datePublished":"2022-09-28T12:29:01+00:00","dateModified":"2022-10-10T09:42:20+00:00","mainEntityOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/"},"wordCount":1022,"commentCount":0,"publisher":{"@id":"http:\/\/43.205.93.38\/#organization"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1664366682929-Topic.jpeg","articleSection":["DBMS"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/","url":"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/","name":"Commonly Asked DBMS Interview Questions And Answers | DBMS | PrepBytes Blog","isPartOf":{"@id":"http:\/\/43.205.93.38\/#website"},"primaryImageOfPage":{"@id":"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#primaryimage"},"image":{"@id":"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#primaryimage"},"thumbnailUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1664366682929-Topic.jpeg","datePublished":"2022-09-28T12:29:01+00:00","dateModified":"2022-10-10T09:42:20+00:00","description":"We tried to discuss DBMS Interview Questions and Answers in this article. We hope this article gives you a better understanding of the type of DBMS Interview Questions and Answers.","breadcrumb":{"@id":"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#primaryimage","url":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1664366682929-Topic.jpeg","contentUrl":"https:\/\/prepbytes-misc-images.s3.ap-south-1.amazonaws.com\/assets\/1664366682929-Topic.jpeg"},{"@type":"BreadcrumbList","@id":"https:\/\/prepbytes.com\/blog\/commonly-asked-dbms-interview-questions-and-answers-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"http:\/\/43.205.93.38\/"},{"@type":"ListItem","position":2,"name":"DBMS","item":"https:\/\/prepbytes.com\/blog\/category\/dbms\/"},{"@type":"ListItem","position":3,"name":"Commonly Asked DBMS Interview Questions And Answers"}]},{"@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\/10076","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=10076"}],"version-history":[{"count":2,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/10076\/revisions"}],"predecessor-version":[{"id":10192,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/posts\/10076\/revisions\/10192"}],"wp:attachment":[{"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/media?parent=10076"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/categories?post=10076"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/prepbytes.com\/blog\/wp-json\/wp\/v2\/tags?post=10076"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}