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/feed-rss2.php on line 8
‘#mastery22’ Articles at Courses by Ken https://kenscourses.com/tc101winter2015 Facilitator of Learning Experiences Thu, 07 May 2015 05:42:06 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ #TC1014 #Mastery21 #Mastery22 https://kenscourses.com/tc101winter2015/2015/tc1014-mastery21-mastery22/ Thu, 07 May 2015 05:42:06 +0000 https://programminglearning.withknown.com/2015/tc1014-mastery21-mastery22

https://youtu.be/Gyr37CdLisU

1014 21 22

 

Continue reading ]]>

https://youtu.be/Gyr37CdLisU

1014 21 22

 

]]>
https://creativecommons.org/licenses/by/4.0/
¿Qué ciclo es mejor y en qué casos? – C++ https://kenscourses.com/tc101winter2015/2015/que-ciclo-es-mejor-y-en-que-casos-c/ Thu, 07 May 2015 05:05:29 +0000 https://gonzalomata22.withknown.com/2015/qu-ciclo-es-mejor-y-en-qu-casos---c

1017

22

Hola!!

Esto es como un resumen. Recapitulando las tres maneras que vimos a lo largo del semestre para hacer ciclos: Form while y do-while. En el siguiente video hago comentarios de lo que a mi parecer es mejor opción utilizar cierto tipo de ciclo para aprovechar al máximo las características de cada uno, etc... Espero que le entiendan y que les ayude el video! :D

 

 

Continue reading ]]>

1017

22

Hola!!

Esto es como un resumen. Recapitulando las tres maneras que vimos a lo largo del semestre para hacer ciclos: Form while y do-while. En el siguiente video hago comentarios de lo que a mi parecer es mejor opción utilizar cierto tipo de ciclo para aprovechar al máximo las características de cada uno, etc… Espero que le entiendan y que les ayude el video! 😀

 

 

]]>
https://creativecommons.org/licenses/by/4.0/
Cuando usar las diferentes repeticiones https://kenscourses.com/tc101winter2015/2015/cuando-usar-las-diferentes-repeticiones/ Thu, 07 May 2015 04:50:35 +0000 https://jebg96.withknown.com/2015/cuando-usar-las-diferentes-repeticiones

1017  22

Aqui les dejo el link a mi video

En el explico cuando es conveniente usar los diferentes tipos de repeticiones que existen 

esta corto chequenlo!

link:

https://www.youtube.com/watch?v=dr9IjtZKjiM

Continue reading ]]>

1017  22

Aqui les dejo el link a mi video

En el explico cuando es conveniente usar los diferentes tipos de repeticiones que existen 

esta corto chequenlo!

link:

https://www.youtube.com/watch?v=dr9IjtZKjiM

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery22:: When to use what type of repetition in a program https://kenscourses.com/tc101winter2015/2015/mastery22-when-to-use-what-type-of-repetition-in-a-program-4/ Thu, 07 May 2015 03:37:51 +0000 https://carolinarmtz.withknown.com/2015/mastery22-when-to-use-what-type-of-repetition-in-a

#f5f5dc;">22

#f5f5dc;">Repetition structures, or loops, are used when a program needs to repeatedly process one or more instructions until some condition is met, at which time the loop ends. Many programming tasks are repetitive, having little variation from one item to the next. The process of performing the same task over and over again is called iteration, and C++ provides built-in iteration functionality. A loop executes the same section of program code over and over again, as long as a loop condition of some sort is met with each iteration. This section of code can be a single statement or a block of statements (a compound statement). (http://www.cs.fsu.edu/~cop3014p/lectures/ch5/index.html)

 

Two types of repetition structures: pretest and posttest loops

Pretest:

  1. Loop condition appears at beginning of pretest loop
  2. Determines number of times instructions w/in loop body are processed


Types of pretest loop:

  • while
  • for

Posttest:

  1. Loop condition appears at end of posttest loop
  2. Determines number of times instructions w/in loop body are processed
  3. HOWEVER, instructions processed at least once–the first time

1017

EXAMPLE!!!

Continue reading ]]>

http://www.cs.fsu.edu/~cop3014p/lectures/ch5/index.html)

 

Two types of repetition structures: pretest and posttest loops

Pretest:

  1. Loop condition appears at beginning of pretest loop
  2. Determines number of times instructions w/in loop body are processed


Types of pretest loop:

  • while
  • for

Posttest:

  1. Loop condition appears at end of posttest loop
  2. Determines number of times instructions w/in loop body are processed
  3. HOWEVER, instructions processed at least once–the first time

1017

EXAMPLE!!!

]]>
https://creativecommons.org/licenses/by/4.0/
#Mastery22 https://kenscourses.com/tc101winter2015/2015/mastery22-7/ Thu, 07 May 2015 03:27:15 +0000 https://feraguirre962.withknown.com/2015/mastery22

When to use what type of repetition in a program

Un for es más util cuando sabes exactamente el número de repeticiones que vas a hacer el programa, además es util cuando quieres permanecer en el ciclo hasta que una condición se cumpla y puedas romper el ciclo.

Es exactamente lo mismo que un WHILE pero la diferencia es que va a correr el programa sin el primer ciclo, no importa que condición y en la segunda  vuelta va a checar la condición que ingresemos.

Aquí esta un ejemplo de un programa donde uso FOR

22

 

 

Continue reading ]]>

When to use what type of repetition in a program

Un for es más util cuando sabes exactamente el número de repeticiones que vas a hacer el programa, además es util cuando quieres permanecer en el ciclo hasta que una condición se cumpla y puedas romper el ciclo.

Es exactamente lo mismo que un WHILE pero la diferencia es que va a correr el programa sin el primer ciclo, no importa que condición y en la segunda  vuelta va a checar la condición que ingresemos.

Aquí esta un ejemplo de un programa donde uso FOR

22

 

 

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery22 https://kenscourses.com/tc101winter2015/2015/mastery22-9/ Thu, 07 May 2015 03:19:00 +0000 http://kenscourses.com/tc101winter2015/?guid=71318f95c149bd68b4d575b6a13ee167 Continue reading ]]> Mastery22
here is the video http://youtu.be/EG0y28fjkTw

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery22 https://kenscourses.com/tc101winter2015/2015/mastery22-8/ Thu, 07 May 2015 03:19:00 +0000 http://kenscourses.com/tc101winter2015/?guid=71318f95c149bd68b4d575b6a13ee167 Continue reading ]]> Mastery22
here is the video http://youtu.be/EG0y28fjkTw

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery22 https://kenscourses.com/tc101winter2015/2015/mastery22-6/ Thu, 07 May 2015 03:19:00 +0000 http://kenscourses.com/tc101winter2015/?guid=71318f95c149bd68b4d575b6a13ee167 Continue reading ]]> Mastery22
here is the video http://youtu.be/EG0y28fjkTw

]]>
https://creativecommons.org/licenses/by/4.0/
When to use what type of repetition in a program #TC1017 #Mastery22 https://kenscourses.com/tc101winter2015/2015/when-to-use-what-type-of-repetition-in-a-program-tc1017-mastery22/ Thu, 07 May 2015 03:14:04 +0000 https://alejcbgmz.withknown.com/2015/when-to-use-what-type-of-repetition-in-a-program

When to use what type of repetition in a program 1017 22

Hello Everybody!!

Loops !! do.while, for, , while :)

Here is my link:

https://www.dropbox.com/s/n6zpjm72tjhwo50/Mastey22.mov?dl=0

Continue reading ]]>

When to use what type of repetition in a program 1017 22

Hello Everybody!!

Loops !! do.while, for, , while 🙂

Here is my link:

https://www.dropbox.com/s/n6zpjm72tjhwo50/Mastey22.mov?dl=0

]]>
https://creativecommons.org/licenses/by/4.0/
#Mastery22 #TC1017 https://www.youtube.com/watch?v=w7Lx0Nn3fXQ https://kenscourses.com/tc101winter2015/2015/mastery22-tc1017-httpswww-youtube-comwatchvw7lx0nn3fxq/ Thu, 07 May 2015 01:45:48 +0000 https://auralgo.withknown.com/2015/mastery22-tc1017-watchvw7lx0nn3fxq Continue reading ]]>

22 1017 https://www.youtube.com/watch?v=w7Lx0Nn3fXQ

]]>
https://creativecommons.org/licenses/by/4.0/