{"id":3444,"date":"2022-03-09T17:17:04","date_gmt":"2022-03-09T11:47:04","guid":{"rendered":"https:\/\/binaryterms.com\/?p=3444"},"modified":"2022-03-10T10:25:30","modified_gmt":"2022-03-10T04:55:30","slug":"operating-system-structure","status":"publish","type":"post","link":"https:\/\/binaryterms.com\/operating-system-structure.html","title":{"rendered":"Operating System Structure"},"content":{"rendered":"<p>The operating system structure illustrates the <strong>organization<\/strong> of modules inside it. The structure of the operating system varies from system to system. Engineers design it more carefully. So that the operating system functions properly and adopts the modification easily.<\/p>\n<p>We will be discussing different structures of the operating systems. We will learn how are modules organized in each operating system. How does the system work? And what is the use of each system?<\/p>\n<h2>Content: Types of Operating System Structure<\/h2>\n<ol>\n<li><a href=\"#MonolithicSystems\">Monolithic Systems<\/a><\/li>\n<li><a href=\"#LayeredSystems\">Layered Systems<\/a><\/li>\n<li><a href=\"#MicrokernelsSystems\">Microkernels Systems<\/a><\/li>\n<li><a href=\"#Client-ServerSystems\">Client-Server Systems<\/a><\/li>\n<li><a href=\"#VirtualSystems\">Virtual Systems<\/a><\/li>\n<li><a href=\"#ExokernelSystems\">Exokernel Systems<\/a><\/li>\n<\/ol>\n<p><a name=\"MonolithicSystems\"><\/a><\/p>\n<h3>Monolithic Systems<\/h3>\n<p>In the monolithic system, the entire operating system is a <strong>large<\/strong> binary program in a kernel mode.\u00a0This program consists of several <strong>procedures.<\/strong> And these procedures are linked. Such that each procedure in the program can call any other procedure without any restriction.<\/p>\n<p>When a procedure calls another procedure. The called procedure provides some useful computation needed by the calling procedure.<\/p>\n<p>As we said that every procedure is free to call other procedures without any restriction. And we have for suppose, thousands of procedures in the operating system program.<\/p>\n<p>Then such a kind of operating system is difficult to understand. And is even unmanageable. If one of the procedures crashes while executing. It may crash the entire operating system.<\/p>\n<p>To overcome this drawback of monolithic structure it was further modified. So the procedures are organized as you can see in the figure below:<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3449\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Monolithic-System.jpg\" alt=\"Monolithic System\" width=\"550\" height=\"336\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Monolithic-System.jpg 550w, https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Monolithic-System-300x183.jpg 300w\" sizes=\"auto, (max-width: 550px) 100vw, 550px\" \/><\/p>\n<ul>\n<li>The main procedure invokes the requested service procedure.<\/li>\n<li>The requested service procedure carries out the system call.<\/li>\n<li>The utility procedure supports the service procedure to carry out the system call.<\/li>\n<\/ul>\n<p>In this structure, for each system call there is is a distinct procedure. And utility procedure helps the service procedure in carrying out that particular system call.<\/p>\n<p><a name=\"LayeredSystems\"><\/a><\/p>\n<h3>Layered Systems<\/h3>\n<p>The layered operating system organizes the operating system as a hierarchy of layers.\u00a0The first system designed in such a way was THE system i.e., Technische Hogeschool Eindhoven. It was designed by E.W. Dijkstra and his student.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3450\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/structure-of-Layerd-operating-system.jpg\" alt=\"structure of Layerd operating system\" width=\"496\" height=\"315\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/structure-of-Layerd-operating-system.jpg 496w, https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/structure-of-Layerd-operating-system-300x191.jpg 300w\" sizes=\"auto, (max-width: 496px) 100vw, 496px\" \/><\/p>\n<p>THE system has six layers as described below:<\/p>\n<ol>\n<li><strong>Layer 0<\/strong> \u2013 This layer handles allocating the processor to the processes. It switches the processes when any interrupt occurs or if the process timer gets expired. This layer also provides multiprogramming.<\/li>\n<li>\u00a0<strong>Layer 1<\/strong> \u2013 This layer handles memory management. It allocates the main memory to the processes. Along with main memory, this layer provides a 512K word drum. That holds the parts of the process that we also refer to as pages.<br \/>\nHere the process does not have to worry about whether it is on the main memory or on the drum. It is the responsibility of layer 1 to allocate the memory to the process when required. And deallocate the memory when there is no need.<\/li>\n<li><strong>Layer 2<\/strong> \u2013 This layer deals with the communication between the process and its operator i.e. the user.<\/li>\n<li><strong>Layer 3<\/strong> \u2013 It manages the I\/O devices. And also manages the information stream between the user program and I\/O devices. And between I\/O devices and the process.<\/li>\n<li><strong>Layer 4<\/strong> \u2013 It consists of the user program.<\/li>\n<li><strong>Layer 5<\/strong> \u2013 It holds the system operator process.<\/li>\n<\/ol>\n<p>In layered structure, the designer can decide the kernel mode and user mode boundary. However, traditionally all the layers of the operating system lie in kernel mode.<br \/>\n<a name=\"MicrokernelsSystems\"><\/a><\/p>\n<h3>Microkernels Systems<\/h3>\n<p>The microkernels structure divides the operating system into small modules. Among these several small modules, only one module runs in the kernel mode and we refer to it as a <strong>microkernel.<\/strong> And rest of the modules run as user processes.<\/p>\n<p>Now when you run a device driver or a file system as a separate user process. And if there occurs a bug in any one of them. Then it would only crash that particular component rather crashing your entire system.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3452\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Microkernel-operating-system-structure.jpg\" alt=\"Microkernel operating system structure\" width=\"590\" height=\"326\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Microkernel-operating-system-structure.jpg 590w, https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Microkernel-operating-system-structure-300x166.jpg 300w\" sizes=\"auto, (max-width: 590px) 100vw, 590px\" \/><\/p>\n<p>In contrast, in a monolithic structure, all the modules can call other modules without any restriction. Then a failure of one module may crash your entire system. Thus, the structure of the microkernel operating system achieves high reliability.<\/p>\n<p>The microkernel structure is not used to design the desktop operating system. Instead, it is used to design:<\/p>\n<ul>\n<li>The real-time OS<\/li>\n<li>Industrial OS,<\/li>\n<li>Avionics OS,<\/li>\n<li>Military applications etc.<\/li>\n<\/ul>\n<p>That means the microkernel structure is used to design an operating system that has high reliability.<br \/>\n<a name=\"Client-ServerSystems\"><\/a><\/p>\n<h3>Client-Server Systems<\/h3>\n<p>The structure of the client-server system is a slight variation of a microkernel. Here the modules or the processes are classified into two categories.<\/p>\n<ol>\n<li>One category has processes that provide some kind of service. We refer to it as servers.<\/li>\n<li>The other has the processes that consume the services provided by the server. We refer to such processes as clients.<\/li>\n<\/ol>\n<p>This structure of the operating system is a client-server system.<\/p>\n<h4>Working of Client-Server System<\/h4>\n<p>The client and server processes communicate with each other by passing messages.<\/p>\n<ol>\n<li>The client process initiates by constructing a message. And send it to the intended service process. The message illustrates what the client requires.<\/li>\n<li>The service process receives the message created by the client process. And performs the service requested by the client. And then sends the result to the requesting client process in the form of a message.<\/li>\n<\/ol>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3448\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Client-Server-operating-system-structure.jpg\" alt=\"Client-Server operating system structure\" width=\"600\" height=\"235\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Client-Server-operating-system-structure.jpg 600w, https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Client-Server-operating-system-structure-300x118.jpg 300w\" sizes=\"auto, (max-width: 600px) 100vw, 600px\" \/><\/p>\n<p>If both client and server processes are executing on the same machine. Then a certain amount of optimization is possible.<\/p>\n<p>However, even if the client and the server process are running on the different systems connected using LAN or WAN. Then also the client process does not have to worry about whether the message is handled by their own system. Or the message is carried over the network to the server running on another system.<br \/>\nFrom the client&#8217;s point of view, the same thing happens in both cases:<\/p>\n<ul>\n<li>If the client and server are running on the same system.<\/li>\n<li>If client and server are running on different systems connected by the network.<\/li>\n<\/ul>\n<p>The client sends a request message to the server and the server replies back. The operating system with a client-server structure connects to form a network.<br \/>\n<a name=\"VirtualSystems\"><\/a><\/p>\n<h3>Virtual Systems<\/h3>\n<p>The structure of the virtual system is a logical approach to the layered structure. Here the components of the systems such as CPU, memory, disk drives, network interface card, etc. all are running in different execution environments.<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3451\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Virtual-operating-system-structure.jpg\" alt=\"Virtual operating system structure\" width=\"478\" height=\"462\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Virtual-operating-system-structure.jpg 478w, https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Virtual-operating-system-structure-300x290.jpg 300w\" sizes=\"auto, (max-width: 478px) 100vw, 478px\" \/><\/p>\n<p>In this way, the virtual system creates an illusion for the user. That the entire system is running in its own private computer. Thus, the user is able to share the same hardware to run different execution environments. These executing environments are nothing but operating systems.<br \/>\n<a name=\"ExokernelSystems\"><\/a><\/p>\n<h3>Exokernel Systems<\/h3>\n<p>Exokernel structure divides the resources. And provide each user with a separate subset of resources. Thus, each virtual machine runs its own operating system.<\/p>\n<p>Exokernel is a program in the kernel that keeps a check. That no virtual machine is trying to access the resources of another virtual machine.<\/p>\n<p>So these are the different structures that can be used while designing an operating system.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The operating system structure illustrates the organization of modules inside it. The structure of the operating system varies from system to system. Engineers design it more carefully. So that the operating system functions properly and adopts the modification easily. We will be discussing different structures of the operating systems. We will learn how are modules [&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":[2],"tags":[],"class_list":{"0":"post-3444","1":"post","2":"type-post","3":"status-publish","4":"format-standard","6":"category-operating-system","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 Operating System Structure? - Binary Terms<\/title>\n<meta name=\"description\" content=\"The operating system structure illustrates the organization of modules inside it. The structure of the operating system varies from system to system.\" \/>\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\/operating-system-structure.html\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is Operating System Structure? - Binary Terms\" \/>\n<meta property=\"og:description\" content=\"The operating system structure illustrates the organization of modules inside it. The structure of the operating system varies from system to system.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/binaryterms.com\/operating-system-structure.html\" \/>\n<meta property=\"og:site_name\" content=\"Binary Terms\" \/>\n<meta property=\"article:published_time\" content=\"2022-03-09T11:47:04+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-03-10T04:55:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Monolithic-System.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\/operating-system-structure.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/operating-system-structure.html\"},\"author\":{\"name\":\"Neha T\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe\"},\"headline\":\"Operating System Structure\",\"datePublished\":\"2022-03-09T11:47:04+00:00\",\"dateModified\":\"2022-03-10T04:55:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/operating-system-structure.html\"},\"wordCount\":1145,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/binaryterms.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/operating-system-structure.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Monolithic-System.jpg\",\"articleSection\":[\"Operating System\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/binaryterms.com\/operating-system-structure.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/binaryterms.com\/operating-system-structure.html\",\"url\":\"https:\/\/binaryterms.com\/operating-system-structure.html\",\"name\":\"What is Operating System Structure? - Binary Terms\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/operating-system-structure.html#primaryimage\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/operating-system-structure.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Monolithic-System.jpg\",\"datePublished\":\"2022-03-09T11:47:04+00:00\",\"dateModified\":\"2022-03-10T04:55:30+00:00\",\"description\":\"The operating system structure illustrates the organization of modules inside it. The structure of the operating system varies from system to system.\",\"breadcrumb\":{\"@id\":\"https:\/\/binaryterms.com\/operating-system-structure.html#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/binaryterms.com\/operating-system-structure.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/binaryterms.com\/operating-system-structure.html#primaryimage\",\"url\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Monolithic-System.jpg\",\"contentUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Monolithic-System.jpg\",\"width\":550,\"height\":336,\"caption\":\"Monolithic System\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/binaryterms.com\/operating-system-structure.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/binaryterms.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Operating System Structure\"}]},{\"@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 Operating System Structure? - Binary Terms","description":"The operating system structure illustrates the organization of modules inside it. The structure of the operating system varies from system to system.","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\/operating-system-structure.html","og_locale":"en_GB","og_type":"article","og_title":"What is Operating System Structure? - Binary Terms","og_description":"The operating system structure illustrates the organization of modules inside it. The structure of the operating system varies from system to system.","og_url":"https:\/\/binaryterms.com\/operating-system-structure.html","og_site_name":"Binary Terms","article_published_time":"2022-03-09T11:47:04+00:00","article_modified_time":"2022-03-10T04:55:30+00:00","og_image":[{"url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Monolithic-System.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\/operating-system-structure.html#article","isPartOf":{"@id":"https:\/\/binaryterms.com\/operating-system-structure.html"},"author":{"name":"Neha T","@id":"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe"},"headline":"Operating System Structure","datePublished":"2022-03-09T11:47:04+00:00","dateModified":"2022-03-10T04:55:30+00:00","mainEntityOfPage":{"@id":"https:\/\/binaryterms.com\/operating-system-structure.html"},"wordCount":1145,"commentCount":0,"publisher":{"@id":"https:\/\/binaryterms.com\/#organization"},"image":{"@id":"https:\/\/binaryterms.com\/operating-system-structure.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Monolithic-System.jpg","articleSection":["Operating System"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/binaryterms.com\/operating-system-structure.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/binaryterms.com\/operating-system-structure.html","url":"https:\/\/binaryterms.com\/operating-system-structure.html","name":"What is Operating System Structure? - Binary Terms","isPartOf":{"@id":"https:\/\/binaryterms.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/binaryterms.com\/operating-system-structure.html#primaryimage"},"image":{"@id":"https:\/\/binaryterms.com\/operating-system-structure.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Monolithic-System.jpg","datePublished":"2022-03-09T11:47:04+00:00","dateModified":"2022-03-10T04:55:30+00:00","description":"The operating system structure illustrates the organization of modules inside it. The structure of the operating system varies from system to system.","breadcrumb":{"@id":"https:\/\/binaryterms.com\/operating-system-structure.html#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/binaryterms.com\/operating-system-structure.html"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/binaryterms.com\/operating-system-structure.html#primaryimage","url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Monolithic-System.jpg","contentUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/Monolithic-System.jpg","width":550,"height":336,"caption":"Monolithic System"},{"@type":"BreadcrumbList","@id":"https:\/\/binaryterms.com\/operating-system-structure.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/binaryterms.com\/"},{"@type":"ListItem","position":2,"name":"Operating System Structure"}]},{"@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\/3444","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=3444"}],"version-history":[{"count":6,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/3444\/revisions"}],"predecessor-version":[{"id":3455,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/3444\/revisions\/3455"}],"wp:attachment":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/media?parent=3444"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/categories?post=3444"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/tags?post=3444"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}