Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101winter2015/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/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/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/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/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/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/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/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/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/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/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/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/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/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/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/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/rest-api/class-wp-rest-server.php on line 1831
{"id":13741,"date":"2015-05-05T18:58:50","date_gmt":"2015-05-05T23:58:50","guid":{"rendered":"https:\/\/joseeduardosanchezrosas.withknown.com\/2015\/mastery-22"},"modified":"2015-05-05T18:58:50","modified_gmt":"2015-05-05T23:58:50","slug":"mastery22-tc1017-3","status":"publish","type":"post","link":"https:\/\/kenscourses.com\/tc101winter2015\/2015\/mastery22-tc1017-3\/","title":{"rendered":"#Mastery22 – #TC1017"},"content":{"rendered":"
\n

#Mastery<\/a>22 #TC<\/a>1017<\/p>\n

Two types of repetition structures: pretest and posttest loops<\/em><\/p>\n

Pretest:<\/p>\n

    \n
  1. Loop condition appears at beginning of pretest loop<\/li>\n
  2. Determines number of times instructions w\/in loop body are processed<\/li>\n<\/ol>\n

    #f5f5dc;”>Types of pretest loop:<\/span><\/p>\n

      \n
    1. while<\/li>\n
    2. for<\/li>\n<\/ol>\n

      #f5f5dc;”>Posttest:<\/span><\/p>\n

        \n
      1. Loop condition appears at end of posttest loop<\/li>\n
      2. Determines number of times instructions w\/in loop body are processed<\/li>\n
      3. HOWEVER, instructions processed\u00a0at least once<\/span>–the first time!<\/li>\n<\/ol>\n

        #f5f5dc;”>Types of posttest loop:<\/span><\/p>\n

          \n
        1. do…while while<\/li>\n<\/ol>\n

          #f5f5dc;”>Counter-Controlled Repetition Requires<\/span><\/p>\n

            \n
          1. the\u00a0name of a control variable<\/strong>\u00a0(or loop counter)<\/li>\n
          2. the\u00a0initial value<\/strong>\u00a0of the control variable<\/li>\n
          3. the\u00a0loop-continuation condition<\/strong>\u00a0that tests for the final value of the control variable to determine when to exit<\/li>\n
          4. the control variable to be\u00a0incremented<\/strong>\u00a0(or\u00a0decremented<\/strong>) each time through the loop<\/li>\n<\/ol>\n

            Using while Loop:<\/em><\/p>\n