{"id":56557,"date":"2023-06-13T17:39:33","date_gmt":"2023-06-13T23:39:33","guid":{"rendered":"https:\/\/www.codewizardshq.com\/?p=56557"},"modified":"2023-08-04T00:21:59","modified_gmt":"2023-08-04T06:21:59","slug":"how-programming-develops-problem-solving-skills-in-children","status":"publish","type":"post","link":"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/","title":{"rendered":"How Programming Develops Problem-Solving Skills in Children"},"content":{"rendered":"\n<blockquote class=\"wp-block-quote is-layout-flow wp-block-quote-is-layout-flow\">\n<p>You think there is life and there are problems. Two separate things. But in reality, they are inseparable. <\/p>\n<cite>&#8211; Buddha<\/cite><\/blockquote>\n\n\n\n<p>Many parents understand that learning to code builds their child\u2019s problem-solving skills. But very few parents know how. Using the example of \u201cRock Paper Scissors\u201d, a game that we teach kids to build in one of our <a href=\"https:\/\/www.codewizardshq.com\/intro-to-python-programming-class\/\">Python courses<\/a>, we\u2019ll show you how coding naturally develops problem-solving skills in children.&nbsp;<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-the-art-of-problem-solving\"><strong>The Art of Problem-Solving<\/strong><\/h2>\n\n\n\n<p>Teaching problem-solving to kids is important because they will need these skills to succeed in everyday life. By providing structure and practice, kids can improve these skills and be confident in solving problems.<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/aYQY25fDH1w3wb1oXutA3VrqNPStf90MguiKa3KwWuyb1ri0z_wqJTs-SjjAmO8p9u5RB1iL6w717Enu54OKrXPo4QARNafpxecH6iad5JtHlllcJ_hY9n7K4558ma1bj2XuhVs018UlKs0RiAgqeoQ\" alt=\"Girls who is confused and has a problem\"\/><\/figure>\n\n\n\n<p>When faced with a problem or a challenge, we ask children how they would go about solving it. Most kids would have this reaction: <em>\u201cI don\u2019t even know where to start!\u201d<\/em>. <\/p>\n\n\n\n<p>A simple and intuitive problem-solving framework helps them think about a problem in a structured way and gets them started.&nbsp;<\/p>\n\n\n\n<p><strong>Below is a simple and intuitive problem-solving framework with three steps:<\/strong><\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>Break the problem down into smaller problems.<\/li>\n\n\n\n<li>Decide which smaller problem to tackle first, which next, and so on.<\/li>\n\n\n\n<li>Find a solution for each small problem, until all the problems are solved.<\/li>\n<\/ol>\n\n\n\n<h3 class=\"wp-block-heading\">1. <strong>Break the problem down into smaller problems.&nbsp;<\/strong><\/h3>\n\n\n\n<p>A big problem can almost always be broken down into smaller problems. This is called problem decomposition. These smaller problems are easier to get started on and easier to solve. Once the first small problem is solved, it provides children with the confidence and the forward momentum to solve the subsequent small problems until the entire problem is solved.&nbsp;<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">2. <strong>Decide which small problem to tackle first, which next, and so on.&nbsp;<\/strong><\/h3>\n\n\n\n<p>Once the big problem has been broken down into smaller problems, they need to finalize the order in which these small problems should be solved. This process of thinking about these small problems and finalizing the order in which to solve them is called problem sequencing.&nbsp;<\/p>\n\n\n\n<p>You may consider which small problems you already know how to solve and start with those. Some of these small problems are dependent on other small problems getting solved first. So, they\u2019ll need to be completed in a way that accounts for that. Once problem sequencing is done, you are almost halfway done with solving the problem.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\">3. <strong>Find a solution for each small problem, until all the problems are solved.<\/strong><\/h3>\n\n\n\n<p>Finally, these small problems need to be solved one at a time. Because these problems have a much simpler scope and complexity than the big problem, solving them is much easier. Using a mix of creativity and critical thinking, kids can come up with a solution, apply it, and then analyze the results. The more experience and practice they have, the easier it will become to solve progressively larger problems.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"h-how-programming-teaches-kids-the-art-of-problem-solving\"><strong>How programming teaches kids the art of problem-solving<\/strong><\/h2>\n\n\n\n<p>The \u201cRock Paper Scissors\u201d project at CodeWizardsHQ is a perfect example to demonstrate how students develop problem-solving skills while learning programming. Students use the steps outlined above to solve problems with code.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-students-break-the-game-down-into-smaller-pieces\"><strong>Students break the game down into smaller pieces.<\/strong><\/h3>\n\n\n\n<p>For this project, we initially asked students how we should go about building the \u201cRock Paper Scissors\u201d game. Most students don\u2019t know where to start. That is when we introduce the problem-solving framework of decomposing the problem into smaller steps. As soon as we teach them how to think about the problem, they can use that thought process to formulate these three steps:<\/p>\n\n\n\n<ol class=\"wp-block-list\">\n<li>User makes a choice<\/li>\n\n\n\n<li>Computer makes a choice<\/li>\n\n\n\n<li>Decide winner and display&nbsp;<\/li>\n<\/ol>\n\n\n\n<p>After the student deconstructs the problem, they realize how breaking down a problem puts them in a much better position to solve it. Confusion turns to confidence as they have now figured out a starting point.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-decide-which-smaller-problem-to-tackle-first-which-next-and-so-on\"><strong>Decide which smaller problem to tackle first, which next, and so on.&nbsp;<\/strong><\/h3>\n\n\n\n<p>Now that the small problems are identified, they must decide the order in which to solve them. Kids use their computational and critical thinking skills here to consider all factors that may affect the order.<\/p>\n\n\n\n<p>The game steps are organized in the order that the game is executed. We also ask students to consider any dependencies. For example, both the user and the computer must make a choice before the winner is decided. As a result, the winner has to be decided and displayed at the end.&nbsp;<\/p>\n\n\n\n<p>Also, the computer cannot make a choice before the user. That would mean that the user must make a choice immediately at the same time or they will know the computer\u2019s choice before making their choice and the game would not be fair.<\/p>\n\n\n\n<p>As a result, the steps are solved in this order:<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh4.googleusercontent.com\/jg8VRNlrenqp00-En1oq2Ej5UdJ64FeTU6RtifKlo7hixrX6ZUMMWdVYXktbrQIPURBvwnlx-GPo1iD_odlTb69VLPJP1e090pvL1yw7xAxYBayFMTT6dg1FOuY1ok4kdGxfNE9mU1eZd4FVeBSp-OQ\" alt=\"Problem solving steps for tic tac toe\"\/><\/figure>\n\n\n\n<h3 class=\"wp-block-heading\" id=\"h-find-a-solution-for-each-small-problem-until-all-the-problems-are-solved\"><strong>Find a solution for each small problem, until all the problems are solved.<\/strong><\/h3>\n\n\n\n<p>Once students have the three smaller steps and the order in which to solve them, they can write code to solve each one.<\/p>\n\n\n\n<p><strong>For the first step, the computer needs to ask the user to make a choice. <\/strong>Students will know how to solve this specific problem because asking for user input is one of the first things they learn in the middle school <a href=\"https:\/\/www.codewizardshq.com\/intro-to-python-programming-class\/\">Intro to Programming in Python<\/a> course and also in our high school <a href=\"https:\/\/www.codewizardshq.com\/intro-to-python-coding-class-hs\/\">Intro to Python<\/a> course.&nbsp;&nbsp;<\/p>\n\n\n\n<p><strong>For the second step in the game, the computer needs to choose from the same options presented to the user: rock, paper, or scissors.<\/strong> This step requires the student to think of a way for the computer to make a choice.<\/p>\n\n\n\n<p>The student might think to themselves, \u201cwhen I play rock paper scissors, what the other person chooses is <em>random <\/em>to me\u201d. <\/p>\n\n\n\n<p>Luckily, they already know how to write code that tells the computer to create a random number. This is also taught in the middle school <a href=\"https:\/\/www.codewizardshq.com\/intro-to-python-programming-class\/\">Intro to Programming in Python<\/a> and also high school <a href=\"https:\/\/www.codewizardshq.com\/intro-to-python-coding-class-hs\/\">Intro to Python<\/a> course. It\u2019s a common programming problem that has a standard solution. All they need to do now is connect the random number to the computer\u2019s choice.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh3.googleusercontent.com\/s71YccnVx0TTonqzwrKT6WCyKdGU5-cRk5euVtNqTVI24xGQ_ftYAh-I6aee-JI9mt8H64xAVltHKk2Ezzb_EPfBYsJqjavhqFF2w5atLgghtio_qNTo_ktzF7TZxUSSAxMzwgQvzPJTHWNT96zO7fk\" alt=\"python code for random number\"\/><\/figure>\n\n\n\n<p>In order to get a random choice, the computer must first generate a random number between 1 and 3. Students then program \u201cif\u201d statements that attach each potential number to one of the choices: rock, paper, or scissors. The computer now randomly picks from rock, paper, or scissors by generating a random number.<\/p>\n\n\n\n<figure class=\"wp-block-image size-full is-resized\"><a href=\"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/08\/python-if-else-statement.png\"><img decoding=\"async\" src=\"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/08\/python-if-else-statement.png\" alt=\"python if else statement\" class=\"wp-image-57125\" width=\"337\" srcset=\"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/08\/python-if-else-statement.png 550w, https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/08\/python-if-else-statement-300x125.png 300w\" sizes=\"(max-width: 550px) 100vw, 550px\" \/><\/a><\/figure>\n\n\n\n<p><strong>For the last step, they need the computer to decide who the winner is based on the choices made by the user and the computer. <\/strong>The computer will show a different output for each combination but, since students rarely practice organizing their thoughts, all of these combinations might feel jumbled in their heads.&nbsp;<\/p>\n\n\n\n<p>To solve this problem, we ask them to list each of the combinations and outcomes by organizing them in a logical drawing. With a little guidance, they end up with a decision tree like the one below.&nbsp;<\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/NbbBu1-QTr1DpdoA-BFkVf5YcvpO2kFUFvgcxS4RAZLf44YfjeMUj6hBuNcUL_zsyIaUVKG1s_lJ86gZvfmlnLaPknpFdtyQp419wquzYPV-fOWYo34hU4xAvX-e3xw18qFk92x-ig7sbQRzoMzsO_Y\" alt=\"Decision tree for tic tac toe \"\/><\/figure>\n\n\n\n<p>For every user choice, the computer will randomly pick from three options. By extending that logic, the student can organize three possible user choices with three corresponding computer choices for each, a total of nine outcomes.<\/p>\n\n\n\n<p>When we get students to tell us about how the computer reaches each outcome, they start to explain it in an \u201cif-then\u201d structure. \u201cIf I pick rock, and if the computer picks scissors, then the computer outputs \u2018rock wins\u2019\u201d. Transferring this logical \u201cif-then\u201d structure into code for each of the nine outcomes is just a matter of knowing the correct syntax.<\/p>\n\n\n\n<p>The result in Python: <\/p>\n\n\n\n<figure class=\"wp-block-image\"><img decoding=\"async\" src=\"https:\/\/lh6.googleusercontent.com\/VyQVv86t0wdQtgOcqJXwQcLlm6Tdg5KprnTJI-h2IVQn61kQDiYRBMhA2vYa2PtHAPzTbwq5hX23hkuNJc5JfMu-BsWGV5BPES3s9LTFDruSimO7p4ArLJySauIu_jzvs0CQuO6D9RWuAozhi0DZHEw\" alt=\"Tic tac toe written in python syntax\"\/><\/figure>\n\n\n\n<p><\/p>\n\n\n\n<p><strong>Our \u201crock paper scissors\u201d game shows how students can go from not knowing where to start to completely solve a difficult problem using code.<\/strong>&nbsp;<\/p>\n\n\n\n<p>Programming encourages students to exercise their critical thinking and problem-solving skills. It\u2019s an exciting and fun way for students to learn and build on these skills. Students at <a href=\"https:\/\/www.codewizardshq.com\/\">CodeWizardsHQ<\/a> practice their problem-solving skills during every class. As they advance, they\u2019re able to solve more and more difficult problems using code.<\/p>\n\n\n\n<p>The practice of breaking down problems, logically sequencing them, and solving one small problem at a time applies to more than coding. They are actively used in school and work. <\/p>\n\n\n\n<p><strong>Students can build on what they learn while programming and apply these skills to the problems they face in everyday life.&nbsp;<\/strong><\/p>\n","protected":false},"excerpt":{"rendered":"<p>You think there is life and there are problems. Two separate things. But in reality, they are inseparable. &#8211; Buddha Many parents understand that learning to code builds their child\u2019s problem-solving skills. But very few parents know how. Using the example of \u201cRock Paper Scissors\u201d, a game that we teach kids to build in one [&hellip;]<\/p>\n","protected":false},"author":24,"featured_media":56559,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"om_disable_all_campaigns":false,"inline_featured_image":false,"_lmt_disableupdate":"","_lmt_disable":"","footnotes":""},"categories":[4754],"tags":[],"class_list":["post-56557","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-advice-for-parents"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v26.8 (Yoast SEO v26.8) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>How Programming Develops Problem-Solving Skills in Children<\/title>\n<meta name=\"description\" content=\"Kids need to develop solid problem-solving skills. Coding is a great way for kids to learn and practice problem-solving. Learn more.\" \/>\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.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How Programming Develops Problem-Solving Skills in Children\" \/>\n<meta property=\"og:description\" content=\"Kids need to develop solid problem-solving skills. Coding is a great way for kids to learn and practice problem-solving. Learn more.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/\" \/>\n<meta property=\"og:site_name\" content=\"CodeWizardsHQ\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/codewizardshq\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-13T23:39:33+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-08-04T06:21:59+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/06\/02-How-programming-develops-600x323-1.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"600\" \/>\n\t<meta property=\"og:image:height\" content=\"323\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"Margaret Choi\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@codewizardshq\" \/>\n<meta name=\"twitter:site\" content=\"@codewizardshq\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Margaret Choi\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"8 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\n\t    \"@context\": \"https:\/\/schema.org\",\n\t    \"@graph\": [\n\t        {\n\t            \"@type\": \"Article\",\n\t            \"@id\": \"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#article\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/\"\n\t            },\n\t            \"author\": {\n\t                \"name\": \"Margaret Choi\",\n\t                \"@id\": \"https:\/\/www.codewizardshq.com\/#\/schema\/person\/0d1794273fcc4d0b634d50375e00e1ca\"\n\t            },\n\t            \"headline\": \"How Programming Develops Problem-Solving Skills in Children\",\n\t            \"datePublished\": \"2023-06-13T23:39:33+00:00\",\n\t            \"dateModified\": \"2023-08-04T06:21:59+00:00\",\n\t            \"mainEntityOfPage\": {\n\t                \"@id\": \"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/\"\n\t            },\n\t            \"wordCount\": 1394,\n\t            \"publisher\": {\n\t                \"@id\": \"https:\/\/www.codewizardshq.com\/#organization\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/06\/01-How-programming-develops-1600x395-1.jpg\",\n\t            \"articleSection\": [\n\t                \"Advice for Parents\"\n\t            ],\n\t            \"inLanguage\": \"en-US\"\n\t        },\n\t        {\n\t            \"@type\": \"WebPage\",\n\t            \"@id\": \"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/\",\n\t            \"url\": \"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/\",\n\t            \"name\": \"How Programming Develops Problem-Solving Skills in Children\",\n\t            \"isPartOf\": {\n\t                \"@id\": \"https:\/\/www.codewizardshq.com\/#website\"\n\t            },\n\t            \"primaryImageOfPage\": {\n\t                \"@id\": \"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#primaryimage\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#primaryimage\"\n\t            },\n\t            \"thumbnailUrl\": \"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/06\/01-How-programming-develops-1600x395-1.jpg\",\n\t            \"datePublished\": \"2023-06-13T23:39:33+00:00\",\n\t            \"dateModified\": \"2023-08-04T06:21:59+00:00\",\n\t            \"description\": \"Kids need to develop solid problem-solving skills. Coding is a great way for kids to learn and practice problem-solving. Learn more.\",\n\t            \"breadcrumb\": {\n\t                \"@id\": \"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#breadcrumb\"\n\t            },\n\t            \"inLanguage\": \"en-US\",\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"ReadAction\",\n\t                    \"target\": [\n\t                        \"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/\"\n\t                    ]\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"ImageObject\",\n\t            \"inLanguage\": \"en-US\",\n\t            \"@id\": \"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#primaryimage\",\n\t            \"url\": \"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/06\/01-How-programming-develops-1600x395-1.jpg\",\n\t            \"contentUrl\": \"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/06\/01-How-programming-develops-1600x395-1.jpg\",\n\t            \"width\": 1600,\n\t            \"height\": 395,\n\t            \"caption\": \"How programming develops problem solving in children page banner\"\n\t        },\n\t        {\n\t            \"@type\": \"BreadcrumbList\",\n\t            \"@id\": \"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#breadcrumb\",\n\t            \"itemListElement\": [\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 1,\n\t                    \"name\": \"Home\",\n\t                    \"item\": \"https:\/\/www.codewizardshq.com\/\"\n\t                },\n\t                {\n\t                    \"@type\": \"ListItem\",\n\t                    \"position\": 2,\n\t                    \"name\": \"How Programming Develops Problem-Solving Skills in Children\"\n\t                }\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"WebSite\",\n\t            \"@id\": \"https:\/\/www.codewizardshq.com\/#website\",\n\t            \"url\": \"https:\/\/www.codewizardshq.com\/\",\n\t            \"name\": \"CodeWizardsHQ\",\n\t            \"description\": \"The leading online coding academy for kids and teens ages 8-18\",\n\t            \"publisher\": {\n\t                \"@id\": \"https:\/\/www.codewizardshq.com\/#organization\"\n\t            },\n\t            \"potentialAction\": [\n\t                {\n\t                    \"@type\": \"SearchAction\",\n\t                    \"target\": {\n\t                        \"@type\": \"EntryPoint\",\n\t                        \"urlTemplate\": \"https:\/\/www.codewizardshq.com\/?s={search_term_string}\"\n\t                    },\n\t                    \"query-input\": {\n\t                        \"@type\": \"PropertyValueSpecification\",\n\t                        \"valueRequired\": true,\n\t                        \"valueName\": \"search_term_string\"\n\t                    }\n\t                }\n\t            ],\n\t            \"inLanguage\": \"en-US\"\n\t        },\n\t        {\n\t            \"@type\": \"Organization\",\n\t            \"@id\": \"https:\/\/www.codewizardshq.com\/#organization\",\n\t            \"name\": \"CodeWizardsHQ\",\n\t            \"url\": \"https:\/\/www.codewizardshq.com\/\",\n\t            \"logo\": {\n\t                \"@type\": \"ImageObject\",\n\t                \"inLanguage\": \"en-US\",\n\t                \"@id\": \"https:\/\/www.codewizardshq.com\/#\/schema\/logo\/image\/\",\n\t                \"url\": \"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2016\/08\/blueVertical@2x-e1572141901928.png\",\n\t                \"contentUrl\": \"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2016\/08\/blueVertical@2x-e1572141901928.png\",\n\t                \"width\": 150,\n\t                \"height\": 108,\n\t                \"caption\": \"CodeWizardsHQ\"\n\t            },\n\t            \"image\": {\n\t                \"@id\": \"https:\/\/www.codewizardshq.com\/#\/schema\/logo\/image\/\"\n\t            },\n\t            \"sameAs\": [\n\t                \"https:\/\/www.facebook.com\/codewizardshq\/\",\n\t                \"https:\/\/x.com\/codewizardshq\",\n\t                \"https:\/\/www.instagram.com\/codewizardshq\/\",\n\t                \"https:\/\/www.linkedin.com\/company\/codewizardshq\",\n\t                \"https:\/\/www.pinterest.com\/codewizardshq\/\",\n\t                \"https:\/\/www.youtube.com\/channel\/UC4NM0jfN0LI8_vWtiwLqgGw\"\n\t            ]\n\t        },\n\t        {\n\t            \"@type\": \"Person\",\n\t            \"@id\": \"https:\/\/www.codewizardshq.com\/#\/schema\/person\/0d1794273fcc4d0b634d50375e00e1ca\",\n\t            \"name\": \"Margaret Choi\",\n\t            \"image\": {\n\t                \"@type\": \"ImageObject\",\n\t                \"inLanguage\": \"en-US\",\n\t                \"@id\": \"https:\/\/www.codewizardshq.com\/#\/schema\/person\/image\/\",\n\t                \"url\": \"https:\/\/secure.gravatar.com\/avatar\/7815305d40218c8baa3db95a35d697293aad7b383484ae7e26b6383e0f67b6ba?s=96&d=mm&r=g\",\n\t                \"contentUrl\": \"https:\/\/secure.gravatar.com\/avatar\/7815305d40218c8baa3db95a35d697293aad7b383484ae7e26b6383e0f67b6ba?s=96&d=mm&r=g\",\n\t                \"caption\": \"Margaret Choi\"\n\t            },\n\t            \"description\": \"Instructor and marketing manager at CodeWizardsHQ since 2019. She breaks down topics around coding and specific coding languages for kids to understand.\",\n\t            \"sameAs\": [\n\t                \"https:\/\/www.facebook.com\/margaret.choi.3\"\n\t            ],\n\t            \"url\": \"https:\/\/www.codewizardshq.com\/author\/margaretchoi\/\"\n\t        }\n\t    ]\n\t}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"How Programming Develops Problem-Solving Skills in Children","description":"Kids need to develop solid problem-solving skills. Coding is a great way for kids to learn and practice problem-solving. Learn more.","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.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/","og_locale":"en_US","og_type":"article","og_title":"How Programming Develops Problem-Solving Skills in Children","og_description":"Kids need to develop solid problem-solving skills. Coding is a great way for kids to learn and practice problem-solving. Learn more.","og_url":"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/","og_site_name":"CodeWizardsHQ","article_publisher":"https:\/\/www.facebook.com\/codewizardshq\/","article_published_time":"2023-06-13T23:39:33+00:00","article_modified_time":"2023-08-04T06:21:59+00:00","og_image":[{"width":600,"height":323,"url":"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/06\/02-How-programming-develops-600x323-1.jpg","type":"image\/jpeg"}],"author":"Margaret Choi","twitter_card":"summary_large_image","twitter_creator":"@codewizardshq","twitter_site":"@codewizardshq","twitter_misc":{"Written by":"Margaret Choi","Est. reading time":"8 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#article","isPartOf":{"@id":"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/"},"author":{"name":"Margaret Choi","@id":"https:\/\/www.codewizardshq.com\/#\/schema\/person\/0d1794273fcc4d0b634d50375e00e1ca"},"headline":"How Programming Develops Problem-Solving Skills in Children","datePublished":"2023-06-13T23:39:33+00:00","dateModified":"2023-08-04T06:21:59+00:00","mainEntityOfPage":{"@id":"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/"},"wordCount":1394,"publisher":{"@id":"https:\/\/www.codewizardshq.com\/#organization"},"image":{"@id":"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#primaryimage"},"thumbnailUrl":"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/06\/01-How-programming-develops-1600x395-1.jpg","articleSection":["Advice for Parents"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/","url":"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/","name":"How Programming Develops Problem-Solving Skills in Children","isPartOf":{"@id":"https:\/\/www.codewizardshq.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#primaryimage"},"image":{"@id":"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#primaryimage"},"thumbnailUrl":"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/06\/01-How-programming-develops-1600x395-1.jpg","datePublished":"2023-06-13T23:39:33+00:00","dateModified":"2023-08-04T06:21:59+00:00","description":"Kids need to develop solid problem-solving skills. Coding is a great way for kids to learn and practice problem-solving. Learn more.","breadcrumb":{"@id":"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#primaryimage","url":"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/06\/01-How-programming-develops-1600x395-1.jpg","contentUrl":"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/06\/01-How-programming-develops-1600x395-1.jpg","width":1600,"height":395,"caption":"How programming develops problem solving in children page banner"},{"@type":"BreadcrumbList","@id":"https:\/\/www.codewizardshq.com\/how-programming-develops-problem-solving-skills-in-children\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.codewizardshq.com\/"},{"@type":"ListItem","position":2,"name":"How Programming Develops Problem-Solving Skills in Children"}]},{"@type":"WebSite","@id":"https:\/\/www.codewizardshq.com\/#website","url":"https:\/\/www.codewizardshq.com\/","name":"CodeWizardsHQ","description":"The leading online coding academy for kids and teens ages 8-18","publisher":{"@id":"https:\/\/www.codewizardshq.com\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.codewizardshq.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.codewizardshq.com\/#organization","name":"CodeWizardsHQ","url":"https:\/\/www.codewizardshq.com\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.codewizardshq.com\/#\/schema\/logo\/image\/","url":"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2016\/08\/blueVertical@2x-e1572141901928.png","contentUrl":"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2016\/08\/blueVertical@2x-e1572141901928.png","width":150,"height":108,"caption":"CodeWizardsHQ"},"image":{"@id":"https:\/\/www.codewizardshq.com\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/codewizardshq\/","https:\/\/x.com\/codewizardshq","https:\/\/www.instagram.com\/codewizardshq\/","https:\/\/www.linkedin.com\/company\/codewizardshq","https:\/\/www.pinterest.com\/codewizardshq\/","https:\/\/www.youtube.com\/channel\/UC4NM0jfN0LI8_vWtiwLqgGw"]},{"@type":"Person","@id":"https:\/\/www.codewizardshq.com\/#\/schema\/person\/0d1794273fcc4d0b634d50375e00e1ca","name":"Margaret Choi","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.codewizardshq.com\/#\/schema\/person\/image\/","url":"https:\/\/secure.gravatar.com\/avatar\/7815305d40218c8baa3db95a35d697293aad7b383484ae7e26b6383e0f67b6ba?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/7815305d40218c8baa3db95a35d697293aad7b383484ae7e26b6383e0f67b6ba?s=96&d=mm&r=g","caption":"Margaret Choi"},"description":"Instructor and marketing manager at CodeWizardsHQ since 2019. She breaks down topics around coding and specific coding languages for kids to understand.","sameAs":["https:\/\/www.facebook.com\/margaret.choi.3"],"url":"https:\/\/www.codewizardshq.com\/author\/margaretchoi\/"}]}},"modified_by":"Margaret Choi","featured_image_src":"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/06\/01-How-programming-develops-1600x395-1-600x395.jpg","featured_image_src_square":"https:\/\/www.codewizardshq.com\/wp-content\/uploads\/2023\/06\/01-How-programming-develops-1600x395-1-600x395.jpg","author_info":{"display_name":"Margaret Choi","author_link":"https:\/\/www.codewizardshq.com\/author\/margaretchoi\/"},"_links":{"self":[{"href":"https:\/\/www.codewizardshq.com\/wp-json\/wp\/v2\/posts\/56557","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.codewizardshq.com\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.codewizardshq.com\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.codewizardshq.com\/wp-json\/wp\/v2\/users\/24"}],"replies":[{"embeddable":true,"href":"https:\/\/www.codewizardshq.com\/wp-json\/wp\/v2\/comments?post=56557"}],"version-history":[{"count":0,"href":"https:\/\/www.codewizardshq.com\/wp-json\/wp\/v2\/posts\/56557\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.codewizardshq.com\/wp-json\/wp\/v2\/media\/56559"}],"wp:attachment":[{"href":"https:\/\/www.codewizardshq.com\/wp-json\/wp\/v2\/media?parent=56557"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.codewizardshq.com\/wp-json\/wp\/v2\/categories?post=56557"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.codewizardshq.com\/wp-json\/wp\/v2\/tags?post=56557"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}