Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php on line 152

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831

Warning: Cannot modify header information - headers already sent by (output started at /home/kenbauer/public_kenscourses/tc101fall2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101fall2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831
{"id":27218,"date":"2015-11-24T07:39:08","date_gmt":"2015-11-24T13:39:08","guid":{"rendered":"https:\/\/ricardonewton.withknown.com\/2015\/mastery22-when-to-use-what-type-of-repetition-in-a"},"modified":"2015-11-24T07:39:08","modified_gmt":"2015-11-24T13:39:08","slug":"mastery22-when-to-use-what-type-of-repetition-in-a-program-2","status":"publish","type":"post","link":"https:\/\/kenscourses.com\/tc101fall2015\/2015\/mastery22-when-to-use-what-type-of-repetition-in-a-program-2\/","title":{"rendered":"#Mastery22 – When to use what type of repetition in a program"},"content":{"rendered":"
\n

Hello this is #Mastery22<\/a> about repetitions in programs. A repetition is an integral part of a programming language. These repetitive operation or sentences are named as \u201diterations\u201d. An iteration means that a process is repeated again and again. To do this, the principal method is the loop which are commonly used in any programming work. Loops are used when wanting to reduce a process into simpler coding, when something has to be repeated on and on.\u00a0 <\/span>Loops are the basis of the repetition in any programming language.\u00a0 <\/span>There are different types of loops of course, like while, for etc.<\/span><\/p>\n

\u00a0<\/span><\/p>\n

While- a code of bock that uses a while has to include a condition to be valid and for it to compile and work correctly. They allow the program to perform a particular action while a set condition is true.<\/span><\/p>\n

\u00a0\"\"<\/span><\/p>\n

\u00a0<\/p>\n

\u00a0<\/p>\n

\"\"
<\/span><\/p>\n

Break and continue- It can be used to end a loop before some condition. If you type continue, the loop continues to do its work, obviously.<\/span><\/p>\n

\u00a0<\/span><\/p>\n

This processes enables the programs to repeat an action as long as a particular set condition remains true. <\/span><\/p>\n

\u00a0<\/span><\/p>\n

A for loop is another kind of repetition when coding in c++. A for loop can provide the beginning of the loop, obviously a condition and updates like\u2026<\/span><\/p>\n

( i=0 ; i <\/span><\/p>\n

\u00a0<\/p>\n

\u00a0<\/p>\n

\"\"<\/span><\/p>\n

\u00a0<\/p>\n

\"\"\u00a0<\/span><\/p>\n

\u00a0WATCH MY VIDEO \u00a0https:\/<\/wbr>\/<\/wbr>youtu.be\/<\/wbr>R6TX6gDnFhg<\/a><\/span><\/span><\/h1>\n

\u00a0<\/h1>\n<\/div>\n","protected":false},"excerpt":{"rendered":"
\n

Hello this is #Mastery22<\/a> about repetitions in programs. A repetition is an integral part of a programming language. These repetitive operation or sentences are named as ”iterations”. An iteration means that a process is repeated again and again. To do this, the principal method is the loop which are commonly used in any programming work. Loops are used when wanting to reduce a process into simpler coding, when something has to be repeated on and on.  <\/span>Loops are the basis of the repetition in any programming language.  <\/span>There are different types of loops of course, like while, for etc.<\/span><\/p>\n

 <\/span><\/p>\n

While- a code of bock that uses a while has to include a condition to be valid and for it to compile and work correctly. They allow the program to perform a particular action while a set condition is true.<\/span><\/p>\n

 \"\"<\/span><\/p>\n

 <\/p>\n

 <\/p>\n

\"\"
<\/span><\/p>\n

Break and continue- It can be used to end a loop before some condition. If you type continue, the loop continues to do its work, obviously.<\/span><\/p>\n

 <\/span><\/p>\n

This processes enables the programs to repeat an action as long as a particular set condition remains true. <\/span><\/p>\n

 <\/span><\/p>\n

A for loop is another kind of repetition when coding in c++. A for loop can provide the beginning of the loop, obviously a condition and updates like…<\/span><\/p>\n

( i=0 ; i <\/span><\/p>\n

 <\/p>\n

 <\/p>\n

\"\"<\/span><\/p>\n

 <\/p>\n

\"\" <\/span><\/p>\n

 WATCH MY VIDEO  https:\/\/youtu.be\/R6TX6gDnFhg<\/a><\/span><\/span><\/h1>\n

 <\/h1>\n<\/div>\n","protected":false},"author":254,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[4,3],"tags":[336],"_links":{"self":[{"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/posts\/27218"}],"collection":[{"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/users\/254"}],"replies":[{"embeddable":true,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/comments?post=27218"}],"version-history":[{"count":3,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/posts\/27218\/revisions"}],"predecessor-version":[{"id":29998,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/posts\/27218\/revisions\/29998"}],"wp:attachment":[{"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/media?parent=27218"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/categories?post=27218"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/kenscourses.com\/tc101fall2015\/wp-json\/wp\/v2\/tags?post=27218"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}