{"id":358,"date":"2021-07-12T22:02:37","date_gmt":"2021-07-12T22:02:37","guid":{"rendered":"https:\/\/www.wikitechy.com\/interview-questions\/?p=358"},"modified":"2021-09-14T05:26:21","modified_gmt":"2021-09-14T05:26:21","slug":"write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs","status":"publish","type":"post","link":"https:\/\/www.wikitechy.com\/interview-questions\/cpp\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\/","title":{"rendered":"Write a function that takes an integer array as an input and find the largest number in the array. You cannot sort array or use any API or searching needs ?"},"content":{"rendered":"<h4 id=\"write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\" class=\"color-pink\" style=\"text-align: justify;\">Write a function that takes an integer array as an input and find the largest number in the array. You cannot sort array or use any API or searching needs ?<\/h4>\n<div class=\"code-embed-wrapper\"> <div class=\"code-embed-infos\"> <\/div> <pre class=\"language-cpp code-embed-pre line-numbers\"  data-start=\"1\" data-line-offset=\"0\"><code class=\"language-cpp code-embed-code\">#include<iostream><br\/>using namespace std;<br\/><br\/>int main()<br\/>{<br\/>int name[5],big,i;<br\/><br\/>for(i=0; i<=4; i++) {<br\/>cout << &quot;Enter a value&quot; << i << &quot;:&quot;;<br\/>cin >> name[i];<br\/>}<br\/>cout << &quot;name contains:&quot;;<br\/>for(i=0; i<=4; i++) {<br\/>cout << name[i]<< &quot;\\n&quot;;<br\/>}<br\/><br\/>big = name[0];<br\/>for(i = 0; i <= 4; i++) {<br\/>if(name[i] > big)<br\/>big = name[i];<br\/>}<br\/><br\/>cout << &quot;The Bigest Number::&quot; << big << endl;<br\/><br\/>return 0;<br\/>}<\/code><\/pre> <\/div>\n<p style=\"text-align: justify;\">\n","protected":false},"excerpt":{"rendered":"<p>Answer : #include<iostream>&#8230;<\/p>\n","protected":false},"author":2,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[2080],"tags":[2183,195,2184,491,2208,2207,2211,2212,360,368,211,1816,2185,2186,2187,2188,2189,2190,2191,2192,199,198,363,2209,2210,205,2117,220,2203,2201,2193,2206,2194,2195,2205,2196,2197,222,2122,212,2204,2198,2120,2121,710,207,366,204,217,2116,2202,2199,2123,210,200,2118,2200,968,216,2119,15858],"class_list":["post-358","post","type-post","status-publish","format-standard","hentry","category-cpp","tag-2d-array-c","tag-accenture-interview-questions-and-answers","tag-algorithm-to-find-largest-number-in-an-array","tag-applied-materials-interview-questions-and-answers","tag-array-find","tag-array-in-c","tag-array-in-c-programming","tag-array-programs-in-java","tag-atos-interview-questions-and-answers","tag-bmc-software-interview-questions-and-answers","tag-bosch-india-software-interview-questions-and-answers","tag-c-interview-questions","tag-c-program-to-find-largest-number-in-an-array","tag-c-program-to-find-largest-number-in-an-array-using-function","tag-c-program-to-find-largest-of-n-numbers","tag-c-array-class","tag-c-array-functions","tag-c-program-to-find-largest-and-second-largest-number-in-an-array","tag-c-program-to-find-largest-and-smallest-number-in-an-array","tag-c-program-to-find-largest-of-n-numbersdynamic-array-c","tag-casting-networks-india-pvt-limited-interview-questions-and-answers","tag-chetu-interview-questions-and-answers","tag-ciena-corporation-interview-questions-and-answers","tag-cpp-interview-questions","tag-cpp-interview-questions-and-answers","tag-dell-international-services-india-pvt-ltd-interview-questions-and-answers","tag-einfochips-interview-questions-and-answers","tag-electronics-arts-inc-interview-questions-and-answers","tag-find-largest-number-in-an-array","tag-find-largest-number-in-array","tag-find-largest-number-in-array-c","tag-find-largest-number-in-array-in-java","tag-find-largest-number-in-array-java","tag-find-largest-number-in-array-javascript","tag-find-largest-number-in-java","tag-find-second-largest-number-in-array-in-java","tag-find-smallest-number-in-array-c","tag-flipkart-interview-questions-and-answers","tag-harman-international-interview-questions-and-answers","tag-indecomm-global-services-interview-questions-and-answers","tag-java-find-largest-number-in-list","tag-largest-number-formed-from-an-array-in-clength-of-array-c","tag-larsen-toubro-interview-questions-and-answers","tag-mathworks-india-private-limited-interview-questions-and-answers","tag-mavenir-interview-questions-and-answers","tag-mphasis-interview-questions-and-answers","tag-netapp-interview-questions-and-answers","tag-oracle-corporation-interview-questions-and-answers","tag-peoplestrong-interview-questions-and-answers","tag-philips-software-centre-pvt-ltd-interview-questions-and-answers","tag-program-to-find-largest-number-in-an-array","tag-return-array-cstring-array-c","tag-srm-technologies-interview-questions-and-answers","tag-symphony-teleca-interview-questions-and-answers","tag-tech-mahindra-interview-questions-and-answers","tag-tecnotree-interview-questions-and-answers","tag-two-dimensional-array-in-c-example","tag-wipro-infotech-interview-questions-and-answers","tag-wipro-interview-questions-and-answers","tag-yash-technologies-interview-questions-and-answers","tag-zycus-infotech-interview-questions-and-answers"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.6 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Write a function that takes an integer array as an input - C++ Interview<\/title>\n<meta name=\"description\" content=\"Write a function that takes an integer array as an input and find the largest number in the array. - C++ Interview Questions\" \/>\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.wikitechy.com\/interview-questions\/cpp\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Write a function that takes an integer array as an input - C++ Interview\" \/>\n<meta property=\"og:description\" content=\"Write a function that takes an integer array as an input and find the largest number in the array. - C++ Interview Questions\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.wikitechy.com\/interview-questions\/cpp\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\/\" \/>\n<meta property=\"og:site_name\" content=\"Wikitechy\" \/>\n<meta property=\"article:published_time\" content=\"2021-07-12T22:02:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-09-14T05:26:21+00:00\" \/>\n<meta name=\"author\" content=\"Editor\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Editor\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/cpp\\\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/cpp\\\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\\\/\"},\"author\":{\"name\":\"Editor\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#\\\/schema\\\/person\\\/4d5a581fb5470d1560324bddc5e8b757\"},\"headline\":\"Write a function that takes an integer array as an input and find the largest number in the array. You cannot sort array or use any API or searching needs ?\",\"datePublished\":\"2021-07-12T22:02:37+00:00\",\"dateModified\":\"2021-09-14T05:26:21+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/cpp\\\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\\\/\"},\"wordCount\":207,\"commentCount\":0,\"keywords\":[\"2d array c++\",\"Accenture interview questions and answers\",\"algorithm to find largest number in an array\",\"Applied Materials interview questions and answers\",\"array find\",\"array in c\",\"array in c programming\",\"array programs in java\",\"Atos interview questions and answers\",\"BMC Software interview questions and answers\",\"Bosch India Software interview questions and answers\",\"c interview questions\",\"c program to find largest number in an array\",\"c program to find largest number in an array using function\",\"c program to find largest of n numbers\",\"c++ array class\",\"c++ array functions\",\"c++ program to find largest and second largest number in an array\",\"c++ program to find largest and smallest number in an array\",\"c++ program to find largest of n numbersdynamic array c++\",\"CASTING NETWORKS INDIA PVT LIMITED interview questions and answers\",\"Chetu interview questions and answers\",\"Ciena Corporation interview questions and answers\",\"cpp interview questions\",\"cpp interview questions and answers\",\"Dell International Services India Pvt Ltd interview questions and answers\",\"eInfochips interview questions and answers\",\"Electronics Arts Inc interview questions and answers\",\"find largest number in an array\",\"find largest number in array\",\"find largest number in array c++\",\"find largest number in array in java\",\"find largest number in array java\",\"find largest number in array javascript\",\"find largest number in java\",\"find second largest number in array in java\",\"find smallest number in array c++\",\"Flipkart interview questions and answers\",\"Harman International interview questions and answers\",\"Indecomm Global Services interview questions and answers\",\"java find largest number in list\",\"largest number formed from an array in clength of array c++\",\"Larsen &amp; Toubro interview questions and answers\",\"Mathworks India Private Limited interview questions and answers\",\"Mavenir interview questions and answers\",\"Mphasis interview questions and answers\",\"NetApp interview questions and answers\",\"Oracle Corporation interview questions and answers\",\"PeopleStrong interview questions and answers\",\"Philips Software Centre Pvt Ltd interview questions and answers\",\"program to find largest number in an array\",\"return array c++string array c++\",\"SRM Technologies interview questions and answers\",\"Symphony Teleca interview questions and answers\",\"Tech Mahindra interview questions and answers\",\"Tecnotree interview questions and answers\",\"two dimensional array in c++ example\",\"Wipro Infotech interview questions and answers\",\"Wipro interview questions and answers\",\"Yash Technologies interview questions and answers\",\"zycus infotech interview questions and answers\"],\"articleSection\":[\"C++\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/cpp\\\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/cpp\\\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\\\/\",\"url\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/cpp\\\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\\\/\",\"name\":\"Write a function that takes an integer array as an input - C++ Interview\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#website\"},\"datePublished\":\"2021-07-12T22:02:37+00:00\",\"dateModified\":\"2021-09-14T05:26:21+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#\\\/schema\\\/person\\\/4d5a581fb5470d1560324bddc5e8b757\"},\"description\":\"Write a function that takes an integer array as an input and find the largest number in the array. - C++ Interview Questions\",\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/cpp\\\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\\\/\"]}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#website\",\"url\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/\",\"name\":\"Wikitechy\",\"description\":\"Interview Questions\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/#\\\/schema\\\/person\\\/4d5a581fb5470d1560324bddc5e8b757\",\"name\":\"Editor\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g\",\"caption\":\"Editor\"},\"url\":\"https:\\\/\\\/www.wikitechy.com\\\/interview-questions\\\/author\\\/editor\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Write a function that takes an integer array as an input - C++ Interview","description":"Write a function that takes an integer array as an input and find the largest number in the array. - C++ Interview Questions","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.wikitechy.com\/interview-questions\/cpp\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\/","og_locale":"en_US","og_type":"article","og_title":"Write a function that takes an integer array as an input - C++ Interview","og_description":"Write a function that takes an integer array as an input and find the largest number in the array. - C++ Interview Questions","og_url":"https:\/\/www.wikitechy.com\/interview-questions\/cpp\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\/","og_site_name":"Wikitechy","article_published_time":"2021-07-12T22:02:37+00:00","article_modified_time":"2021-09-14T05:26:21+00:00","author":"Editor","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Editor","Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.wikitechy.com\/interview-questions\/cpp\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\/#article","isPartOf":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/cpp\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\/"},"author":{"name":"Editor","@id":"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/4d5a581fb5470d1560324bddc5e8b757"},"headline":"Write a function that takes an integer array as an input and find the largest number in the array. You cannot sort array or use any API or searching needs ?","datePublished":"2021-07-12T22:02:37+00:00","dateModified":"2021-09-14T05:26:21+00:00","mainEntityOfPage":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/cpp\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\/"},"wordCount":207,"commentCount":0,"keywords":["2d array c++","Accenture interview questions and answers","algorithm to find largest number in an array","Applied Materials interview questions and answers","array find","array in c","array in c programming","array programs in java","Atos interview questions and answers","BMC Software interview questions and answers","Bosch India Software interview questions and answers","c interview questions","c program to find largest number in an array","c program to find largest number in an array using function","c program to find largest of n numbers","c++ array class","c++ array functions","c++ program to find largest and second largest number in an array","c++ program to find largest and smallest number in an array","c++ program to find largest of n numbersdynamic array c++","CASTING NETWORKS INDIA PVT LIMITED interview questions and answers","Chetu interview questions and answers","Ciena Corporation interview questions and answers","cpp interview questions","cpp interview questions and answers","Dell International Services India Pvt Ltd interview questions and answers","eInfochips interview questions and answers","Electronics Arts Inc interview questions and answers","find largest number in an array","find largest number in array","find largest number in array c++","find largest number in array in java","find largest number in array java","find largest number in array javascript","find largest number in java","find second largest number in array in java","find smallest number in array c++","Flipkart interview questions and answers","Harman International interview questions and answers","Indecomm Global Services interview questions and answers","java find largest number in list","largest number formed from an array in clength of array c++","Larsen &amp; Toubro interview questions and answers","Mathworks India Private Limited interview questions and answers","Mavenir interview questions and answers","Mphasis interview questions and answers","NetApp interview questions and answers","Oracle Corporation interview questions and answers","PeopleStrong interview questions and answers","Philips Software Centre Pvt Ltd interview questions and answers","program to find largest number in an array","return array c++string array c++","SRM Technologies interview questions and answers","Symphony Teleca interview questions and answers","Tech Mahindra interview questions and answers","Tecnotree interview questions and answers","two dimensional array in c++ example","Wipro Infotech interview questions and answers","Wipro interview questions and answers","Yash Technologies interview questions and answers","zycus infotech interview questions and answers"],"articleSection":["C++"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.wikitechy.com\/interview-questions\/cpp\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.wikitechy.com\/interview-questions\/cpp\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\/","url":"https:\/\/www.wikitechy.com\/interview-questions\/cpp\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\/","name":"Write a function that takes an integer array as an input - C++ Interview","isPartOf":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/#website"},"datePublished":"2021-07-12T22:02:37+00:00","dateModified":"2021-09-14T05:26:21+00:00","author":{"@id":"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/4d5a581fb5470d1560324bddc5e8b757"},"description":"Write a function that takes an integer array as an input and find the largest number in the array. - C++ Interview Questions","inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.wikitechy.com\/interview-questions\/cpp\/write-a-function-that-takes-an-integer-array-as-an-input-and-find-the-largest-number-in-the-array-you-cannot-sort-array-or-use-any-api-or-searching-needs\/"]}]},{"@type":"WebSite","@id":"https:\/\/www.wikitechy.com\/interview-questions\/#website","url":"https:\/\/www.wikitechy.com\/interview-questions\/","name":"Wikitechy","description":"Interview Questions","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.wikitechy.com\/interview-questions\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Person","@id":"https:\/\/www.wikitechy.com\/interview-questions\/#\/schema\/person\/4d5a581fb5470d1560324bddc5e8b757","name":"Editor","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/e9531079fe7e07841b7b156c04d65e5f39d4adfd18b6ffe3edfff8ca5aab85b5?s=96&d=mm&r=g","caption":"Editor"},"url":"https:\/\/www.wikitechy.com\/interview-questions\/author\/editor\/"}]}},"_links":{"self":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts\/358","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/comments?post=358"}],"version-history":[{"count":3,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts\/358\/revisions"}],"predecessor-version":[{"id":3631,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/posts\/358\/revisions\/3631"}],"wp:attachment":[{"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/media?parent=358"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/categories?post=358"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.wikitechy.com\/interview-questions\/wp-json\/wp\/v2\/tags?post=358"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}