

{"id":357,"date":"2016-06-13T08:54:58","date_gmt":"2016-06-13T08:54:58","guid":{"rendered":"http:\/\/data-flair.training\/blogs\/?p=357"},"modified":"2018-11-19T16:11:14","modified_gmt":"2018-11-19T10:41:14","slug":"linux-commands-tutorial","status":"publish","type":"post","link":"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/","title":{"rendered":"Linux Commands Tutorial &#8211; 15 Most Frequently Used"},"content":{"rendered":"<h2>1. Linux Commands Tutorial<\/h2>\n<p>This Linux commands tutorial will provide you top 15 frequently used Linux commands. In the globe, 90% of the IT industries consider Linux as the most reliable, safe and secure operating system. Linux is considered as the best operating system in all leading IT industries today for project development and deployment in production. Hence it is very necessary for all of us to learn how to work on Linux. At the end of this Linux\u00a0Commands tutorial, you will feel very confident to work on the Linux operating system.<\/p>\n<p>So, let&#8217;s start the Linux Commands Tutorial.<\/p>\n<div id=\"attachment_42783\" style=\"width: 1210px\" class=\"wp-caption aligncenter\"><a href=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2.jpg\"><img loading=\"lazy\" decoding=\"async\" aria-describedby=\"caption-attachment-42783\" class=\"size-full wp-image-42783\" src=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2.jpg\" alt=\"Linux Commands Tutorial - 15 Most Frequently Used\" width=\"1200\" height=\"628\" srcset=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2.jpg 1200w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2-150x79.jpg 150w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2-300x157.jpg 300w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2-768x402.jpg 768w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2-1024x536.jpg 1024w, https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2-520x272.jpg 520w\" sizes=\"auto, (max-width: 1200px) 100vw, 1200px\" \/><\/a><p id=\"caption-attachment-42783\" class=\"wp-caption-text\">Linux Commands Tutorial &#8211; 15 Most Frequently Used<\/p><\/div>\n<h2>2. Linux Commands Tutorial &#8211; list<\/h2>\n<p>In this Linux commands tutorial top 15 Linux commands are given below along with their usage-<\/p>\n<h3>2.1. ls<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ ls<\/pre>\n<p>This Linux command shows a list of all the files and directories present in the current working directory of your machine.<\/p>\n<p><strong>b. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ ls ~<\/pre>\n<p>This Linux command shows the list of files that are present in your home directory.<\/p>\n<p><strong>c. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ ls -ltr<\/pre>\n<p>This Linux command will display you the file having named mentioned in command and will give you all the details of that file.<\/p>\n<p><strong>d. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ ls \u2013ltr<\/pre>\n<p>This command will list you all files according to the order of time in which they were created. Here \u201cltr\u201d stands for l- long listing, t- time, r- recursive. The list displayed contains a file name, file permissions, owner of the file, group, date and time of file creation and links.<\/p>\n<h3>2.2. df<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ df<\/pre>\n<p>\u201cdf\u201d is \u201cdisk filesystem\u201d. The actual task of this command is to show a detailed summary list of the total disk space available and used disk space on file system of your Linux system.<br \/>\n<strong>b. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ df -h<\/pre>\n<p>&#8216;-h&#8217; parameter is used to display the summary of the total disk space used and available on your Linux file system in human readable form, this means it shows the details in the form of bytes, MB (megabyte) and GB (gigabyte).<\/p>\n<h3>2.3. mkdir<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ mkdir<\/pre>\n<p>If you want to create a new directory on your Linux filesystem you have to use \u201cmkdir\u201d command. For example- \u201cmkdir dataflair\u201d, this command will create a directory named dataflair on your Linux filesystem.<\/p>\n<h3>2.4. rm<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ rm<\/pre>\n<p>This Linux command is used to remove a file from your Linux filesystem. Executing this command will delete that particular file of which you had written name followed by rm. For example- \u201crm data\u201d, this will remove file named data present in your current working directory.<\/p>\n<p><strong>b. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ rmdir<\/pre>\n<p>This Linux command is used to remove a complete directory from your Linux filesystem. This command will remove directory specified by you. For example- \u201crmdir mystuffs\u201d will delete the mystuffs directory from your Linux filesystem.<\/p>\n<h3>2.5. pwd<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ pwd<\/pre>\n<p>\u201cpwd\u201d = \u201cPresent Working Directory\u201d. It gives you the name of the directory name on which you are currently present or working and shows the path of that directory.<\/p>\n<h3>2.6. cd<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ cd<\/pre>\n<p>\u201ccd\u201d is change directory. By the name itself, it is clear that this command is the most useful command of Linux. With the help of this command, a user can easily navigate to the directory of his choice at any moment of time. This command changes the present working directory of the user, to the directory name specified by the user in which he wants to navigate.<\/p>\n<p><strong>b. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ cd \/<\/pre>\n<p>This command is used to navigate to the root directory of users Linux filesystem.<\/p>\n<p><strong>c. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ cd\r\n\r\n$ cd ~<\/pre>\n<p>This command is used to navigate to the home directory of the user.<\/p>\n<p><strong>d. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ cd..<\/pre>\n<p>This command is used to navigate one directory level up of the user current working directory.<\/p>\n<p><strong>e. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ cd -<\/pre>\n<p>The usage of cd command is to navigate to the previous directory or simply go one directory back to the directory which user visited. It is used to go one step back to the recently visited directory.<\/p>\n<h3>2.7. clear<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ clear<\/pre>\n<p>Now after practicing a number of commands, it is obvious that your command terminal has fully filled up with lots of commands and their usage. Hence to practice a new command from a fresh new screen we use \u201cclear\u201d command. This command clears all the data present on your Linux terminal window.<\/p>\n<h3>2.8. mv<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ mv<\/pre>\n<p>The main function of this Linux command is to change the name of a file\/directory or to move a particular file\/directory from one place to another.<\/p>\n<h3>2.9. cp<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ cp<\/pre>\n<p>This Linux command is used to copy files\/directory from one place to another. With the help of this command, the user can easily create multiple copies of a files\/directories.<\/p>\n<h3>2.10. cat<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ cat<\/pre>\n<p>This command displays all the contents of a file specified by the user on the standard output device i.e. your computer screen.<\/p>\n<h3>2.11. du<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ du<\/pre>\n<p>The term \u201cdu\u201d is a short form of \u201cDisk Utility\u201d. The actual work of this command is to display you the details about how much space is occupied by a file\/directory in the disk.<\/p>\n<p><strong>b. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ du -sh<\/pre>\n<p>In the above command (\u201c-s\u201d= Summary and \u201c-h\u201d= Human Readable). This means it shows the details of the space occupied by a file\/directory on disk in a human readable format like bytes, megabytes, gigabytes, etc.<\/p>\n<h3>2.12. touch<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ touch<\/pre>\n<p>This Linux command creates an empty file with the specified name in the present working directory of the user. An empty file with size 0 bytes gets created which remains unchanged until the user makes any changes to it.<\/p>\n<h3>2.13. who<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ who<\/pre>\n<p>It displays the number of users who are currently logged on your Linux operating system.<\/p>\n<h3>2.14. echo<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ echo<\/pre>\n<p>This command displays all the text written after the word \u201cecho\u201d. For example- echo My House name is Sweet Dreams, this command output will be: \u201cMy House name is Sweet Dreams\u201d.<\/p>\n<h3>2.15. date<\/h3>\n<p><strong>a. Usage:<\/strong><\/p>\n<pre class=\"EnlighterJSRAW\" data-enlighter-language=\"null\">$ date<\/pre>\n<p>This Linux command displays the current date and time of your system. By using this command you can easily know the current day and time on the Linux terminal.<\/p>\n<p>So, this was all about Linux Commands Tutorial. Hope you like our explanation. If you wanna ask\/share your query, feel to share your feedback with us!<\/p>\n<p><strong>Related Links:<\/strong><\/p>\n<ul>\n<li><a href=\"http:\/\/data-flair.training\/blogs\/frequently-used-linux-commands\/\">Frequently Used Linux Commands Part-II<\/a><\/li>\n<li><a href=\"http:\/\/data-flair.training\/blogs\/linux-commands-list-linux-programming-part-3\/\">Linux commands List for Linux Programming \u2013 Part 3<\/a><\/li>\n<\/ul>\n","protected":false},"excerpt":{"rendered":"<p>1. Linux Commands Tutorial This Linux commands tutorial will provide you top 15 frequently used Linux commands. In the globe, 90% of the IT industries consider Linux as the most reliable, safe and secure&#46;&#46;&#46;<\/p>\n","protected":false},"author":5,"featured_media":42783,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[35],"tags":[1971,6634,8303,8304,8305,15221],"class_list":["post-357","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux","tag-big-data-training","tag-important-linux-commands","tag-linux","tag-linux-commands","tag-linux-tutorial","tag-useful-linux-commands"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.8 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Linux Commands Tutorial - 15 Most Frequently Used - DataFlair<\/title>\n<meta name=\"description\" content=\"Linux Commands Tutorial - Linux Commands with examples and syntax-Linux commands for beginners, ls,df,mkdir,rm,pwd,cd,clear,mv,cp,cat,du,touch,who,echo,date\" \/>\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\/linux-commands-tutorial\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Linux Commands Tutorial - 15 Most Frequently Used - DataFlair\" \/>\n<meta property=\"og:description\" content=\"Linux Commands Tutorial - Linux Commands with examples and syntax-Linux commands for beginners, ls,df,mkdir,rm,pwd,cd,clear,mv,cp,cat,du,touch,who,echo,date\" \/>\n<meta property=\"og:url\" content=\"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/\" \/>\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=\"2016-06-13T08:54:58+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2018-11-19T10:41:14+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2.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=\"5 minutes\" \/>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Linux Commands Tutorial - 15 Most Frequently Used - DataFlair","description":"Linux Commands Tutorial - Linux Commands with examples and syntax-Linux commands for beginners, ls,df,mkdir,rm,pwd,cd,clear,mv,cp,cat,du,touch,who,echo,date","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\/linux-commands-tutorial\/","og_locale":"en_US","og_type":"article","og_title":"Linux Commands Tutorial - 15 Most Frequently Used - DataFlair","og_description":"Linux Commands Tutorial - Linux Commands with examples and syntax-Linux commands for beginners, ls,df,mkdir,rm,pwd,cd,clear,mv,cp,cat,du,touch,who,echo,date","og_url":"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/","og_site_name":"DataFlair","article_publisher":"https:\/\/www.facebook.com\/DataFlairWS\/","article_published_time":"2016-06-13T08:54:58+00:00","article_modified_time":"2018-11-19T10:41:14+00:00","og_image":[{"width":1200,"height":628,"url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2.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":"5 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/#article","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/"},"author":{"name":"DataFlair Team","@id":"https:\/\/data-flair.training\/blogs\/#\/schema\/person\/7f83c342f5d1632d6f7b4b0b0f447823"},"headline":"Linux Commands Tutorial &#8211; 15 Most Frequently Used","datePublished":"2016-06-13T08:54:58+00:00","dateModified":"2018-11-19T10:41:14+00:00","mainEntityOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/"},"wordCount":1038,"commentCount":4,"publisher":{"@id":"https:\/\/data-flair.training\/blogs\/#organization"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2.jpg","keywords":["big data training","important linux commands","linux","linux commands","linux tutorial","useful linux commands"],"articleSection":["Linux Tutorials"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/","url":"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/","name":"Linux Commands Tutorial - 15 Most Frequently Used - DataFlair","isPartOf":{"@id":"https:\/\/data-flair.training\/blogs\/#website"},"primaryImageOfPage":{"@id":"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/#primaryimage"},"image":{"@id":"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/#primaryimage"},"thumbnailUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2.jpg","datePublished":"2016-06-13T08:54:58+00:00","dateModified":"2018-11-19T10:41:14+00:00","description":"Linux Commands Tutorial - Linux Commands with examples and syntax-Linux commands for beginners, ls,df,mkdir,rm,pwd,cd,clear,mv,cp,cat,du,touch,who,echo,date","breadcrumb":{"@id":"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/#primaryimage","url":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2.jpg","contentUrl":"https:\/\/data-flair.training\/blogs\/wp-content\/uploads\/sites\/2\/2016\/06\/Frequently-used-Linux-Commands-for-Beginners-2.jpg","width":1200,"height":628,"caption":"Linux Commands Tutorial - 15 Most Frequently Used"},{"@type":"BreadcrumbList","@id":"https:\/\/data-flair.training\/blogs\/linux-commands-tutorial\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog Home","item":"https:\/\/data-flair.training\/blogs\/"},{"@type":"ListItem","position":2,"name":"Linux Tutorials","item":"https:\/\/data-flair.training\/blogs\/category\/linux\/"},{"@type":"ListItem","position":3,"name":"Linux Commands Tutorial &#8211; 15 Most Frequently Used"}]},{"@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\/7f83c342f5d1632d6f7b4b0b0f447823","name":"DataFlair Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/4cf3a74600d131330b8c481d519afd1574093ed89f6d3396a95393ad223eb7cd?s=96&d=mm&r=g","caption":"DataFlair Team"},"description":"DataFlair Team creates expert-level guides on programming, Java, Python, C++, DSA, AI, ML, data Science, Android, Flutter, MERN, Web Development, and technology. Our goal is to empower learners with easy-to-understand content. Explore our resources for career growth and practical learning.","url":"https:\/\/data-flair.training\/blogs\/author\/dfteam1\/"}]}},"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/357","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\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/comments?post=357"}],"version-history":[{"count":5,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/357\/revisions"}],"predecessor-version":[{"id":42784,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/posts\/357\/revisions\/42784"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media\/42783"}],"wp:attachment":[{"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/media?parent=357"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/categories?post=357"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/data-flair.training\/blogs\/wp-json\/wp\/v2\/tags?post=357"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}