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
‘Fundamentals of Programming’ Articles at TC101 Fall 2015, Page 3
Introduction to Programming Python and C++

Tag Archives: Fundamentals of Programming

#WSQ14

Estimating e What’s up guys! This one was really easy. I can figured out that the biggest the number, the closer it gets to the ‘e’. Here’s my code: https://github.com/JsphSalazar/WSQ-s/blob/master/WSQ14 I did some research to understand how ‘e’ works: http://www.mathsisfun.com/numbers/e-eulers-number.html http://stackoverflow.com/questions/23442596/calculate-e-in-python

#WSQ13

Babylonian Method Hey guys, this one isn’t really difficult, you just need to understand how babylonian method works and translate that info into code. Here’s my code: https://github.com/JsphSalazar/WSQ-s/blob/master/WSQ13 Also I did some research too, I think this will help you: https://github.com/okomestudio/cs4bum/blob/master/numeric/sqrt_babylonian.py http://stackoverflow.com/questions/4532015/how-to-implement-square-root-and-exponentiation-on-arbitrary-length-numbers

#WSQ12

Hey guys!
This is my code:
https://github.com/JsphSalazar/WSQ-s/blob/master/WSQ12
Thanks to Ken for helped me.
Also I watched this video for more comprehension:

#Mastery10

Hi guys! Today I’m going to explain you briefly how to make a ‘Basic output’ in python which is called print(). Python has something called Built-in Functions, these are default functions that you will need to run a program correctly. print() is used to show the result of a program to the user, for example […]

#WSQ11

Oh no! This one was a struggle that I faced with blood in my hands… Okay not just kiddin’ but honestly this was difficult. At the beginning I didn’t have idea of what I had to do. I search on internet some explanation or samples that could help me to do it. My code: https://github.com/JsphSalazar/WSQ-s/blob/master/WSQ11 […]

#WSQ11

Oh no! This one was a struggle that I faced with blood in my hands… Okay not just kiddin’ but honestly this was difficult. At the beginning I didn’t have idea of what I had to do. I search on internet some explanation or samples that could help me to do it. My code: https://github.com/JsphSalazar/WSQ-s/blob/master/WSQ11 […]

#WSQ10

New chapter, new things to learn. This time “Lists” are here and this chapter it’s not complicated. On thinkPython clearly describes how to use it. My code: https://github.com/JsphSalazar/WSQ-s/blob/master/WSQ10

#WSQ10

New chapter, new things to learn. This time “Lists” are here and this chapter it’s not complicated. On thinkPython clearly describes how to use it. My code: https://github.com/JsphSalazar/WSQ-s/blob/master/WSQ10

#WSQ09

This one was a little complicated because we can’t call math.factorial(n). So the best option was a loop with an accumulator. With ken’s help I was able to complete the task. Here’s the link of my code: https://github.com/JsphSalazar/WSQ-s/blob/master/WSQ09  

#WSQ09

This one was a little complicated because we can’t call math.factorial(n). So the best option was a loop with an accumulator. With ken’s help I was able to complete the task. Here’s the link of my code: https://github.com/JsphSalazar/WSQ-s/blob/master/WSQ09  

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).