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
‘#Mastery6’ Articles at TC101 Fall 2015 https://kenscourses.com/tc101fall2015 Introduction to Programming Python and C++ Thu, 26 Nov 2015 05:21:01 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ Mastery5 & Mastery6 https://kenscourses.com/tc101fall2015/2015/mastery5-mastery6/ Thu, 26 Nov 2015 05:21:01 +0000 http://finntec.wordpress.com/?p=75 Those are the masteries about

 

  • Demonstrate use of Linux sufficient for quizzes/exams
  • Install Linux on their own computer

 

You can find my video here:

]]>
https://creativecommons.org/licenses/by/4.0/
Masteries 6 and 18 https://kenscourses.com/tc101fall2015/2015/masteries-6-and-18/ Thu, 26 Nov 2015 04:22:00 +0000 https://vanessabaeza.withknown.com/2015/masteries-6-and-18

 

Hope it helps!

 

]]>

 

Hope it helps!

 

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery#6 https://kenscourses.com/tc101fall2015/2015/mastery6/ Wed, 25 Nov 2015 20:56:15 +0000 http://fernyalanis.wordpress.com/?p=109

]]>
https://creativecommons.org/licenses/by/4.0/
Mastery 5 and 6 https://kenscourses.com/tc101fall2015/2015/mastery-5-and-6/ Wed, 25 Nov 2015 09:04:12 +0000 http://ivancortes96.wordpress.com/?p=94
  • Demonstrate use of Linux sufficient for quizzes/exams
  • Install Linux on their own computer
  • Here is the link to my code:

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    How to install Ubuntu in Virtual Machine https://kenscourses.com/tc101fall2015/2015/how-to-install-ubuntu-in-virtual-machine/ Wed, 25 Nov 2015 02:08:32 +0000 http://asimplemaniseepythonipresslike.wordpress.com/?p=330 ]]> Hi everyone I’m going to let here my video about how to install Ubuntu in Virtual Machine.

    Some important links:
    Oracle Virtual Machine – https://www.virtualbox.org/wiki/Downloads
    Ubuntu ISO Downlaod – http://www.ubuntu.com/download/desktop

    Here’s the video:

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    Mastery 6 https://kenscourses.com/tc101fall2015/2015/mastery-6-2/ Mon, 23 Nov 2015 14:43:52 +0000 http://hrglez.wordpress.com/?p=307 I did not have the time for make a video about this, but one point for this Mastery would be okay:

    I have successfully installed Linux (Ubuntu) on my own computer:

    Ubuntu

     

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    Installing Linux (UBUNTU) https://kenscourses.com/tc101fall2015/2015/installing-linux-ubuntu/ Thu, 12 Nov 2015 20:36:17 +0000 http://reneorozcotc1017.wordpress.com/?p=115 Continue Reading →]]> Magick ++ is very hard to install in Windows, I’ve tried to installing watching videos, downloading the library but nothing work.

    So I have to go to Plan B, I install Linux in my computer, specifically in my USB.

    Here is a video of how do I do it, it was also mastery 6 for Ken’s Course

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    Basic output (printing) and input (text based) in C++ https://kenscourses.com/tc101fall2015/2015/basic-output-printing-and-input-text-based-in-c-3/ Fri, 18 Sep 2015 22:17:30 +0000 http://myfreakingcrazythoughts.wordpress.com/?p=104 Continue Reading →]]> A computer program can do two main things, ask for information or give the user new information.

    This two concepts are input and output, and it’s what we are going to talk about in this post.

    First, their definition:

    Output:

    Any information that has been processed by and sent out from a computer or similar device is considered output.

    Input:

    Any information or data that is sent to a computer for processing is considered input. Input or user input is most often sent to the computer using an input device such as a keyboard or mouse.

    Input and Output example

    Header Files:

    To do input and output, you will need to load the iostream header file.

    Like this:

    #include <iostream>  // I/O
    
    #include <fstream>   // file I/O
    
    #include <iomanip>   // format manipulation
    
    #include <string>
    

     

    Which means that you’re confirming that your program will have the ability to receive and send information and manipulate it as you tell it to do it.

    Streams:

    There only exist 3 streams, which are:

    Cout (terminal output)

    Cin (Terminal input)

    Cerr (error output) Mosly used for error messages.

    Here are some code examples where you can see Cout and Cin:

    #include <iostream>
    using namespace std;
    
    int main ()
    {
      int v1, v2;
      int sum =0;
    
      cout<< "Please introduce the lower bound of the range:  ";
      cin>> v1;
      cout<< "Please introduce the higher bound of the range:  ";
      cin>> v2;
    
      int number =v1;
      while (number<=v2){
        sum= sum+number;
        number++;
    
      }
      cout<< "The inclusive sum is:  "<<sum<<endl;
      return 0;
    
    
    }
    

    I really hope this post can help to solve your doubts about Input/Output in C++, if you want to know more abot this I will let you the link of a really good page!

    Once again, feel free to ask anything and I will be happy to answer.

    Have a nice day!

    -The Admin.

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    Masteries 5 & 6 https://kenscourses.com/tc101fall2015/2015/masteries-5-6/ Fri, 18 Sep 2015 00:10:11 +0000 http://eduardomacielm.wordpress.com/?p=101 ]]> Hi again! Here’s my video for masteries 5 & 6. I’m sorry for the awful edition and also for the excessive use of the Benny Hill’s Theme. I hope you like the video even with that stuff.

    ]]>
    https://creativecommons.org/licenses/by/4.0/
    Install linux https://kenscourses.com/tc101fall2015/2015/install-linux/ Sun, 13 Sep 2015 17:12:59 +0000 http://progradianagdv.wordpress.com/?p=29 In this video you can see how to install linux in your computer

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