

{"id":12831,"date":"2018-04-09T07:16:11","date_gmt":"2018-04-09T07:16:11","guid":{"rendered":"https:\/\/data-flair.training\/blogs\/?p=12831"},"modified":"2021-05-09T13:16:11","modified_gmt":"2021-05-09T07:46:11","slug":"tricky-sas-interview-questions","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/","title":{"rendered":"31 Tricky SAS Interview Questions for Freshers &amp; Experience"},"content":{"rendered":"<p>In our last discussion <strong>SAS Interview Questions,\u00a0<\/strong>we learned all generally asked SAS interview questions. Here in &#8217;31 Tricky SAS Interview Questions&#8217; we will learn the tricky questions which are frequently asked in SAS Interview.<\/p>\n<p>This Tricky SAS Interview Questions, involve many practical questions which will help you to prepare for SAS interview.<br \/>\nBut first of all, let&#8217;s revise <strong>SAS Programming<\/strong> <strong>Language<\/strong>.<strong>\u00a0<\/strong><\/p>\n<h2>Mostly Asked Questions in SAS Interview<\/h2>\n<p>Following are the 30 Best Tricky SAS Interview Questions with Answers for Freshers &amp; Experienced.<\/p>\n<p><strong>Q1. What is the one statement to set the criteria of data that can be coded in any step?<\/strong><\/p>\n<p>WHERE statement can sets the criteria for any data set in a data step or a proc step.<\/p>\n<p><strong>Q2. How would you include common or reuse code to be processed along with your statements?<\/strong><\/p>\n<p>\u2013 Using <strong>SAS Macros<\/strong>.<br \/>\n\u2013 Using a %include statement<br \/>\n<strong>\u00a0<\/strong><br \/>\n<strong>Q3. When looking for data contained in a character string of 150 bytes, which function is the best to locate that data: scan, index, or indexc?<\/strong><\/p>\n<p><strong>Index function<\/strong>\u00a0\u2013\u00a0Searches a character expression for a <strong>string of characters\u00a0<\/strong><\/p>\n<table>\n<tbody>\n<tr>\n<td width=\"49%\"><strong>SAS Statements<\/strong><\/td>\n<td width=\"49%\"><strong>Results<\/strong><\/td>\n<\/tr>\n<tr>\n<td width=\"49%\">a=\u2019ABC.DEF (X=Y)\u2019;<br \/>\nb=\u2019X=Y\u2019;<br \/>\nx=index(a,b);<br \/>\nput x;<\/td>\n<td width=\"49%\">10<\/td>\n<\/tr>\n<\/tbody>\n<\/table>\n<p><strong>Q4. <\/strong><strong>If you have a dataset that contains 100 variables, but you need only five of those, what is the code to force SAS to use only those variables?<\/strong><\/p>\n<p>Use KEEP= dataset option (data statement or set statement) or KEEP statement in a datastep.<br \/>\neg.<\/p>\n<pre class=\"EnlighterJSRAW\">\u00a0 Data fewdata (keep = var10 var11);\r\n\u00a0\u00a0\u00a0\u00a0\u00a0 Set fulldata (Keep= VAR1 VAR2 VAR3 VAR4 VAR5);\r\n\u00a0\u00a0\u00a0\u00a0\u00a0 Keep var6 var7;\r\n\u00a0\u00a0 Run;<\/pre>\n<p><strong>Q5<\/strong>. <strong>Code a PROC SORT on a data set containing State, District and County as the primary variables, along with several numeric variables.<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\">Proc\u00a0sort\u00a0data= Dist_County;\r\nBy\u00a0state district city;\r\nRun;<\/pre>\n<p><strong>Q6. How would you code a merge that will keep only the observations that have matches from both sets?<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\">\u00a0data\u00a0mergeddata;\r\nmerge\u00a0one(in=A) two(in=B);\r\nBy\u00a0ID;\r\nif\u00a0A and B;\r\nrun;<\/pre>\n<p><strong>\u00a0<\/strong><strong>Q7. How would you code a merge that will write the matches of both to one data set, the non-matches from the left-most data.<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\">Data\u00a0one two three;\r\nMerge\u00a0DSN1 (in=A) DSN2 (in=B);\r\nBy\u00a0ID;\r\nIf\u00a0A and B\u00a0then\u00a0output\u00a0one;\r\nIf\u00a0A and not B\u00a0then\u00a0output\u00a0two;\r\nIf\u00a0not A and B\u00a0then\u00a0output\u00a0three;\r\nRun;<\/pre>\n<p><strong>Q8. Name statements that are recognized at compile time only?<\/strong><\/p>\n<p>drop, keep, rename, label, format, informat, attrib, where, by, retain, length, array.<\/p>\n<p><strong>Q9. What are the statements that are executed only?<\/strong><\/p>\n<p>INFILE, INPUT, Output, Call routines<\/p>\n<p><strong>Q10.Which are the statements whose placement in the DATA step is critical.<\/strong><\/p>\n<p>DATA, INPUT, RUN, CARDS ,INFILE,WHERE,LABEL,SELECT,INFORMAT,FORMAT<\/p>\n<p><strong>Q11. Name statements that function at both compile and execution time.<\/strong><\/p>\n<p>Options, title, footnote<\/p>\n<p><strong>Tricky SAS Interview Questions For Freshers. Q- 1,2,4,8,9,10,11<\/strong><\/p>\n<p><strong>Tricky SAS Interview Questions For Experienced. Q- 3,5,6,7<\/strong><\/p>\n<p><strong>Q12. Dataset secondhig<\/strong> <strong>is given as<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\">data secondhig;\r\ninput Name $ Number;\r\ncards;\r\nsandeep 98\r\nkuldeep 49\r\narvind 58\r\ngajender 97\r\namit 69\r\nankit 97\r\nabhishek 70\r\n;\r\nrun;<\/pre>\n<p>Select those name having second highest numbers such that the output should be like:<br \/>\nName Number<br \/>\ngajender 97<br \/>\nankit 97<\/p>\n<pre class=\"EnlighterJSRAW\">Answer:\r\nproc sql;\r\nselect name, number from secondhig where number in (select max(Number) as second from secondhig where number&lt;(select max(Number)from secondhig));\r\nquit;<\/pre>\n<p><strong>Q13. <\/strong><strong>I have a dataset concat having a variable a b &amp; c. How to rename a b to e &amp; f?<\/strong><\/p>\n<p>We will use the following code to rename a b to e f<\/p>\n<pre class=\"EnlighterJSRAW\">data concat(rename=(a=e b=f));\r\nset concat;\r\nrun;<\/pre>\n<p><strong>Q14. <\/strong><strong>What are the statements in Proc SQl?<\/strong><\/p>\n<p>Select, From, Where, Group By, Having, Order.<\/p>\n<p><strong>Q15.<\/strong> <strong>Why and when do you use Proc SQl?<\/strong><\/p>\n<p>Proc SQL is very convenient for performing table joins compared to a data step merge as it does not require the key columns to be sorted prior to join. A data step is more suitable for sequential observation-by-observation processing.<\/p>\n<p>PROC SQL can save a great deal of time if u want to filter the variables while selecting or we can modify them, apply format and creating new variables, macro variables\u2026as well as subsetting the data. PROC SQL offers great flexibility for joining tables.<br \/>\n<strong>\u00a0<\/strong><br \/>\n<strong>Q16. <\/strong><strong>What does the trace option do?<\/strong><\/p>\n<p>ODS Trace is used to find the names of the particular output objects when several of them are created by some procedure.<br \/>\n<strong>ODS<\/strong>\u00a0TRACE ON;<br \/>\n<strong>ODS<\/strong>\u00a0TRACE Off;<br \/>\n<strong>\u00a0<\/strong><br \/>\n<strong>Q17. How would you identify a macro variable?<\/strong><\/p>\n<p>with Ampersand (&amp;) sign<\/p>\n<p><strong>Q18. How would you define the end of a macro?<\/strong><\/p>\n<p>The end of the macro is defined by %Mend Statement<\/p>\n<p><strong>Q19. What is the difference between %LOCAL and %GLOBAL?<\/strong><\/p>\n<p>% Local is a macro variable defined inside a macro. %Global is a macro variable defined in open code (outside the macro or can use anywhere).<\/p>\n<p><strong>Q20. How do you add a number to a macro variable<\/strong>?<\/p>\n<p>Using %eval function or %sysevalf function if the number is a floating number.<br \/>\nQ20. How we can call macros with in data step?<br \/>\nWe can call the macro with<br \/>\nCALL SYMPUT,<br \/>\nProc SQL ,<br \/>\n%LET statement. and macro parameters.<\/p>\n<p><strong>Q21. <\/strong><strong>What is interleaving in SAS?<\/strong><\/p>\n<p>Interleaving combines individual, sorted SAS data sets into one sorted <strong>SAS<\/strong> data set. For each observation, the following figure shows the value of the variable by which the data sets are sorted. You interleave data sets using a SET statement along with a BY statement.<\/p>\n<p>In the following example, the data sets are sorted by the variable Year.<br \/>\nWe can sort and then join the datasets on Year with the below code.<\/p>\n<pre class=\"EnlighterJSRAW\">Data combined;\r\nSet data1 data2\r\nBy Year;\r\nRun;<\/pre>\n<p><strong>Q22. Describe the ways in which you can create macro variables?<\/strong><\/p>\n<p>There are the 5 ways to create macro variables:%Let<br \/>\n%Global<br \/>\nCall Symput<br \/>\nProc SQl into clause<br \/>\nMacro Parameters.<\/p>\n<p><strong>Tricky SAS Interview Questions For Freshers. Q- 14,15,17,18,19,21,22<\/strong><\/p>\n<p><strong>Tricky SAS Interview Questions For Experienced. Q- 12,13,16,20<\/strong><\/p>\n<p><strong>Q23. What is the maximum length of the macro variable?<\/strong><\/p>\n<p>32 characters long.<br \/>\n<strong>\u00a0<\/strong><br \/>\n<strong>Q24. <\/strong><strong>\u00a0What is Linear Regression?<\/strong><\/p>\n<p>Linear regression is a statistical technique where the score of a variable Y is predicted from the score of a second variable X. X is referred to as the predictor variable and Y as the criterion variable.<\/p>\n<p><strong>Q25. <\/strong><strong>\u00a0What do you understand by the term Normal Distribution?<\/strong><\/p>\n<p>Data is usually distributed in different ways with a bias to the left or to the right or it can all be jumbled up.<\/p>\n<p>However, there are chances that data is distributed around a central value without any bias to the left or right and reaches normal distribution in the form of a bell-shaped curve. The random variables are distributed in the form of a symmetrical bell-shaped curve.<\/p>\n<p><strong>Q26. <\/strong><strong>What does P-value signify about the statistical data?<\/strong><\/p>\n<p>P-value is used to determine the significance of results after a hypothesis test in statistics. P-value helps the readers to draw conclusions and is always between 0 and 1.<\/p>\n<ul>\n<li>P- Value &gt; 0.05 denotes weak evidence against the null hypothesis which means the null hypothesis cannot be rejected.<\/li>\n<li>P-value &lt;= 0.05 denotes strong evidence against the null hypothesis which means the null hypothesis can be rejected.<\/li>\n<li>P-value=0.05is the marginal value indicating it is possible to go either way.<\/li>\n<\/ul>\n<p><strong>Q27. <\/strong><strong>How to create list output for cross-tabulations in proc freq?<\/strong><\/p>\n<p>To generate list output for cross-tabulations, add a slash (\/) and the LIST option to the TABLES statement in your PROC FREQ step.<br \/>\nTABLES variable-1*variable-2 &lt; * \u2026 variable-n&gt; \/ LIST;<\/p>\n<p><strong>Q28. <\/strong><strong>What is the difference between do while and do until?<\/strong><\/p>\n<p>Main difference between the DO UNTIL and DO WHILE statements is that the DO WHILE expression is evaluated at the top of the DO loop. If the expression is false the first time it is evaluated, then the DO loop never executes. But DO UNTIL executes at least once<\/p>\n<p><strong>Q29<\/strong>. <strong>Difference between sum function and using \u201c+\u201d operator?<\/strong><\/p>\n<p>SUM function returns the sum of non-missing arguments. &#8216;+&#8217; operator returns a missing value if any of the arguments are missing.<\/p>\n<p><strong>Q30. <\/strong><strong>What would be the result of the following SAS function (given that 31 Dec, 2000 is Sunday)?<\/strong><br \/>\n<strong>Weeks \u00a0= intck (\u2018week\u2019,\u201931 Dec 2000\u2019d,\u201901jan2001\u2019d);<br \/>\nYears \u00a0 \u00a0= intck (\u2018year\u2019,\u201931 Dec 2000\u2019d,\u201901jan2001\u2019d);<br \/>\nMonths = intck (\u2018month\u2019,\u201931 Dec 2000\u2019d,\u201901jan2001\u2019d);<\/strong><\/p>\n<p>Here, we will calculate the weeks between 31st December 2000 and\u00a01st January 2001.\u00a031st December 2000 was a Sunday. So 1st January 2001 will be a Monday in the same week. Hence, Weeks = 0<br \/>\nYears = 1 since both the days are in different calendar years.<br \/>\nMonths = 1 since both the days are in different months of the calendar.<\/p>\n<p><strong>Q31. <\/strong><strong>Consider the following SAS Program:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\">data concat;\r\nset a b;\r\nrun;<\/pre>\n<p><strong>Where format of variable Revenue in dataset a is dollar10.2 and format of variable Revenue in dataset b is dollar12.2 .\u00a0What would be the format of Revenue in resulting dataset (concat)?<\/strong><\/p>\n<p>dollar10.2<br \/>\nThe format will be the variable name \u2018dollar\u2019 which will be of length 10 numbers followed by two numbers after the decimal point.<br \/>\n<strong>Tricky SAS Interview Questions For Freshers. Q- 23,24,25,26,<\/strong><\/p>\n<p><strong>Tricky SAS Interview Questions For Experienced. Q- 27,28,29,30,31<\/strong><\/p>\n<div>SO, this was all on Tricky SAS Interview Questions Tutorial. Hope you like our explanation.<\/div>\n<h2>Summary<\/h2>\n<p>So these were some of the most Tricky SAS Interview Questions asked at an intermediate level and advanced level. Hope you all will be able to answer these Tricky SAS Interview Questions if asked in a SAS interview.<\/p>\n<p>Furthermore, if you have any query regarding Tricky SAS Interview Questions feel free to ask in a comment section.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>In our last discussion SAS Interview Questions,\u00a0we learned all generally asked SAS interview questions. Here in &#8217;31 Tricky SAS Interview Questions&#8217; we will learn the tricky questions which are frequently asked in SAS Interview.&#46;&#46;&#46;<\/p>\n","protected":false},"author":6,"featured_media":29453,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[59],"tags":[1879,6966,8111,12059,14850,14912,14928],"class_list":["post-12831","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-sas","tag-best-sas-interview-questions","tag-interview-questions-for-sas","tag-latest-sas-interview-questions","tag-sas-interview-questions","tag-top-sas-interview-questions","tag-trichy-sas-interview-questions","tag-tricky-sas-interview-questions"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.2 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>31 Tricky SAS Interview Questions for Freshers &amp; Experience - DataFlair<\/title>\n<meta name=\"description\" content=\"Tricky SAS Interview Questions - 31 Best Interview questions for SAS to crack SAS Interview easily,Latest SAS Programmer interview questions with answer\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"31 Tricky SAS Interview Questions for Freshers &amp; Experience - DataFlair\" \/>\n<meta property=\"og:description\" content=\"Tricky SAS Interview Questions - 31 Best Interview questions for SAS to crack SAS Interview easily,Latest SAS Programmer interview questions with answer\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/\" \/>\n<meta property=\"og:site_name\" content=\"DataFlair\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/DataFlairWS\/\" \/>\n<meta property=\"article:published_time\" content=\"2018-04-09T07:16:11+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-05-09T07:46:11+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/04\/SAS-interview-Questions-01-1-1-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1200\" \/>\n\t<meta property=\"og:image:height\" content=\"628\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"DataFlair Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:site\" content=\"@DataFlairWS\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"DataFlair Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"31 Tricky SAS Interview Questions for Freshers &amp; Experience - DataFlair","description":"Tricky SAS Interview Questions - 31 Best Interview questions for SAS to crack SAS Interview easily,Latest SAS Programmer interview questions with answer","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:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/","og_locale":"en_US","og_type":"article","og_title":"31 Tricky SAS Interview Questions for Freshers &amp; Experience - DataFlair","og_description":"Tricky SAS Interview Questions - 31 Best Interview questions for SAS to crack SAS Interview easily,Latest SAS Programmer interview questions with answer","og_url":"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2018-04-09T07:16:11+00:00","article_modified_time":"2021-05-09T07:46:11+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/04\/SAS-interview-Questions-01-1-1-1.jpg","type":"image\/jpeg"}],"author":"DataFlair Team","twitter_card":"summary_large_image","twitter_creator":"@DataFlairWS","twitter_site":"@DataFlairWS","twitter_misc":{"Written by":"DataFlair Team","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/2c58ecb4f73a39f0ef993f1ddfcd7b89"},"headline":"31 Tricky SAS Interview Questions for Freshers &amp; Experience","datePublished":"2018-04-09T07:16:11+00:00","dateModified":"2021-05-09T07:46:11+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/"},"wordCount":1418,"commentCount":2,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/04\/SAS-interview-Questions-01-1-1-1.jpg","keywords":["Best Sas Interview Questions","Interview Questions for SAS","Latest Sas Interview Questions","Sas Interview Questions","Top Sas Interview Questions","Trichy Sas Interview Questions","Tricky SAS Interview Questions"],"articleSection":["SAS Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/","url":"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/","name":"31 Tricky SAS Interview Questions for Freshers &amp; Experience - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/04\/SAS-interview-Questions-01-1-1-1.jpg","datePublished":"2018-04-09T07:16:11+00:00","dateModified":"2021-05-09T07:46:11+00:00","description":"Tricky SAS Interview Questions - 31 Best Interview questions for SAS to crack SAS Interview easily,Latest SAS Programmer interview questions with answer","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/04\/SAS-interview-Questions-01-1-1-1.jpg","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2018\/04\/SAS-interview-Questions-01-1-1-1.jpg","width":1200,"height":628,"caption":"Latest SAS Interview Questions"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/tricky-sas-interview-questions\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"SAS Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/sas\/"},{"@type":"ListItem","position":3,"name":"31 Tricky SAS Interview Questions for Freshers &amp; Experience"}]},{"@type":"WebSite","@id":"https:\/\/data-flair.training\/blogs\/#website","url":"https:\/\/data-flair.training\/blogs\/","name":"DataFlair","description":"Learn Today. Lead Tomorrow.","publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/data-flair.training\/blogs\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/data-flair.training\/blogs\/#organization","name":"DataFlair","url":"https:\/\/data-flair.training\/blogs\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/07\/Data-Flair.png","width":106,"height":48,"caption":"DataFlair"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/DataFlairWS\/","https:\/\/x.com\/DataFlairWS","https:\/\/www.linkedin.com\/company\/dataflair-web-services-pvt-ltd\/","https:\/\/www.youtube.com\/user\/DataFlairWS"]},{"@type":"Person","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/2c58ecb4f73a39f0ef993f1ddfcd7b89","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/1ce4a0e3e542444fc73bbebf83e89e8b73e2d95ccb1fcee64da9945f078b97c5?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"The DataFlair Team provides industry-driven content on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our expert educators focus on delivering value-packed, easy-to-follow resources for tech enthusiasts and professionals.","url":"https:\/\/data-flair.training\/blogs\/author\/dfteam2\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/12831","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/users\/6"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=12831"}],"version-history":[{"count":8,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/12831\/revisions"}],"predecessor-version":[{"id":93092,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/12831\/revisions\/93092"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/29453"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=12831"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=12831"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=12831"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}