{"id":3457,"date":"2022-03-11T17:15:54","date_gmt":"2022-03-11T11:45:54","guid":{"rendered":"https:\/\/binaryterms.com\/?p=3457"},"modified":"2022-04-04T11:18:30","modified_gmt":"2022-04-04T05:48:30","slug":"system-call-in-operating-system","status":"publish","type":"post","link":"https:\/\/binaryterms.com\/system-call-in-operating-system.html","title":{"rendered":"System Call in Operating System"},"content":{"rendered":"<p>A system call is a function used by the user program to request the operating system&#8217;s services. System call creates an <strong>interface<\/strong> that helps user programmers to communicate with the operating system to request its services.<\/p>\n<p>System calls are always executed in the kernel mode of the operating system. In this context, we will be discussing the system call, and how to invoke them. We will even discuss its working, types and how to pass parameters to such calls.<\/p>\n<h2>Content: System Call in Operating System<\/h2>\n<ol>\n<li><a href=\"#WhatisaSystemCall?\">What is a System Call?<\/a><\/li>\n<li><a href=\"#HowSystemCallsareInvoked?\">How System Calls are Invoked?<\/a><\/li>\n<li><a href=\"#HowDoesSystemCallWorks?\">How Does System Call Work?<\/a><\/li>\n<li><a href=\"#TypesofSystemCalls\">Types of System Calls<\/a><\/li>\n<li><a href=\"#ExampleofHowSystemCallsareUsed?\">Example of How System Calls are Used?<\/a><\/li>\n<li><a href=\"#HowtoPassParameterstoSystemCall?\">How to Pass Parameters to System Call?<\/a><\/li>\n<\/ol>\n<p><a name=\"WhatisaSystemCall?\"><\/a><\/p>\n<h3>What is a System Call?<\/h3>\n<p>A system call is a function or a method. The user programs use these functions to invoke the operating system&#8217;s services.<\/p>\n<p>While designing the application program, the programmer has to include desired system calls. This will help the user program get the operating system&#8217;s services.<br \/>\nThus, the system call creates an interface between the user program and the operating system.<br \/>\n<a name=\"HowSystemCallsareInvoked?\"><\/a><\/p>\n<h3>How System Calls are Invoked?<\/h3>\n<p>Each operating system has its own set of system calls. And to invoke these system calls it has defined set functions. We refer to this set of functions as an application programming interface i.e., API.<\/p>\n<p>Thus, for creating an application program. The programmer uses the functions provided by API. And these functions in the user program invoke the actual system calls to get the services of the OS.<\/p>\n<p>For example, if a user program wants to create a new process in Windows OS. Then the API function provided by Win32 API to create a new function is CreateProcess(). This CreateProcess() function invokes the system call NTCreateProcess() of Windows OS.<\/p>\n<p>API also specify what parameters must be passed with each function. And what return value will the function provide.<br \/>\nThe most common types of API are:<\/p>\n<ol>\n<li>Win 32 API of Windows operating system<\/li>\n<li>POSIX API of POSIX-based operating system<\/li>\n<li>Java API of Java-based operating system<\/li>\n<\/ol>\n<p>The different operating systems may have different names for the same system call.<br \/>\n<a name=\"HowDoesSystemCallWorks?\"><\/a><\/p>\n<h3>How Does System Call Work?<\/h3>\n<p>We have learned about the system call. And we also know how to invoke them. Now when invoked how does it works?<\/p>\n<p><img loading=\"lazy\" decoding=\"async\" class=\"aligncenter size-full wp-image-3458\" src=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/System-Call-in-Operating-System.jpg\" alt=\"System Call in Operating System\" width=\"437\" height=\"386\" srcset=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/System-Call-in-Operating-System.jpg 437w, https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/System-Call-in-Operating-System-300x265.jpg 300w\" sizes=\"auto, (max-width: 437px) 100vw, 437px\" \/><\/p>\n<ol>\n<li>The user program starts executing in the user mode. And it continues till the instruction with API function occurs.<\/li>\n<li>As soon as the processor identifies an API function. It invokes the associated system call. And then the control of the process goes to the kernel mode.<\/li>\n<li>As soon as the system call\u2019s execution gets complete the control of the process returns to the user mode.<\/li>\n<\/ol>\n<p><a name=\"TypesofSystemCalls\"><\/a><\/p>\n<h3>Types of System Calls<\/h3>\n<p>We can classify system calls on the basis of services they invoke.<\/p>\n<h4>Process Control<\/h4>\n<p>System calls used to control a process provides the following services.<\/p>\n<ul>\n<li>End the process normally, to abort the process forcefully.<\/li>\n<li>Load a process to the main memory, and execute the process.<\/li>\n<li>Create a new process, and terminate the current process.<\/li>\n<li>Wait for a process to finish its execution. Wait till a certain event occurs, signal when the event has occurred.<\/li>\n<li>Allocate memory to a process, if the process terminates then free the memory.<\/li>\n<\/ul>\n<h4>File Management<\/h4>\n<p>This kind of system call provides the following services:<\/p>\n<ul>\n<li>Create and delete files.<\/li>\n<li>Open and close the file.<\/li>\n<li>Read from a file, write to a particular file.<\/li>\n<li>To get the attribute of a file and to set the attribute of a file.<\/li>\n<\/ul>\n<h4>Device Management<\/h4>\n<p>A system call that manages the I\/O devices provides the following services:<\/p>\n<ul>\n<li>A process while executing may require devices. Such as access to I\/O devices, files system, main memory etc.<\/li>\n<li>So, it can request a device and after the task is over it can release the device.<\/li>\n<li>Once the process gets access to a requested device. It can perform read, write or reposition operations.<\/li>\n<li>To get the attribute of a certain device or set the attribute of a certain device.<\/li>\n<li>The call can be made to attach a device to the executing processor to detach it.<\/li>\n<\/ul>\n<h4>Information Maintenance<\/h4>\n<p>This system calls transfers the information between the user program and OS. So, the services provided by this kind of system call are:<\/p>\n<ul>\n<li>Get the date or time of the system. Set the date or time of the system.<\/li>\n<li>Get the information about the system. Set the system information.<\/li>\n<li>Get the attributes of a particular process of the operating system. Or of a certain file of the system or of the attached devices.<\/li>\n<li>Set the attributes of a particular process of the operating system. Or of a certain file of the system or of the attached devices.<\/li>\n<\/ul>\n<h4>Communications<\/h4>\n<p>This kind of system call helps in connecting the system to a network. Services provided by these system calls are:<\/p>\n<ul>\n<li>Create a new connection to transfer the data. Delete a connection after the transmission gets complete.<\/li>\n<li>Send a message on a particular connection. Receive a message from a particular connection.<\/li>\n<li>Attach a particular remote device to the network. Detach a particular remote device from the network.<\/li>\n<\/ul>\n<p><a name=\"ExampleofHowSystemCallsareUsed?\"><\/a><\/p>\n<h3>Example of How System Calls are Used?<\/h3>\n<p>To understand the system call let us overview a scenario. There are two files say the source file and the destination file. Now the programmer writes a program that reads the source file&#8217;s content. And then copy the content to the destination file.<\/p>\n<p>To perform this simple task the operating system has to execute a series of system calls. The sequence of system calls is executed to copy the content of the source file to the destination file.<\/p>\n<p>Requirement \u2013 The name of the two files.<\/p>\n<h5>For Interactive System<\/h5>\n<ul>\n<li>Call 1 \u2013 Prompt a message on the screen to provide the name of the source and the destination file.<\/li>\n<li>Call 2 \u2013 Read the characters types using the keyboard and identify the name of the two files.<\/li>\n<\/ul>\n<h5>For Icon-based or Mouse-based System<\/h5>\n<ul>\n<li>Call \u2013 Pop up a window that displays a menu of files. The user can then select the source file.<\/li>\n<li>Call \u2013 Pop up a window displaying the file menu to select the destination file.<\/li>\n<\/ul>\n<p>Now the processor has the names of both files.<\/p>\n<ul>\n<li>Call \u2013 Open the source file.<\/li>\n<li>Call \u2013 Open or create the destination file.<\/li>\n<\/ul>\n<p>If an error occurs, Such as the input file doesn\u2019t exist or the file is protected.<\/p>\n<ul>\n<li>Call \u2013 Print an error message on the screen.<\/li>\n<li>Call \u2013 Abort the program.<\/li>\n<\/ul>\n<p>If an input file exists. But while creating the destination file the system identifies that system already has a file with the same name then.<\/p>\n<ul>\n<li>Call \u2013 abort the program.<\/li>\n<\/ul>\n<p>Or<\/p>\n<ul>\n<li>Call \u2013 Delete the existing file and create a new destination file.<\/li>\n<\/ul>\n<p>As the program has both the files. It will now enter a loop.<\/p>\n<ul>\n<li>Call \u2013 Read from the source file.<\/li>\n<li>Call \u2013 Write to the destination file.<\/li>\n<\/ul>\n<p>The possible error that might occur is hardware failure while reading, the failure in a write operation. Such as no more disk space or the printer is out of paper etc. If no error occurs in the read and writes operation then:<\/p>\n<ul>\n<li>Call \u2013 Close both the files.<\/li>\n<li>Call \u2013 Prompt a message. The message must display the successful execution of the program.<\/li>\n<li>Call \u2013 Terminate the program.<\/li>\n<\/ul>\n<p>As you can notice even in performing such a simple task the system executes a number of system calls. Thus the operating system executes thousands of system call frequently.<br \/>\n<a name=\"HowtoPassParameterstoSystemCall?\"><\/a><\/p>\n<h3>How to Pass Parameters to System Call?<\/h3>\n<p>The three general approaches for passing parameters to system calls are:<\/p>\n<ul>\n<li>The parameters can be passed to the system call in registers.<\/li>\n<li>If the number of parameters is more and they are unable to accommodate in the registers. The system can store them on the block in memory. And the address of this block is passed as a parameter.<\/li>\n<li>The parameters are pushed onto the system stack and popped up when required.<\/li>\n<\/ul>\n<p>The last two methods are more convenient. As they do not restrict the number and the length of the parameters.<\/p>\n<p>So, this is all about the system call that helps the user programmers to invoke the services of the operating system. We have seen how to invoke them. How does it work? We have also seen the types of system calls and also how to pass to a parameters system call.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>A system call is a function used by the user program to request the operating system&#8217;s services. System call creates an interface that helps user programmers to communicate with the operating system to request its services. System calls are always executed in the kernel mode of the operating system. In this context, we will be [&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-3457","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 System Call in Operating System? Working, Types - Binary Terms<\/title>\n<meta name=\"description\" content=\"A system call is a way in which the user program can request the services of the operating system. System call creates an interface between the user programmer and the operating 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\/system-call-in-operating-system.html\" \/>\n<meta property=\"og:locale\" content=\"en_GB\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"What is System Call in Operating System? Working, Types - Binary Terms\" \/>\n<meta property=\"og:description\" content=\"A system call is a way in which the user program can request the services of the operating system. System call creates an interface between the user programmer and the operating system.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/binaryterms.com\/system-call-in-operating-system.html\" \/>\n<meta property=\"og:site_name\" content=\"Binary Terms\" \/>\n<meta property=\"article:published_time\" content=\"2022-03-11T11:45:54+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2022-04-04T05:48:30+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/System-Call-in-Operating-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\/system-call-in-operating-system.html#article\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/system-call-in-operating-system.html\"},\"author\":{\"name\":\"Neha T\",\"@id\":\"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe\"},\"headline\":\"System Call in Operating System\",\"datePublished\":\"2022-03-11T11:45:54+00:00\",\"dateModified\":\"2022-04-04T05:48:30+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/system-call-in-operating-system.html\"},\"wordCount\":1385,\"commentCount\":1,\"publisher\":{\"@id\":\"https:\/\/binaryterms.com\/#organization\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/system-call-in-operating-system.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/System-Call-in-Operating-System.jpg\",\"articleSection\":[\"Operating System\"],\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/binaryterms.com\/system-call-in-operating-system.html#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/binaryterms.com\/system-call-in-operating-system.html\",\"url\":\"https:\/\/binaryterms.com\/system-call-in-operating-system.html\",\"name\":\"What is System Call in Operating System? Working, Types - Binary Terms\",\"isPartOf\":{\"@id\":\"https:\/\/binaryterms.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/binaryterms.com\/system-call-in-operating-system.html#primaryimage\"},\"image\":{\"@id\":\"https:\/\/binaryterms.com\/system-call-in-operating-system.html#primaryimage\"},\"thumbnailUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/System-Call-in-Operating-System.jpg\",\"datePublished\":\"2022-03-11T11:45:54+00:00\",\"dateModified\":\"2022-04-04T05:48:30+00:00\",\"description\":\"A system call is a way in which the user program can request the services of the operating system. System call creates an interface between the user programmer and the operating system.\",\"breadcrumb\":{\"@id\":\"https:\/\/binaryterms.com\/system-call-in-operating-system.html#breadcrumb\"},\"inLanguage\":\"en-GB\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/binaryterms.com\/system-call-in-operating-system.html\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-GB\",\"@id\":\"https:\/\/binaryterms.com\/system-call-in-operating-system.html#primaryimage\",\"url\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/System-Call-in-Operating-System.jpg\",\"contentUrl\":\"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/System-Call-in-Operating-System.jpg\",\"width\":437,\"height\":386,\"caption\":\"System Call in Operating System\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/binaryterms.com\/system-call-in-operating-system.html#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/binaryterms.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"System Call in Operating System\"}]},{\"@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 System Call in Operating System? Working, Types - Binary Terms","description":"A system call is a way in which the user program can request the services of the operating system. System call creates an interface between the user programmer and the operating 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\/system-call-in-operating-system.html","og_locale":"en_GB","og_type":"article","og_title":"What is System Call in Operating System? Working, Types - Binary Terms","og_description":"A system call is a way in which the user program can request the services of the operating system. System call creates an interface between the user programmer and the operating system.","og_url":"https:\/\/binaryterms.com\/system-call-in-operating-system.html","og_site_name":"Binary Terms","article_published_time":"2022-03-11T11:45:54+00:00","article_modified_time":"2022-04-04T05:48:30+00:00","og_image":[{"url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/System-Call-in-Operating-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\/system-call-in-operating-system.html#article","isPartOf":{"@id":"https:\/\/binaryterms.com\/system-call-in-operating-system.html"},"author":{"name":"Neha T","@id":"https:\/\/binaryterms.com\/#\/schema\/person\/e495f1d57f5c0a4c521cc3dba95661fe"},"headline":"System Call in Operating System","datePublished":"2022-03-11T11:45:54+00:00","dateModified":"2022-04-04T05:48:30+00:00","mainEntityOfPage":{"@id":"https:\/\/binaryterms.com\/system-call-in-operating-system.html"},"wordCount":1385,"commentCount":1,"publisher":{"@id":"https:\/\/binaryterms.com\/#organization"},"image":{"@id":"https:\/\/binaryterms.com\/system-call-in-operating-system.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/System-Call-in-Operating-System.jpg","articleSection":["Operating System"],"inLanguage":"en-GB","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/binaryterms.com\/system-call-in-operating-system.html#respond"]}]},{"@type":"WebPage","@id":"https:\/\/binaryterms.com\/system-call-in-operating-system.html","url":"https:\/\/binaryterms.com\/system-call-in-operating-system.html","name":"What is System Call in Operating System? Working, Types - Binary Terms","isPartOf":{"@id":"https:\/\/binaryterms.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/binaryterms.com\/system-call-in-operating-system.html#primaryimage"},"image":{"@id":"https:\/\/binaryterms.com\/system-call-in-operating-system.html#primaryimage"},"thumbnailUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/System-Call-in-Operating-System.jpg","datePublished":"2022-03-11T11:45:54+00:00","dateModified":"2022-04-04T05:48:30+00:00","description":"A system call is a way in which the user program can request the services of the operating system. System call creates an interface between the user programmer and the operating system.","breadcrumb":{"@id":"https:\/\/binaryterms.com\/system-call-in-operating-system.html#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https:\/\/binaryterms.com\/system-call-in-operating-system.html"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https:\/\/binaryterms.com\/system-call-in-operating-system.html#primaryimage","url":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/System-Call-in-Operating-System.jpg","contentUrl":"https:\/\/binaryterms.com\/wp-content\/uploads\/2022\/03\/System-Call-in-Operating-System.jpg","width":437,"height":386,"caption":"System Call in Operating System"},{"@type":"BreadcrumbList","@id":"https:\/\/binaryterms.com\/system-call-in-operating-system.html#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/binaryterms.com\/"},{"@type":"ListItem","position":2,"name":"System Call in Operating System"}]},{"@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\/3457","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=3457"}],"version-history":[{"count":9,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/3457\/revisions"}],"predecessor-version":[{"id":3461,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/posts\/3457\/revisions\/3461"}],"wp:attachment":[{"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/media?parent=3457"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/categories?post=3457"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/binaryterms.com\/wp-json\/wp\/v2\/tags?post=3457"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}