{"id":3717,"date":"2022-09-10T14:07:36","date_gmt":"2022-09-10T08:37:36","guid":{"rendered":"https:\/\/binaryterms.com\/?p=3717"},"modified":"2022-09-10T14:59:13","modified_gmt":"2022-09-10T09:29:13","slug":"language-processor","status":"publish","type":"post","link":"https:\/\/binaryterms.com\/language-processor.html","title":{"rendered":"Language Processor"},"content":{"rendered":"<p>A language processor is a processor that processes a language and translates it into another language. In system programming, a language processor processes a program in the source language and translates it into the target language. Usually, the source language is a programming language, and the target language is a machine language. While translating, it even identifies the error present in the source language program.<\/p>\n<p>This content will discuss the fundamentals of language processors. How it analyzes the program provided as input? How it further synthesizes this input program into a form that the computer can understand.<\/p>\n<h2>Content: Language Processor<\/h2>\n<ol>\n<li><a href=\"#WhatisLanguageProcessor?\">What is Language Processor?<\/a><\/li>\n<li><a href=\"#LanguageProcessorActivity\">Language Processor Activity<\/a><\/li>\n<li><a href=\"#Examples\">Examples<\/a><\/li>\n<li><a href=\"#Fundamentals\">Fundamentals<\/a><\/li>\n<li><a href=\"#Types\">Types<\/a><\/li>\n<\/ol>\n<p><a name=\"WhatisLanguageProcessor?\"><\/a><\/p>\n<h3>What is Language Processor?<\/h3>\n<p>If you have to describe computation, in what language will you do it? Obviously, in a language that is convenient for you. But the computer doesn&#8217;t understand the language in which you describe the specifications. Neither every user is able to describe the computation in machine language that the computer understands.<\/p>\n<p>So, to overcome this gap between the user and the computer, we introduced a language processor. It handles converting the computation written in your language into the computer language.<\/p>\n<p>A language processor is a system program that a computer uses to implement a user\u2019s computation. The language processor ultimately bridges the gap between:<\/p>\n<ul>\n<li>How a user specifies a particular computation?<\/li>\n<li>How the computer further executes the computation?<\/li>\n<\/ul>\n<p>The ease of specification of a computation depends on the language in which the user has written the specification. Although there are two ways to write a specification of a computation:<\/p>\n<ol>\n<li><strong>Problem-Oriented Programming<\/strong><br \/>\nHere, the user can specify a computation using data and operations. The used data and operations should be meaningful for the computation.<\/li>\n<li><strong>Procedure-Oriented Programming<\/strong><br \/>\nHere, some standard methods exist to create data and perform operations. Here, the user has to specify computation using these standards.<\/li>\n<\/ol>\n<p>Of the above two languages, problem-oriented is much more convenient. As it is easy for users to specify their intended computation.<\/p>\n<p>Now we know that a language processor converts the user-written program into machine language. But do you know it identifies the errors in the input program during this conversion? It even aborts the conversion if there is any error in the input program.<\/p>\n<p>In simple words, a language processor bridges a semantic gap between the user specification and its execution in a computer. But what exactly the semantic gap is?<\/p>\n<h3>What is a Semantic Gap?<\/h3>\n<p>A semantic gap is a gap between the application domain and the execution domain. Here application domain represents the program written in a high-level language. However, the execution domain represents the program written in machine language.<\/p>\n<p>Simply, the semantic gap bridges a gap between a user and a computer.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3729\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap.jpg\" alt=\"Semantic Gap\" width=\"400\" height=\"225\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap.jpg 400w, https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap-300x169.jpg 300w\" sizes=\"auto, (max-width: 400px) 100vw, 400px\" \/><\/p>\n<p>The semantic gap is further classified into two:<\/p>\n<h5>Specification Gap<\/h5>\n<p>It is the gap between the application domain and the programming language domain. This gap describes the gap between two different specifications describing the same task. However, the semantic gap has to be bridged by the software designer.<\/p>\n<h5>Execution Gap<\/h5>\n<p>It is a gap between the programming language domain and the execution domain. This gap is between the two programs written in different programming languages. Where one of the programs is in the languages closer to machine language. The language processor, such as a compiler or interpreter, bridges the execution gap.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3730\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Specification-and-Execution-Gap.jpg\" alt=\"Specification and Execution Gap\" width=\"600\" height=\"212\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Specification-and-Execution-Gap.jpg 600w, https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Specification-and-Execution-Gap-300x106.jpg 300w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<p>Now let us also learn about the different types of domains between which these gaps exist.<\/p>\n<ul>\n<li><strong>Application Domain<\/strong> \u2013 The specification language here is just a language convenient to the user.<\/li>\n<li><strong>Programming Language Domain<\/strong> \u2013 The specification language here is any programming language.<\/li>\n<li><strong>Execution Domain<\/strong> \u2013 The specification language here is the machine language.<\/li>\n<\/ul>\n<div id=\"largeback\"><strong>Example<\/strong><br \/>\nA client wants a specific software. So he approaches a software designer and specifies his requirements to him in a language (specification language of application domain) that is convenient to him.<br \/>\nNow the software designer would convert (bridges <strong>specification gap<\/strong>) the user\u2019s specifications into a program using the programming language (specification language of programming language domain).<br \/>\nNext, the compiler will compile the program designed by the software designer and convert (bridges <strong>execution gap<\/strong>) it to machine language (specification language of execution domain) that the computer understands. Knowing this much about the language processor, now let us discuss the activities performed by the language processor.<\/div>\n<p><a name=\"LanguageProcessorActivity\"><\/a><\/p>\n<h3>Language Processor Activity<\/h3>\n<p>Language processing is the term we use to refer to the activities performed by the language processor. The language processor performs two activities while converting a specification from one domain to another domain:<\/p>\n<h5>Program Generation Activity<\/h5>\n<p>The program generation activity bridges the specification gap. Thus, this activity generates a program in a procedure-oriented programming language of the programming language domain out of the specifications described in the specification language of the application domain.<\/p>\n<h5>Program Execution Activity<\/h5>\n<p>The program execution activity bridges the execution gap. Thus, this activity organizes the execution of a program written in a programming language of the programming language domain by converting it to the machine language of the execution domain.<br \/>\n<a name=\"Examples\"><\/a><\/p>\n<h3>Examples<\/h3>\n<ul>\n<li>Compilers \u2013 C, C++, C#, and Java<\/li>\n<li>Interpreter \u2013 Perl, Python, and MATLAB<\/li>\n<li>Assembler<\/li>\n<\/ul>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3727\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/A-Practical-Arrangement-of-Langauge-Processors.jpg\" alt=\"A Practical Arrangement of Language Processors\" width=\"600\" height=\"239\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/A-Practical-Arrangement-of-Langauge-Processors.jpg 600w, https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/A-Practical-Arrangement-of-Langauge-Processors-300x120.jpg 300w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<p><a name=\"Fundamentals\"><\/a><\/p>\n<h3>Fundamentals of Language Processor<\/h3>\n<p>The fundamentals of language processors are the basic principles that form the basis of language processing. It involves two phases:<\/p>\n<ol>\n<li>Analyzing the source program<\/li>\n<li>Synthesizing the target program<\/li>\n<\/ol>\n<p>The components of the language processor involved in analyzing the source program constitute the analysis phase. The components of the language processor involved in synthesizing a target program constitute the synthesis phase.<\/p>\n<h5>Analysis Phase<\/h5>\n<p>The analysis phase consists of three components.<\/p>\n<ol>\n<li><strong>Lexical Rule<\/strong> \u2013 It analyzes the formation of valid tokens in the source program.<\/li>\n<li><strong>Syntax Rule<\/strong> \u2013 It identifies whether the statements in the source program are in a well-defined format.<\/li>\n<li><strong>Semantic Rule <\/strong>\u2013\u00a0It associates meaning with each valid statement in a source program.<\/li>\n<\/ol>\n<h5>Synthesis Phase<\/h5>\n<p>The synthesis phase constructs a target language statement for each valid source language statement. However, the meaning of the target language statement is the same as that of the source language statement.<\/p>\n<p>The synthesis phase involves two crucial tasks.<\/p>\n<ol>\n<li><strong>Memory Allocation<\/strong> \u2013 Create a data structure in the target program.<\/li>\n<li><strong>Code Generation<\/strong> \u2013 Generate a target program.<\/li>\n<\/ol>\n<p>So, the cycle goes like a source program is provided as input to a language processor. Where the analysis phase lexically, syntactically and semantically analyzes the source program. However, the synthesis phase generates a target code.<br \/>\n<img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3731\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap-1.jpg\" alt=\"Semantic Gap 1\" width=\"137\" height=\"300\" \/><a name=\"Types\"><\/a><\/p>\n<h3>Language Processor Types<\/h3>\n<p>Now there are two different kinds of language processors in the computer.<\/p>\n<ol>\n<li>The <strong>program generator<\/strong> converts the user-specified program into a procedure-oriented programming language.<\/li>\n<li>A <strong>compiler or interpreter<\/strong> helps to convert the program written in a programming language to the machine language or a language close to it.<\/li>\n<\/ol>\n<p>The compiler is responsible for converting the program written in a programming language into the machine language or a language close to the machine language. However, the interpreter is a little bit different from the compiler. It analyzes the program written in a programming language and starts performing the computations specified in the program with the help of the computer.<\/p>\n<p>The use of compiler and interpreter depends on the need for different programming environments.<\/p>\n<p>So, this is all about the language processor. We have learned how it converts the source program into a target program that is either in machine language or a language close to it. We have also discussed the activities and fundamentals of the language processor.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A language processor is a processor that processes a language and translates it into another language. In system programming, a language processor processes a program in the source language and translates it into the target language. Usually, the source language is a programming language, and the target language is a machine language. While translating, it [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_genesis_hide_title":false,"_genesis_hide_breadcrumbs":false,"_genesis_hide_singular_image":false,"_genesis_hide_footer_widgets":false,"_genesis_custom_body_class":"","_genesis_custom_post_class":"","_genesis_layout":"","footnotes":""},"categories":[13],"tags":[],"class_list":{"0":"post-3717","1":"post","2":"type-post","3":"status-publish","4":"format-standard","6":"category-compiler-design","7":"entry"},"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v26.6 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>What is Language Processor? Definition, Types and Fundamentals - Binary Terms<\/title>\n<meta name=\"description\" content=\"A language processor is a processor that processes a language in on form and translates it into another language.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/binaryterms.com\/language-processor.html\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Language Processor? Definition, Types and Fundamentals - Binary Terms\" \/>\n<meta property=\"og:description\" content=\"A language processor is a processor that processes a language in on form and translates it into another language.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/binaryterms.com\/language-processor.html\" \/>\n<meta property=\"og:site_name\" content=\"Binary Terms\" \/>\n<meta property=\"article:published_time\" content=\"2022-09-10T08:37:36+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-09-10T09:29:13+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap.jpg\" \/>\n<meta name=\"author\" content=\"Neha T\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Neha T\" \/>\n\t<meta name=\"twitter:label2\" content=\"Estimated reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/binaryterms.com\/language-processor.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/language-processor.html\"},\"author\":{\"name\":\"Neha T\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe\"},\"headline\":\"Language Processor\",\"datePublished\":\"2022-09-10T08:37:36+00:00\",\"dateModified\":\"2022-09-10T09:29:13+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/language-processor.html\"},\"wordCount\":1225,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/binaryterms.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/language-processor.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap.jpg\",\"articleSection\":[\"Compiler Design\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/binaryterms.com\/language-processor.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/binaryterms.com\/language-processor.html\",\"url\":\"https:\/\/binaryterms.com\/language-processor.html\",\"name\":\"What is Language Processor? Definition, Types and Fundamentals - Binary Terms\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/language-processor.html#primaryimage\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/language-processor.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap.jpg\",\"datePublished\":\"2022-09-10T08:37:36+00:00\",\"dateModified\":\"2022-09-10T09:29:13+00:00\",\"description\":\"A language processor is a processor that processes a language in on form and translates it into another language.\",\"breadcrumb\":{\"@id\":\"https:\/\/binaryterms.com\/language-processor.html#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/binaryterms.com\/language-processor.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/binaryterms.com\/language-processor.html#primaryimage\",\"url\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap.jpg\",\"contentUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap.jpg\",\"width\":400,\"height\":225,\"caption\":\"Semantic Gap\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/binaryterms.com\/language-processor.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/binaryterms.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Language Processor\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/binaryterms.com\/#website\",\"url\":\"https:\/\/binaryterms.com\/\",\"name\":\"Binary Terms\",\"description\":\"The Computer Science &amp; IT Guide\",\"publisher\":{\"@id\":\"https:\/\/binaryterms.com\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/binaryterms.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-GB\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/binaryterms.com\/#organization\",\"name\":\"Binary Terms\",\"url\":\"https:\/\/binaryterms.com\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png\",\"contentUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png\",\"width\":400,\"height\":63,\"caption\":\"Binary Terms\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/\"}},{\"@type\":\"Person\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe\",\"name\":\"Neha T\",\"url\":\"https:\/\/binaryterms.com\/author\/author\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"What is Language Processor? Definition, Types and Fundamentals - Binary Terms","description":"A language processor is a processor that processes a language in on form and translates it into another language.","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:\/\/binaryterms.com\/language-processor.html","og_locale":"en_GB","og_type":"article","og_title":"What is Language Processor? Definition, Types and Fundamentals - Binary Terms","og_description":"A language processor is a processor that processes a language in on form and translates it into another language.","og_url":"https:\/\/binaryterms.com\/language-processor.html","og_site_name":"Binary Terms","article_published_time":"2022-09-10T08:37:36+00:00","article_modified_time":"2022-09-10T09:29:13+00:00","og_image":[{"url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap.jpg","type":"","width":"","height":""}],"author":"Neha T","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Neha T","Estimated reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/binaryterms.com\/language-processor.html#article","isPartOf":{"@id":"https:\/\/binaryterms.com\/language-processor.html"},"author":{"name":"Neha T","@id":"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe"},"headline":"Language Processor","datePublished":"2022-09-10T08:37:36+00:00","dateModified":"2022-09-10T09:29:13+00:00","mainEntityOfPage":{"@id":"https:\/\/binaryterms.com\/language-processor.html"},"wordCount":1225,"commentCount":0,"publisher":{"@id":"https:\/\/binaryterms.com\/#organization"},"image":{"@id":"https:\/\/binaryterms.com\/language-processor.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap.jpg","articleSection":["Compiler Design"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/binaryterms.com\/language-processor.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/binaryterms.com\/language-processor.html","url":"https:\/\/binaryterms.com\/language-processor.html","name":"What is Language Processor? Definition, Types and Fundamentals - Binary Terms","isPartOf":{"@id":"https:\/\/binaryterms.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/binaryterms.com\/language-processor.html#primaryimage"},"image":{"@id":"https:\/\/binaryterms.com\/language-processor.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap.jpg","datePublished":"2022-09-10T08:37:36+00:00","dateModified":"2022-09-10T09:29:13+00:00","description":"A language processor is a processor that processes a language in on form and translates it into another language.","breadcrumb":{"@id":"https:\/\/binaryterms.com\/language-processor.html#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/binaryterms.com\/language-processor.html"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/binaryterms.com\/language-processor.html#primaryimage","url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap.jpg","contentUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/09\/Semantic-Gap.jpg","width":400,"height":225,"caption":"Semantic Gap"},{"@type":"BreadcrumbList","@id":"https:\/\/binaryterms.com\/language-processor.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/binaryterms.com\/"},{"@type":"ListItem","position":2,"name":"Language Processor"}]},{"@type":"WebSite","@id":"https:\/\/binaryterms.com\/#website","url":"https:\/\/binaryterms.com\/","name":"Binary Terms","description":"The Computer Science &amp; IT Guide","publisher":{"@id":"https:\/\/binaryterms.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/binaryterms.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-GB"},{"@type":"Organization","@id":"https:\/\/binaryterms.com\/#organization","name":"Binary Terms","url":"https:\/\/binaryterms.com\/","logo":{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/","url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png","contentUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2020\/05\/binary-terms-logo1.png","width":400,"height":63,"caption":"Binary Terms"},"image":{"@id":"https:\/\/binaryterms.com\/#\/schema\/logo\/image\/"}},{"@type":"Person","@id":"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe","name":"Neha T","url":"https:\/\/binaryterms.com\/author\/author"}]}},"_links":{"self":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/3717","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/comments?post=3717"}],"version-history":[{"count":17,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/3717\/revisions"}],"predecessor-version":[{"id":3739,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/3717\/revisions\/3739"}],"wp:attachment":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/media?parent=3717"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/categories?post=3717"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/tags?post=3717"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}