{"id":301,"date":"2017-06-03T07:52:28","date_gmt":"2017-06-03T07:52:28","guid":{"rendered":"http:\/\/www.gologica.com\/blog\/?p=301"},"modified":"2025-03-06T12:35:58","modified_gmt":"2025-03-06T12:35:58","slug":"model-view-controller-interview-questions-and-answers","status":"publish","type":"post","link":"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/","title":{"rendered":"Model-View-Controller Interview Questions and Answers"},"content":{"rendered":"<p><strong>Explain what a is Model-View-Controller.<\/strong><\/p>\n<p>MVC is a software architecture pattern for developing web applications. It is handled by three objects Model-View-Controller.<\/p>\n<p><strong>Mention what does Model-View-Controller represents in an MVC application.<\/strong><\/p>\n<p>In an MVC model,<\/p>\n<p>Model\u2013 It represents the application data domain. In other words, application business logic is contained within the model and is responsible for maintaining data<\/p>\n<p>View\u2013 It represents the user interface, with which the end users communicate. In short, all the user interface logic is contained within the VIEW<\/p>\n<p>Controller\u2013 It is the controller that answers to user actions. Based on the user actions, the respective controller responds within the model and chooses a view to render that display the user interface.\u00a0 The user input logic is contained within the controller<\/p>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/www.gologica.com\/course\/application-development-frameworkadf\/\"><img fetchpriority=\"high\" decoding=\"async\" width=\"850\" height=\"200\" src=\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-1.jpg\" alt=\"ADF Online Training\" class=\"wp-image-2587\" srcset=\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-1.jpg 850w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-1-460x108.jpg 460w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-1-768x181.jpg 768w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-1-100x24.jpg 100w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-1-600x141.jpg 600w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-1-120x28.jpg 120w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-1-310x73.jpg 310w\" sizes=\"(max-width: 850px) 100vw, 850px\" \/><\/a><\/figure>\n<\/div>\n<p><strong>Explain in which assembly the MVC framework is defined.<\/strong><\/p>\n<p>The MVC framework is defined in the System.Web.Mvc.<\/p>\n<p>List out a few different return types of a controller action method.<\/p>\n<p>View Result<\/p>\n<p>Javascript Result<\/p>\n<p>Redirect Result<\/p>\n<p>JSON Result<\/p>\n<p>Content Result<\/p>\n<p><strong>Mention what is the difference between adding routes, to a webform application and an MVC application.<\/strong><\/p>\n<p>To add routes to a webform application, we can use the MapPageRoute() method of the RouteCollection class, where adding routes to an MVC application, you can use the MapRoute() method.<\/p>\n<p>Mention what are the two ways to add constraints to a route.<\/p>\n<p>The two methods to add constraints to a route is<\/p>\n<p>Use regular expressions<\/p>\n<p>Use an object that implements the IRouteConstraint Interface<\/p>\n<p><strong>Mention what are the advantages of MVC.<\/strong><\/p>\n<p>MVC segregates your project into a different segment, and it becomes easy for developers to work on<\/p>\n<p>It is easy to edit or change some parts of your project making the project less development and maintenance cost<\/p>\n<p>MVC makes your project more systematic<\/p>\n<p>Mention what the \u201cbeforFilter()\u201d, \u201cbeforeRender\u201d and \u201cafterFilter\u201d functions do in Controller.<\/p>\n<p>beforeFilter(): This function is run before every action in the controller. It\u2019s the right place to check for an active session or inspect user permissions.<\/p>\n<p>beforeRender(): This function is called after controller action logic, but before the view is rendered. This function is not often used but may be required If you are calling render() manually before the end of a given action<\/p>\n<p>afterFilter(): This function is called after every controller action, and after rendering is done. It is the last controller method to run<\/p>\n<p><strong>Explain the role of components Presentation, Abstraction, and Control in MVC.<\/strong><\/p>\n<p>Presentation: It is the visual representation of a specific abstraction within the application<\/p>\n<p>Abstraction: It is the business domain functionality within the application<\/p>\n<p>Control: It is a component that keeps consistency between the abstraction within the system and their presentation to the user in addition to communicating with other controls within the system<\/p>\n<p><strong>Explain the role of \u201cActionFilters\u201d in MVC.<\/strong><\/p>\n<p>In MVC \u201c ActionFilters\u201d help you to execute logic while the MVC action is executed or is executing.<\/p>\n<p><strong>\u00a0Explain what are the steps for the execution of an MVC project.<\/strong><\/p>\n<p>The steps for the execution of an MVC project include<\/p>\n<p>Receive the first request for the application<\/p>\n<p>Performs routing<\/p>\n<p>Creates MVC request handler<\/p>\n<p>Create Controller<\/p>\n<p>Execute Controller<\/p>\n<p>Invoke action<\/p>\n<p>Execute Result<\/p>\n<\/p>\n<p><strong>To Learn How to Use Model View Parameters in Looker | GoLogica<\/strong><\/p>\n<p><a href=\"https:\/\/www.youtube.com\/@gologicatechnologies\"><\/a><\/p>\n<figure class=\"wp-block-embed is-type-video is-provider-youtube wp-block-embed-youtube wp-embed-aspect-16-9 wp-has-aspect-ratio\">\n<div class=\"wp-block-embed__wrapper\">\n<div class=\"fitvids\"><iframe title=\"How to Use Model View Parameters in Looker | Looker Online Training | GoLogica\" width=\"1170\" height=\"658\" src=\"https:\/\/www.youtube.com\/embed\/Dipz2XPMfv8?feature=oembed\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" referrerpolicy=\"strict-origin-when-cross-origin\" allowfullscreen><\/iframe><\/div>\n<\/div>\n<\/figure>\n<p><strong>Explain what is routing. What are the three segments for routing is important?<\/strong><\/p>\n<p>Routing helps you to decide on a URL structure and map the URL with the Controller.<\/p>\n<p>The three segments that are important for routing is<\/p>\n<p>ControllerName<\/p>\n<p>ActionMethodName<\/p>\n<p>Parameter<\/p>\n<p><strong>Explain how routing is done in the MVC pattern.<\/strong><\/p>\n<p>There is a group of routes called the RouteCollection, which consists of registered routes in the application.\u00a0 The RegisterRoutes method records the routes in this collection.\u00a0 A route defines a URL pattern and a handler to use if the request matches the pattern. The first parameter of the MapRoute method is the name of the route. The second parameter will be the pattern to which the URL matches.\u00a0 The third parameter might be the default values for the placeholders if they are not determined.<\/p>\n<p><strong>\u00a0Explain using hyperlinks how you can navigate from one view to another view.<\/strong><\/p>\n<p>By using \u201cActionLink\u201d method as shown in the below code. The below code will make a simple URL which help to navigate to the \u201cHome\u201d controller and invoke the \u201cGotoHome\u201d action.<\/p>\n<p>Collapse \/ Copy Code<\/p>\n<p>&lt;%= Html.ActionLink(\u201cHome\u201d, \u201cGotohome\u201d) %&gt;<\/p>\n<p><strong>Mention how can maintain a session in MVC.<\/strong><\/p>\n<p>Session can be maintained in MVC in three ways tempdata, viewdata, and viewbag.<\/p>\n<p><strong>Mention what is the difference between Temp data, View, and View Bag.<\/strong><\/p>\n<p>Temp data: It helps to maintain data when you shift from one controller to another controller.<\/p>\n<p>View data: It helps to maintain data when you move from controller to view<\/p>\n<p>View Bag: It\u2019s a dynamic wrapper around view data<\/p>\n<p><strong>What is the partial view in MVC?<\/strong><\/p>\n<p>Partial view in MVC renders a portion of view content. It is helpful in reducing code duplication. In simple terms, partial view allows to render a view within the parent view.<\/p>\n<p><strong>Explain how you can implement Ajax in MVC.<\/strong><\/p>\n<p>In Ajax, MVC can be implemented in two ways<\/p>\n<p>Ajax libraries<\/p>\n<p>Jquery<\/p>\n<div class=\"wp-block-image\">\n<figure class=\"aligncenter\"><a href=\"https:\/\/www.gologica.com\/course\/net-mvc\/\"><img decoding=\"async\" width=\"850\" height=\"200\" src=\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-2.jpg\" alt=\".Net MVC Training\" class=\"wp-image-2588\" srcset=\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-2.jpg 850w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-2-460x108.jpg 460w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-2-768x181.jpg 768w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-2-100x24.jpg 100w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-2-600x141.jpg 600w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-2-120x28.jpg 120w, https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC-2-310x73.jpg 310w\" sizes=\"(max-width: 850px) 100vw, 850px\" \/><\/a><\/figure>\n<\/div>\n<p><strong>Mention what is the difference between \u201cActionResult\u201d and \u201cViewResult\u201d?<\/strong><\/p>\n<p>\u201cActionResult\u201d is an abstract class while \u201cViewResult\u201d is derived from \u201cthe AbstractResult\u201d class.\u00a0 \u201cActionResult\u201d has several derived classes like \u201cJsonResult\u201d, \u201cFileStreamResult\u201d and \u201cViewResult\u201d.<\/p>\n<p>\u201cActionResult\u201d is best if you are deriving different types of views dynamically.<\/p>\n<p><strong>Explain how you can send the result back in JSON format in MVC.<\/strong><\/p>\n<p>In order to send the result back in JSON format in MVC, you can use \u201cJSONRESULT\u201d class.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Explain what a is Model-View-Controller. MVC is a software architecture pattern for developing web applications. It is handled by three &hellip;<\/p>\n","protected":false},"author":1,"featured_media":2167,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_bbp_topic_count":0,"_bbp_reply_count":0,"_bbp_total_topic_count":0,"_bbp_total_reply_count":0,"_bbp_voice_count":0,"_bbp_anonymous_reply_count":0,"_bbp_topic_count_hidden":0,"_bbp_reply_count_hidden":0,"_bbp_forum_subforum_count":0,"pmpro_default_level":"","footnotes":""},"categories":[29],"tags":[],"coauthors":[182],"class_list":["post-301","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-microsoft-interview-questions-form-gologica","pmpro-has-access","user-has-not-earned"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.9 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Model-View-Controller Interview Questions and Answers - GoLogica<\/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:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Model-View-Controller Interview Questions and Answers - GoLogica\" \/>\n<meta property=\"og:description\" content=\"Explain what a is Model-View-Controller. MVC is a software architecture pattern for developing web applications. It is handled by three &hellip;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/\" \/>\n<meta property=\"og:site_name\" content=\"GoLogica\" \/>\n<meta property=\"article:published_time\" content=\"2017-06-03T07:52:28+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2025-03-06T12:35:58+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"300\" \/>\n\t<meta property=\"og:image:height\" content=\"175\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\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:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62\"},\"headline\":\"Model-View-Controller Interview Questions and Answers\",\"datePublished\":\"2017-06-03T07:52:28+00:00\",\"dateModified\":\"2025-03-06T12:35:58+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/\"},\"wordCount\":940,\"image\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC.jpg\",\"articleSection\":[\"Microsoft\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/\",\"url\":\"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/\",\"name\":\"Model-View-Controller Interview Questions and Answers - GoLogica\",\"isPartOf\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC.jpg\",\"datePublished\":\"2017-06-03T07:52:28+00:00\",\"dateModified\":\"2025-03-06T12:35:58+00:00\",\"author\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62\"},\"breadcrumb\":{\"@id\":\"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#primaryimage\",\"url\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC.jpg\",\"contentUrl\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC.jpg\",\"width\":300,\"height\":175,\"caption\":\"Model View Controller\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.gologica.com\/elearning\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Model-View-Controller Interview Questions and Answers\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/#website\",\"url\":\"https:\/\/www.gologica.com\/elearning\/\",\"name\":\"GoLogica\",\"description\":\"E-Learning Portal\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.gologica.com\/elearning\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/image\/d0ab308492a1bfcbec1a1ce1637996db\",\"url\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/themes\/wplms\/assets\/images\/avatar.jpg\",\"contentUrl\":\"https:\/\/www.gologica.com\/elearning\/wp-content\/themes\/wplms\/assets\/images\/avatar.jpg\",\"caption\":\"admin\"},\"url\":\"https:\/\/www.gologica.com\/elearning\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Model-View-Controller Interview Questions and Answers - GoLogica","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:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/","og_locale":"en_US","og_type":"article","og_title":"Model-View-Controller Interview Questions and Answers - GoLogica","og_description":"Explain what a is Model-View-Controller. MVC is a software architecture pattern for developing web applications. It is handled by three &hellip;","og_url":"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/","og_site_name":"GoLogica","article_published_time":"2017-06-03T07:52:28+00:00","article_modified_time":"2025-03-06T12:35:58+00:00","og_image":[{"width":300,"height":175,"url":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC.jpg","type":"image\/jpeg"}],"author":"admin","twitter_card":"summary_large_image","twitter_misc":{"Written by":"admin","Est. reading time":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#article","isPartOf":{"@id":"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/"},"author":{"name":"admin","@id":"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62"},"headline":"Model-View-Controller Interview Questions and Answers","datePublished":"2017-06-03T07:52:28+00:00","dateModified":"2025-03-06T12:35:58+00:00","mainEntityOfPage":{"@id":"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/"},"wordCount":940,"image":{"@id":"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#primaryimage"},"thumbnailUrl":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC.jpg","articleSection":["Microsoft"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/","url":"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/","name":"Model-View-Controller Interview Questions and Answers - GoLogica","isPartOf":{"@id":"https:\/\/www.gologica.com\/elearning\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#primaryimage"},"image":{"@id":"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#primaryimage"},"thumbnailUrl":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC.jpg","datePublished":"2017-06-03T07:52:28+00:00","dateModified":"2025-03-06T12:35:58+00:00","author":{"@id":"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62"},"breadcrumb":{"@id":"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#primaryimage","url":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC.jpg","contentUrl":"https:\/\/www.gologica.com\/elearning\/wp-content\/uploads\/2017\/06\/MVC.jpg","width":300,"height":175,"caption":"Model View Controller"},{"@type":"BreadcrumbList","@id":"https:\/\/www.gologica.com\/elearning\/model-view-controller-interview-questions-and-answers\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.gologica.com\/elearning\/"},{"@type":"ListItem","position":2,"name":"Model-View-Controller Interview Questions and Answers"}]},{"@type":"WebSite","@id":"https:\/\/www.gologica.com\/elearning\/#website","url":"https:\/\/www.gologica.com\/elearning\/","name":"GoLogica","description":"E-Learning Portal","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.gologica.com\/elearning\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/61458e59d78b8e05fb57997461069c62","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.gologica.com\/elearning\/#\/schema\/person\/image\/d0ab308492a1bfcbec1a1ce1637996db","url":"https:\/\/www.gologica.com\/elearning\/wp-content\/themes\/wplms\/assets\/images\/avatar.jpg","contentUrl":"https:\/\/www.gologica.com\/elearning\/wp-content\/themes\/wplms\/assets\/images\/avatar.jpg","caption":"admin"},"url":"https:\/\/www.gologica.com\/elearning\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/posts\/301","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/comments?post=301"}],"version-history":[{"count":5,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/posts\/301\/revisions"}],"predecessor-version":[{"id":66202,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/posts\/301\/revisions\/66202"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/media\/2167"}],"wp:attachment":[{"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/media?parent=301"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/categories?post=301"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/tags?post=301"},{"taxonomy":"author","embeddable":true,"href":"https:\/\/www.gologica.com\/elearning\/wp-json\/wp\/v2\/coauthors?post=301"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}