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/feed-rss2.php on line 8
‘#TC101’ Articles at TC101 Fall 2015 https://kenscourses.com/tc101fall2015 Introduction to Programming Python and C++ Thu, 26 Nov 2015 06:00:09 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ WSQ16: Cars https://kenscourses.com/tc101fall2015/2015/wsq16-cars-9/ Thu, 26 Nov 2015 06:00:09 +0000 http://ivancortes96.wordpress.com/?p=176 ]]> The last WSQ for me, this Wsq was relly hard, i needed to investigate a lot and ask many of my friends for help.  I also cheecked son other post to understand what to do

 

https://github.com/cortesivan96/WSQs/blob/master/Cars%20(WSQ16)

]]>
https://creativecommons.org/licenses/by/4.0/
Proyecto final https://kenscourses.com/tc101fall2015/2015/proyecto-final/ Thu, 26 Nov 2015 05:57:37 +0000 http://estebanpg.wordpress.com/?p=92 https://github.com/kenwbauer/TC101F15_Team13/blob/master/finalProject.cpp

]]>
https://creativecommons.org/licenses/by/4.0/
WSQ15: Final Dash https://kenscourses.com/tc101fall2015/2015/wsq15-final-dash-5/ Thu, 26 Nov 2015 05:49:22 +0000 http://ivancortes96.wordpress.com/?p=167 Seguir leyendo WSQ15: Final Dash ]]> The course is already done!!!!

I have 23 Masteries done and i wish i could sumit more.

it was a relly bad idea to leave everything for the last minute.

yesterday i did 23 Masteries without stopping (I didnt sleep at all)

but i did it, i already have all my masteries done (23 Masteries) and there is only one more WSQ to do.

but i still need to practice a lot to be prepared for the exam.

]]>
https://creativecommons.org/licenses/by/4.0/
WSQ14: Estimating e https://kenscourses.com/tc101fall2015/2015/wsq14-estimating-e-11/ Thu, 26 Nov 2015 05:42:40 +0000 http://ivancortes96.wordpress.com/?p=160 This was an easy WSQ, Thanks to the help of my buddy Rene

Here is my code:

https://github.com/cortesivan96/WSQs/blob/master/Number%20E%20(WSQ14)

 

 

]]>
https://creativecommons.org/licenses/by/4.0/
#WSQ17 https://kenscourses.com/tc101fall2015/2015/wsq17-11/ Thu, 26 Nov 2015 05:28:17 +0000 http://manuelgodm.wordpress.com/?p=169 ]]> Scilab…LastONE

When I read this is q I was excited because I love to play games, but when i download the “game” I knew that Scilab is better than a game.
I think it’s a great program and I think also be very useful in my studies.
I think these tools are very helpful to students. Technology moves quickly and I am happy because technology helps to make the life of people easier.
This kind of software is awesome and I would like say thanks ken for share with us SciLab, I am sure that this program will be helpful in the near future.
I found many interesting things here a simulation of a wheel with erratic steering

scilab It’s awesome!!!

]]>
https://creativecommons.org/licenses/by/4.0/
Nesting of conditional IF statements. https://kenscourses.com/tc101fall2015/2015/nesting-of-conditional-if-statements/ Thu, 26 Nov 2015 05:19:35 +0000 http://myfreakingcrazythoughts.wordpress.com/?p=418 Continue Reading →]]> In C++ the braces of and if or an else clause can contain another if statement. There are known as nested if statements.

In simple terms a nested if is when you write an IF inside another IF braces.

This is the basic structure of a nested if.

if( boolean_expression 1)
{
   // Executes when the boolean expression 1 is true
   if(boolean_expression 2)
   {
      // Executes when the boolean expression 2 is true
   }
}

 

And of course we can nest else if in the similar way as you nest the if statement.

This is an example of a program with nested if-else.

#include <iostream>
using namespace std;
 
int main ()
{
   int marks = 55;
   if( marks >= 80) {
      cout << "U are 1st class !!";
   } 
   else {
      if( marks >= 60) {
          cout << "U are 2nd class !!";
      }  
      else {
	if( marks >= 40) {
  	  cout << "U are 3rd class !!";
	}
	else {  
	  cout << "U are fail !!";
        }		  
      }
   }
   return 0;
}

 

And this will be the output:

U are 3rd class !!

 

-The Admin.

]]>
https://creativecommons.org/licenses/by/4.0/
BONUS VIDEO!! https://kenscourses.com/tc101fall2015/2015/bonus-video-7/ Thu, 26 Nov 2015 05:18:47 +0000 http://bsolisale.tumblr.com/post/133976259080 Well, here is the bonus vdeo. I hope you like it.

https://youtu.be/YpacUU2wutY

]]>
https://creativecommons.org/licenses/by/4.0/
This image is similar to an array. It groups things. (I am… https://kenscourses.com/tc101fall2015/2015/this-image-is-similar-to-an-array-it-groups-things-i-am/ Thu, 26 Nov 2015 05:16:49 +0000 http://bsolisale.tumblr.com/post/133976160110

This image is similar to an array. It groups things. (I am tired, sorry). Here is WSQ 10

https://github.com/bsolisale/WSQQ/blob/master/WSQ10

]]>
https://creativecommons.org/licenses/by/4.0/
WSQ 13: Babylonian method https://kenscourses.com/tc101fall2015/2015/wsq-13-babylonian-method-2/ Thu, 26 Nov 2015 05:16:32 +0000 http://ivancortes96.wordpress.com/?p=154 It was easy after knowing how the babylonian method worked:

link to video that explains babylonian method:

link to my code:

https://github.com/cortesivan96/WSQs/blob/master/babylonian%20method%20(WSQ13)

]]>
https://creativecommons.org/licenses/by/4.0/
BONUS POINTS! https://kenscourses.com/tc101fall2015/2015/bonus-points-6/ Thu, 26 Nov 2015 04:53:46 +0000 http://myfreakingcrazythoughts.wordpress.com/?p=404 Continue Reading →]]> Well this is a video of myself talking about my experience in Flip learning and how to be succesful in the subject.

I really had a great time with Ken as my teacher and his way of teaching is incredible! I had never been on a class where I feel like the teacher was actually my friend and he helped us a lot through our way in the course.

I highly recommend a flipped class room and even more if you have the opportunity to be with Ken Bauer, he is one of the best teachers that I ever had.

Thanks Ken!

-The admin, Esaú.

PS: Here is the video.

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