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
boshe189’s Articles at TC101 Fall 2015, Page 2
Introduction to Programming Python and C++

Author Archives: boshe189

Nesting conditions Mastery 18

For this mastery I will talk about nesting conditions, here I show an example of multiple conditions one inside the other, and also we can see the triangle formed by the if’s and the } that is really common in this cases.   #mastery18

Arrays Mastery 24

An array is a data structure which allows a collective name to be given to a group of elements which all have the same type. An individual element of an array is identified by its own unique index (or subscript). An array can be thought of as a collection of numbered boxes each containing one […]

Mastery 10!

Well… this mastery is about input and output, for this points this  is reaaaalllyyy easy so, I will leave a code with an example: —————– #include <iostream> using namespace std; int x ; float doublemoney (float x) { return x + x ; } int main () { float x; cout <<“Enter the money you […]

WSQ12!

Well, I have like 2 wsq left…… so… I leave here my github code of WSQ12, greatest common divisor. I saw Ana Gloria’s code because i didn’t understand something…..Thank you!!   Code: https://github.com/boshe189/C-Ken-s-class/blob/master/wsq12.cpp    

Babylonian Method…!

Here is the code for the wsq 13 of Babylonian method, I watched first a youtube video to understand the method and the make the code,  I will leave the link of the video, hope it helps someone…and below I leave the github link for the code, also I saw Luis code and it helped […]

WSQ14 !!!

Well this assigment was the same as the question 1 of the quiz 11, so, yes it was hard (on saturday) but for the hw its easy because I’ve done it already haha…. So, its the exactly same code as the quiz, so….here it goes, hope it helps someone! 😀 https://github.com/boshe189/C-Ken-s-class/blob/master/wsq14.cpp #wsq14 #tc1017

WSQ15 :)

Two days of classes left in the semester, obviously, I have A LOT of projects and things to do, but well I have a little agenda or the order of my  things to do…For this course, I need to do 4 wsq’s (a lot) and I need 10 more points of masteries, that is equal […]

Quiz 11

So, here is my quiz 11, the second question was hard because of the file, i didn’t know how to do it, but I think its good now. I leave here both codes. https://github.com/boshe189/C-Ken-s-class/blob/master/quiz11q1.cpp https://github.com/boshe189/C-Ken-s-class/blob/master/quiz11q2.cpp Hope it helps someone! #quiz11  

ECOA (Not ECOAS anymore)

Soooo the semester is almost over, 9 days more of classes + final exams = vacations !!! I thinks this will be the most waited-vacations-ever-in-my-life. So yes, it has been a bit difficult this hole semester, it is completely different than my highschool-life, but I’ve really liked it. So well.. the point of this post […]

Starting our final project!

FINAL PROJECT!!! Whattt?? Well…the semester is aaaalmost over and I’ll be doing the final project with my classmate & friend, Alan Santa Olalla. During the weekend we investigate a little bit about the effects on the images for C++…. it sounds a little bit difficult, but for now we just installed the library ImageMagick. Here […]

What should you work on?

Week #12 and more partial exams for you.

For this week's readings:
C++ (TC1017) should either be looking at support for your project, ImageMagick C++ libraries are a good start.
Python (TC1014) should be finishing chapter 11 (Dictionaries).