{"id":184,"date":"2023-10-27T05:24:48","date_gmt":"2023-10-27T05:24:48","guid":{"rendered":"https:\/\/codexpro.ai\/blog\/?p=184"},"modified":"2024-04-05T06:50:28","modified_gmt":"2024-04-05T06:50:28","slug":"c-interview-questions-for-entry-level-computer-science-students-2","status":"publish","type":"post","link":"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/","title":{"rendered":"&#8220;C++ Interview Questions for Entry-Level Computer Science Students&#8221;"},"content":{"rendered":"<p><img loading=\"lazy\" decoding=\"async\" class=\"alignnone wp-image-762 size-medium\" src=\"https:\/\/d37xvkecfjjxlz.cloudfront.net\/blog\/wp-content\/uploads\/2023\/10\/Title_-_C-Interview-Questions-for-Entry-Level-Computer-Science-Students_-1-300x208.jpg\" alt=\"\" width=\"300\" height=\"208\" srcset=\"https:\/\/d37xvkecfjjxlz.cloudfront.net\/blog\/wp-content\/uploads\/2023\/10\/Title_-_C-Interview-Questions-for-Entry-Level-Computer-Science-Students_-1-300x208.jpg 300w, https:\/\/d37xvkecfjjxlz.cloudfront.net\/blog\/wp-content\/uploads\/2023\/10\/Title_-_C-Interview-Questions-for-Entry-Level-Computer-Science-Students_-1.jpg 626w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/p>\n<p><strong>Introduction:<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">Are you an entry-level computer science student looking to learn the basics of C++ programming? If so, you&#8217;re in the right place. In this article, we&#8217;ll explore some fundamental C++ interview questions tailored to beginners. Whether you&#8217;re preparing for an interview or just starting your C++ journey, these questions and explanations will help you build a solid foundation.<\/span><\/p>\n<p><strong>1: What are the Different Data Types in C++?<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; C++ provides various data types, including primitive, derived, enumeration, and user-defined types. These include int, float, double, char, array, pointer, enum, and user-defined classes.<\/span><\/p>\n<p><strong>2: What is the Difference Between C and C++?<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; C is a procedural programming language, while C++ is an object-oriented programming language.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; C++ supports data hiding through encapsulation, whereas C does not.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; C++ is a superset of C, meaning that C++ includes all of C&#8217;s features and adds more, such as classes and objects.<\/span><\/p>\n<p><strong>3: What are Classes and Objects in C++?<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; In C++, a class is a user-defined data type that contains data members and member functions.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; An object is an instance of a class, allowing you to work with the data and methods defined in that class.<\/span><\/p>\n<p><strong>4: What is the Difference Between Struct and Class?<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; In C++, a structure (struct) is similar to a class, but members are public by default.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; A class has private members by default, which provides better encapsulation.<\/span><\/p>\n<p><strong>5: What is Operator Overloading in C++?<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; Operator overloading allows you to redefine the behavior of operators like +, -, *, \/, etc. for user-defined data types.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; For example, you can overload the &#8216;+&#8217; operator to add two complex numbers.<\/span><\/p>\n<p><strong>6:- What is Polymorphism in C++?<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; Polymorphism means having many forms. It allows different behaviors in different situations.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; C++ supports both compile-time and runtime polymorphism through function overloading and virtual functions.<\/span><\/p>\n<p><strong>7: Explain Constructors in C++.<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; Constructors are special member functions that are automatically called when an object is created.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; Constructors have the same name as the class and initialize object attributes.<\/span><\/p>\n<p><strong>8: Tell Me About Virtual Functions.<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; A virtual function is a member function in the base class that you can override in a derived class.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; It is declared using the `virtual` keyword and enables dynamic binding.<\/span><\/p>\n<p><strong style=\"font-size: 1rem;\">9: Compare Compile-Time and Runtime Polymorphism.<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; Compile-time polymorphism is resolved at compile time through function overloading.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0&#8211; Runtime polymorphism is determined at runtime using virtual functions and pointers.<\/span><\/p>\n<p><strong>10: What is a Friend Class and Friend Function in C++?<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; A friend class can access private, protected, and public members of other classes where it&#8217;s declared as a friend.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; A friend function can access these members and is not a member function of the class.<\/span><\/p>\n<p><strong>11: What are the C++ Access Specifiers?<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; C++ has three access specifiers: public, protected, and private.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; Public members are accessible from outside the class, protected members within the class and derived classes, and private members only within the class.<\/span><\/p>\n<p><strong>12: Define Inline Function.<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; An inline function is a function where the compiler places a copy of the code at each function call site.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; It&#8217;s used to eliminate the function calling overhead for better performance.<\/span><\/p>\n<p><strong>13: What is a Reference in C++?<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; A reference is another name for an existing variable. Once initialized, it can be used interchangeably with the variable name.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; Changes to a reference are reflected in the original variable.<\/span><\/p>\n<p><strong>14: Explain Abstraction in C++.<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; Abstraction is the concept of showing only essential details to the user while hiding irrelevant or internal information.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; Classes and objects provide a way to implement abstraction in C++.<\/span><\/p>\n<p><strong>15: Is Destructor Overloading Possible? If Yes, Explain Why. If No, Explain Why Not.<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; Destructor overloading is not possible in C++. Destructors take no arguments, and there&#8217;s only one way to destroy an object.<\/span><\/p>\n<p><strong>16: What is Call by Value and Call by Reference?<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; Call by value involves passing a copy of the parameter to the function, and changes do not affect the original variable.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; Call by reference passes the address of the variable, allowing changes to affect the original variable.<\/span><\/p>\n<p><strong>17: What is an Abstract Class, and When is It Used?<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; An abstract class cannot have instances and serves as a base for derived classes.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; Abstract classes often contain pure virtual functions and are used for creating a common interface for derived classes.<\/span><\/p>\n<p><strong><span style=\"font-size: 1rem;\">18: What Are Destructors in C++?<\/span><\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; A destructor is a special member function that is automatically called when an object is destroyed.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; It is used to clean up resources associated with the object.<\/span><\/p>\n<p><strong><span style=\"font-size: 1rem;\">19: What Are Static Members and Static Member Functions?<\/span><\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; Static members belong to the class, not to instances of the class. They are shared among all objects.<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; Static member functions can be called using the class name and do not operate on instance-specific data.<\/span><\/p>\n<p><strong><span style=\"font-size: 1rem;\">20: Explain Inheritance.<\/span><\/strong><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; Inheritance allows you to create new classes (derived) from existing classes (base).<\/span><\/p>\n<p><span style=\"font-weight: 400;\">\u00a0\u00a0\u00a0\u00a0&#8211; Derived classes inherit the attributes and methods of the base class, promoting code reuse.<\/span><\/p>\n<p><strong>Conclusion:<\/strong><\/p>\n<p><span style=\"font-weight: 400;\">These C++ interview questions are a great starting point for entry-level computer science students looking to grasp the basics of C++. Understanding these concepts will not only help you succeed in interviews but also lay the foundation for your C++ programming journey. As you progress, consider exploring more advanced topics and real-world applications to deepen your knowledge. Happy coding!<\/span><\/p>\n","protected":false},"excerpt":{"rendered":"<p>Introduction: Are you an entry-level computer science student looking to learn the basics of C++ programming? If so, you&#8217;re in the right place. In this article, we&#8217;ll explore some fundamental C++ interview questions tailored to beginners. Whether you&#8217;re preparing for an interview or just starting your C++ journey, these questions &hellip; <\/p>\n<p class=\"link-more\"><a href=\"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;&#8220;C++ Interview Questions for Entry-Level Computer Science Students&#8221;&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":153,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2],"tags":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.9 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>&quot;C++ Interview Questions for Entry-Level Computer Science Students&quot; - Code {X} Pro<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"&quot;C++ Interview Questions for Entry-Level Computer Science Students&quot; - Code {X} Pro\" \/>\n<meta property=\"og:description\" content=\"Introduction: Are you an entry-level computer science student looking to learn the basics of C++ programming? If so, you&#8217;re in the right place. In this article, we&#8217;ll explore some fundamental C++ interview questions tailored to beginners. Whether you&#8217;re preparing for an interview or just starting your C++ journey, these questions &hellip; Continue reading &quot;&#8220;C++ Interview Questions for Entry-Level Computer Science Students&#8221;&quot;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/\" \/>\n<meta property=\"og:site_name\" content=\"Code {X} Pro\" \/>\n<meta property=\"article:published_time\" content=\"2023-10-27T05:24:48+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-04-05T06:50:28+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/codexpro.ai\/blog\/wp-content\/uploads\/2023\/10\/Title_-_C-Interview-Questions-for-Entry-Level-Computer-Science-Students_.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"626\" \/>\n\t<meta property=\"og:image:height\" content=\"434\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"smallday\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"smallday\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/\",\"url\":\"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/\",\"name\":\"\\\"C++ Interview Questions for Entry-Level Computer Science Students\\\" - Code {X} Pro\",\"isPartOf\":{\"@id\":\"https:\/\/codexpro.ai\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/d37xvkecfjjxlz.cloudfront.net\/blog\/wp-content\/uploads\/2023\/10\/Title_-_C-Interview-Questions-for-Entry-Level-Computer-Science-Students_.jpg\",\"datePublished\":\"2023-10-27T05:24:48+00:00\",\"dateModified\":\"2024-04-05T06:50:28+00:00\",\"author\":{\"@id\":\"https:\/\/codexpro.ai\/blog\/#\/schema\/person\/36d2e1eb9f190e6253fc1139ad2ec360\"},\"breadcrumb\":{\"@id\":\"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/#primaryimage\",\"url\":\"https:\/\/d37xvkecfjjxlz.cloudfront.net\/blog\/wp-content\/uploads\/2023\/10\/Title_-_C-Interview-Questions-for-Entry-Level-Computer-Science-Students_.jpg\",\"contentUrl\":\"https:\/\/d37xvkecfjjxlz.cloudfront.net\/blog\/wp-content\/uploads\/2023\/10\/Title_-_C-Interview-Questions-for-Entry-Level-Computer-Science-Students_.jpg\",\"width\":626,\"height\":434},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/codexpro.ai\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"&#8220;C++ Interview Questions for Entry-Level Computer Science Students&#8221;\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/codexpro.ai\/blog\/#website\",\"url\":\"https:\/\/codexpro.ai\/blog\/\",\"name\":\"codexpro.ai\",\"description\":\"Create your robust tech teams with us.\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/codexpro.ai\/blog\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/codexpro.ai\/blog\/#\/schema\/person\/36d2e1eb9f190e6253fc1139ad2ec360\",\"name\":\"smallday\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/codexpro.ai\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/a8e886b143e9e88a3f83efce47a524d3?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/a8e886b143e9e88a3f83efce47a524d3?s=96&d=mm&r=g\",\"caption\":\"smallday\"},\"url\":\"https:\/\/codexpro.ai\/blog\/author\/smallday\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"\"C++ Interview Questions for Entry-Level Computer Science Students\" - Code {X} Pro","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:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/","og_locale":"en_US","og_type":"article","og_title":"\"C++ Interview Questions for Entry-Level Computer Science Students\" - Code {X} Pro","og_description":"Introduction: Are you an entry-level computer science student looking to learn the basics of C++ programming? If so, you&#8217;re in the right place. In this article, we&#8217;ll explore some fundamental C++ interview questions tailored to beginners. Whether you&#8217;re preparing for an interview or just starting your C++ journey, these questions &hellip; Continue reading \"&#8220;C++ Interview Questions for Entry-Level Computer Science Students&#8221;\"","og_url":"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/","og_site_name":"Code {X} Pro","article_published_time":"2023-10-27T05:24:48+00:00","article_modified_time":"2024-04-05T06:50:28+00:00","og_image":[{"width":626,"height":434,"url":"https:\/\/codexpro.ai\/blog\/wp-content\/uploads\/2023\/10\/Title_-_C-Interview-Questions-for-Entry-Level-Computer-Science-Students_.jpg","type":"image\/jpeg"}],"author":"smallday","twitter_card":"summary_large_image","twitter_misc":{"Written by":"smallday","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/","url":"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/","name":"\"C++ Interview Questions for Entry-Level Computer Science Students\" - Code {X} Pro","isPartOf":{"@id":"https:\/\/codexpro.ai\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/#primaryimage"},"image":{"@id":"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/#primaryimage"},"thumbnailUrl":"https:\/\/d37xvkecfjjxlz.cloudfront.net\/blog\/wp-content\/uploads\/2023\/10\/Title_-_C-Interview-Questions-for-Entry-Level-Computer-Science-Students_.jpg","datePublished":"2023-10-27T05:24:48+00:00","dateModified":"2024-04-05T06:50:28+00:00","author":{"@id":"https:\/\/codexpro.ai\/blog\/#\/schema\/person\/36d2e1eb9f190e6253fc1139ad2ec360"},"breadcrumb":{"@id":"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/#primaryimage","url":"https:\/\/d37xvkecfjjxlz.cloudfront.net\/blog\/wp-content\/uploads\/2023\/10\/Title_-_C-Interview-Questions-for-Entry-Level-Computer-Science-Students_.jpg","contentUrl":"https:\/\/d37xvkecfjjxlz.cloudfront.net\/blog\/wp-content\/uploads\/2023\/10\/Title_-_C-Interview-Questions-for-Entry-Level-Computer-Science-Students_.jpg","width":626,"height":434},{"@type":"BreadcrumbList","@id":"https:\/\/codexpro.ai\/blog\/c-interview-questions-for-entry-level-computer-science-students-2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/codexpro.ai\/blog\/"},{"@type":"ListItem","position":2,"name":"&#8220;C++ Interview Questions for Entry-Level Computer Science Students&#8221;"}]},{"@type":"WebSite","@id":"https:\/\/codexpro.ai\/blog\/#website","url":"https:\/\/codexpro.ai\/blog\/","name":"codexpro.ai","description":"Create your robust tech teams with us.","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/codexpro.ai\/blog\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/codexpro.ai\/blog\/#\/schema\/person\/36d2e1eb9f190e6253fc1139ad2ec360","name":"smallday","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/codexpro.ai\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/a8e886b143e9e88a3f83efce47a524d3?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/a8e886b143e9e88a3f83efce47a524d3?s=96&d=mm&r=g","caption":"smallday"},"url":"https:\/\/codexpro.ai\/blog\/author\/smallday\/"}]}},"_links":{"self":[{"href":"https:\/\/codexpro.ai\/blog\/wp-json\/wp\/v2\/posts\/184"}],"collection":[{"href":"https:\/\/codexpro.ai\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/codexpro.ai\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/codexpro.ai\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/codexpro.ai\/blog\/wp-json\/wp\/v2\/comments?post=184"}],"version-history":[{"count":2,"href":"https:\/\/codexpro.ai\/blog\/wp-json\/wp\/v2\/posts\/184\/revisions"}],"predecessor-version":[{"id":763,"href":"https:\/\/codexpro.ai\/blog\/wp-json\/wp\/v2\/posts\/184\/revisions\/763"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/codexpro.ai\/blog\/wp-json\/wp\/v2\/media\/153"}],"wp:attachment":[{"href":"https:\/\/codexpro.ai\/blog\/wp-json\/wp\/v2\/media?parent=184"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/codexpro.ai\/blog\/wp-json\/wp\/v2\/categories?post=184"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/codexpro.ai\/blog\/wp-json\/wp\/v2\/tags?post=184"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}