{"id":185,"date":"2020-01-01T10:40:21","date_gmt":"2020-01-01T10:40:21","guid":{"rendered":"https:\/\/rndpedia.com\/blog\/?p=185"},"modified":"2024-07-22T02:03:57","modified_gmt":"2024-07-22T02:03:57","slug":"write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator","status":"publish","type":"post","link":"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/","title":{"rendered":"Write a program to determine the value of b depending on the inputted value of a. The variable a is used with conditional operator."},"content":{"rendered":"<div class=\"wp-block-syntaxhighlighter-code \"><pre class=\"brush: cpp; title: ; notranslate\" title=\"\">\n#include&lt;stdio.h&gt;\n#include&lt;conio.h&gt;\nmain()\n{\n\tint a,b;\n\tprintf(&quot;Enter any integer either above 5 or below 5-&quot;);\n\tscanf(&quot;%d&quot;,&amp;a);\n\tb=(a&gt;5 ? 3:4);\n\tprintf(&quot;Calculated value of b is:- %d&quot;,b);\n\tgetch();\n}\n\n\n\/*The value b will be 3 if the value of a is grater then 5.Otherwise,it will be 4 for \nany no less then 5*\/\n<\/pre><\/div>\n\n\n<p>The above program uses conditional operator to determine the value of &#8216;b&#8217; based on the inputted value of &#8216;a&#8217;. The conditional operator &#8216;?&#8217; is used in this program to assign a value to the variable &#8216;b&#8217;. The syntax for the conditional operator is:<\/p>\n\n\n\n<p>condition ? expression1 : expression2<\/p>\n\n\n\n<script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-1910841001912053\"\n     crossorigin=\"anonymous\"><\/script>\n<!-- horizintal -->\n<ins class=\"adsbygoogle\"\n     style=\"display:block\"\n     data-ad-client=\"ca-pub-1910841001912053\"\n     data-ad-slot=\"8832200140\"\n     data-ad-format=\"auto\"\n     data-full-width-responsive=\"true\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script>\n\n\n\n<p>If the condition is true, expression1 is evaluated and its value is returned. If the condition is false, expression2 is evaluated and its value is returned. In this program, the condition is whether &#8216;a&#8217; is greater than 5 or not. If &#8216;a&#8217; is greater than 5, &#8216;b&#8217; is assigned the value 3, otherwise &#8216;b&#8217; is assigned the value 4.<\/p>\n\n\n\n<p>If the value of <code>a<\/code> entered by the user is greater than 5, then the expression <code>a&gt;5<\/code> is true, and <code>b<\/code> will be assigned the value 3 (as specified by the first part of the conditional operator <code>?<\/code>). If the value of <code>a<\/code> is less than or equal to 5, then the expression <code>a&gt;5<\/code> is false, and <code>b<\/code> will be assigned the value 4 (as specified by the second part of the conditional operator <code>:<\/code>).<\/p>\n\n\n\n<p>The user is asked to enter an integer either above 5 or below 5. This value is stored in the variable &#8216;a&#8217;. Then, the value of &#8216;b&#8217; is determined using the conditional operator. If &#8216;a&#8217; is greater than 5, then &#8216;b&#8217; is assigned the value 3. If &#8216;a&#8217; is not greater than 5, then &#8216;b&#8217; is assigned the value 4. The calculated value of &#8216;b&#8217; is displayed on the screen.<\/p>\n\n\n\n<p>Thanks<\/p>\n\n\n\n<script async src=\"https:\/\/pagead2.googlesyndication.com\/pagead\/js\/adsbygoogle.js?client=ca-pub-1910841001912053\"\n     crossorigin=\"anonymous\"><\/script>\n<ins class=\"adsbygoogle\"\n     style=\"display:block\"\n     data-ad-format=\"autorelaxed\"\n     data-ad-client=\"ca-pub-1910841001912053\"\n     data-ad-slot=\"6076785113\"><\/ins>\n<script>\n     (adsbygoogle = window.adsbygoogle || []).push({});\n<\/script>\n","protected":false},"excerpt":{"rendered":"<p>The above program uses conditional operator to determine the value of &#8216;b&#8217; based on the inputted value of &#8216;a&#8217;. The conditional operator &#8216;?&#8217; is used in this program to assign a value to the variable &#8216;b&#8217;. The syntax for the conditional operator is: condition ? expression1 : expression2 If the condition is true, expression1 is [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":186,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[22],"tags":[41,61,174],"class_list":["post-185","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-c","tag-c","tag-conditional","tag-operator"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.0 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Write a program to determine the value of b depending on the inputted.....<\/title>\n<meta name=\"description\" content=\"Write a program to determine the value of b depending on the inputted value of a. The variable a is used with conditional operator.\" \/>\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.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Write a program to determine the value of b depending on the inputted.....\" \/>\n<meta property=\"og:description\" content=\"Write a program to determine the value of b depending on the inputted value of a. The variable a is used with conditional operator.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/\" \/>\n<meta property=\"og:site_name\" content=\"Nesark | Tutorials\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/nesarktech\" \/>\n<meta property=\"article:published_time\" content=\"2020-01-01T10:40:21+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-07-22T02:03:57+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2020\/01\/Screenshot-98.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1920\" \/>\n\t<meta property=\"og:image:height\" content=\"1080\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"Ram Nath Das\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Ram Nath Das\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"2 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/\"},\"author\":{\"name\":\"Ram Nath Das\",\"@id\":\"https:\/\/www.nesark.com\/blog\/#\/schema\/person\/5282df381645953288b5502b89a86126\"},\"headline\":\"Write a program to determine the value of b depending on the inputted value of a. The variable a is used with conditional operator.\",\"datePublished\":\"2020-01-01T10:40:21+00:00\",\"dateModified\":\"2024-07-22T02:03:57+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/\"},\"wordCount\":252,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\/\/www.nesark.com\/blog\/#organization\"},\"image\":{\"@id\":\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2020\/01\/Screenshot-98.png\",\"keywords\":[\"c\",\"conditional\",\"Operator\"],\"articleSection\":[\"C Program\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/\",\"url\":\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/\",\"name\":\"Write a program to determine the value of b depending on the inputted.....\",\"isPartOf\":{\"@id\":\"https:\/\/www.nesark.com\/blog\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2020\/01\/Screenshot-98.png\",\"datePublished\":\"2020-01-01T10:40:21+00:00\",\"dateModified\":\"2024-07-22T02:03:57+00:00\",\"description\":\"Write a program to determine the value of b depending on the inputted value of a. The variable a is used with conditional operator.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#primaryimage\",\"url\":\"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2020\/01\/Screenshot-98.png\",\"contentUrl\":\"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2020\/01\/Screenshot-98.png\",\"width\":1920,\"height\":1080,\"caption\":\"c\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.nesark.com\/blog\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Write a program to determine the value of b depending on the inputted value of a. The variable a is used with conditional operator.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.nesark.com\/blog\/#website\",\"url\":\"https:\/\/www.nesark.com\/blog\/\",\"name\":\"Nesark | Tutorials\",\"description\":\"Blog\",\"publisher\":{\"@id\":\"https:\/\/www.nesark.com\/blog\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.nesark.com\/blog\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\/\/www.nesark.com\/blog\/#organization\",\"name\":\"Nesark Worldservices Pvt. Ltd.\",\"url\":\"https:\/\/www.nesark.com\/blog\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.nesark.com\/blog\/#\/schema\/logo\/image\/\",\"url\":\"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2021\/10\/Mask-Group-7.png\",\"contentUrl\":\"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2021\/10\/Mask-Group-7.png\",\"width\":200,\"height\":59,\"caption\":\"Nesark Worldservices Pvt. Ltd.\"},\"image\":{\"@id\":\"https:\/\/www.nesark.com\/blog\/#\/schema\/logo\/image\/\"},\"sameAs\":[\"https:\/\/www.facebook.com\/nesarktech\",\"https:\/\/www.linkedin.com\/company\/nesarktech\",\"https:\/\/www.youtube.com\/nesarktech\",\"https:\/\/www.instagram.com\/nesarktech\"]},{\"@type\":\"Person\",\"@id\":\"https:\/\/www.nesark.com\/blog\/#\/schema\/person\/5282df381645953288b5502b89a86126\",\"name\":\"Ram Nath Das\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.nesark.com\/blog\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/secure.gravatar.com\/avatar\/059938dcfb66a295197ca697bf38c5947e4b3fae2e51dfbbbdb1d44f2c3a893f?s=96&d=mm&r=g\",\"contentUrl\":\"https:\/\/secure.gravatar.com\/avatar\/059938dcfb66a295197ca697bf38c5947e4b3fae2e51dfbbbdb1d44f2c3a893f?s=96&d=mm&r=g\",\"caption\":\"Ram Nath Das\"},\"description\":\"I'm a results-driven professional with a passion for leveraging digital strategies to drive business growth. With 6 years of experience in the dynamic fields of marketing, social media, Google - Facebook Ads and SMS marketing, I specialize in creating impactful campaigns that resonate with audiences and deliver measurable results. Let's Connect: I believe in the power of networking and collaboration. Feel free to reach out, connect, or send me a message. Together, we can uncover new possibilities and chart a course for success in the ever-evolving digital landscape. Thank you.\",\"sameAs\":[\"https:\/\/www.nesark.com\/blog\"],\"url\":\"https:\/\/www.nesark.com\/blog\/author\/ramnathdas6\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Write a program to determine the value of b depending on the inputted.....","description":"Write a program to determine the value of b depending on the inputted value of a. The variable a is used with conditional operator.","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.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/","og_locale":"en_US","og_type":"article","og_title":"Write a program to determine the value of b depending on the inputted.....","og_description":"Write a program to determine the value of b depending on the inputted value of a. The variable a is used with conditional operator.","og_url":"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/","og_site_name":"Nesark | Tutorials","article_publisher":"https:\/\/www.facebook.com\/nesarktech","article_published_time":"2020-01-01T10:40:21+00:00","article_modified_time":"2024-07-22T02:03:57+00:00","og_image":[{"width":1920,"height":1080,"url":"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2020\/01\/Screenshot-98.png","type":"image\/png"}],"author":"Ram Nath Das","twitter_card":"summary_large_image","twitter_misc":{"Written by":"Ram Nath Das","Est. reading time":"2 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#article","isPartOf":{"@id":"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/"},"author":{"name":"Ram Nath Das","@id":"https:\/\/www.nesark.com\/blog\/#\/schema\/person\/5282df381645953288b5502b89a86126"},"headline":"Write a program to determine the value of b depending on the inputted value of a. The variable a is used with conditional operator.","datePublished":"2020-01-01T10:40:21+00:00","dateModified":"2024-07-22T02:03:57+00:00","mainEntityOfPage":{"@id":"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/"},"wordCount":252,"commentCount":0,"publisher":{"@id":"https:\/\/www.nesark.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#primaryimage"},"thumbnailUrl":"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2020\/01\/Screenshot-98.png","keywords":["c","conditional","Operator"],"articleSection":["C Program"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/","url":"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/","name":"Write a program to determine the value of b depending on the inputted.....","isPartOf":{"@id":"https:\/\/www.nesark.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#primaryimage"},"image":{"@id":"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#primaryimage"},"thumbnailUrl":"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2020\/01\/Screenshot-98.png","datePublished":"2020-01-01T10:40:21+00:00","dateModified":"2024-07-22T02:03:57+00:00","description":"Write a program to determine the value of b depending on the inputted value of a. The variable a is used with conditional operator.","breadcrumb":{"@id":"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#primaryimage","url":"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2020\/01\/Screenshot-98.png","contentUrl":"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2020\/01\/Screenshot-98.png","width":1920,"height":1080,"caption":"c"},{"@type":"BreadcrumbList","@id":"https:\/\/www.nesark.com\/blog\/write-a-program-to-determine-the-value-of-b-depending-on-theinputted-value-od-a-the-variable-a-is-used-with-conditional-operator\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.nesark.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Write a program to determine the value of b depending on the inputted value of a. The variable a is used with conditional operator."}]},{"@type":"WebSite","@id":"https:\/\/www.nesark.com\/blog\/#website","url":"https:\/\/www.nesark.com\/blog\/","name":"Nesark | Tutorials","description":"Blog","publisher":{"@id":"https:\/\/www.nesark.com\/blog\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.nesark.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.nesark.com\/blog\/#organization","name":"Nesark Worldservices Pvt. Ltd.","url":"https:\/\/www.nesark.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.nesark.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2021\/10\/Mask-Group-7.png","contentUrl":"https:\/\/www.nesark.com\/blog\/wp-content\/uploads\/2021\/10\/Mask-Group-7.png","width":200,"height":59,"caption":"Nesark Worldservices Pvt. Ltd."},"image":{"@id":"https:\/\/www.nesark.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/nesarktech","https:\/\/www.linkedin.com\/company\/nesarktech","https:\/\/www.youtube.com\/nesarktech","https:\/\/www.instagram.com\/nesarktech"]},{"@type":"Person","@id":"https:\/\/www.nesark.com\/blog\/#\/schema\/person\/5282df381645953288b5502b89a86126","name":"Ram Nath Das","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.nesark.com\/blog\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/059938dcfb66a295197ca697bf38c5947e4b3fae2e51dfbbbdb1d44f2c3a893f?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/059938dcfb66a295197ca697bf38c5947e4b3fae2e51dfbbbdb1d44f2c3a893f?s=96&d=mm&r=g","caption":"Ram Nath Das"},"description":"I'm a results-driven professional with a passion for leveraging digital strategies to drive business growth. With 6 years of experience in the dynamic fields of marketing, social media, Google - Facebook Ads and SMS marketing, I specialize in creating impactful campaigns that resonate with audiences and deliver measurable results. Let's Connect: I believe in the power of networking and collaboration. Feel free to reach out, connect, or send me a message. Together, we can uncover new possibilities and chart a course for success in the ever-evolving digital landscape. Thank you.","sameAs":["https:\/\/www.nesark.com\/blog"],"url":"https:\/\/www.nesark.com\/blog\/author\/ramnathdas6\/"}]}},"_links":{"self":[{"href":"https:\/\/www.nesark.com\/blog\/wp-json\/wp\/v2\/posts\/185","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.nesark.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.nesark.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.nesark.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.nesark.com\/blog\/wp-json\/wp\/v2\/comments?post=185"}],"version-history":[{"count":1,"href":"https:\/\/www.nesark.com\/blog\/wp-json\/wp\/v2\/posts\/185\/revisions"}],"predecessor-version":[{"id":1297,"href":"https:\/\/www.nesark.com\/blog\/wp-json\/wp\/v2\/posts\/185\/revisions\/1297"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.nesark.com\/blog\/wp-json\/wp\/v2\/media\/186"}],"wp:attachment":[{"href":"https:\/\/www.nesark.com\/blog\/wp-json\/wp\/v2\/media?parent=185"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.nesark.com\/blog\/wp-json\/wp\/v2\/categories?post=185"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.nesark.com\/blog\/wp-json\/wp\/v2\/tags?post=185"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}