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

Tag Archives: quiz

Quiz08

This is my code!

Quiz08

I’m having a lot of troubles with this, specially because i have not time enough. This will be a reminder to myself that i should never let things to the last minute. The code i wrote is this, and i… Continue Reading →

Quiz08

I’m having a lot of troubles with this, specially because i have not time enough. This will be a reminder to myself that i should never let things to the last minute. The code i wrote is this, and i… Continue Reading →

Quiz08, done.

Here is my code for the Quiz08, about the working with the values in a vector. Quiz08, SumSquares: https://github.com/hrglez/TC1017/blob/master/SumSquares That’s all folks, see ya!

Quiz08, done.

Here is my code for the Quiz08, about the working with the values in a vector. Quiz08, SumSquares: https://github.com/hrglez/TC1017/blob/master/SumSquares That’s all folks, see ya!

QUIZ7

P1.- #Jorge Fernando Saldaña Cabal #A01350730 import math def distance(x1,y1,x2,y2): z1=x1-x2 z1=z1**2 z2=y1-y2 z2=z2**2 res=math.sqrt(z1+z2) return(res) def main(): x1=int(input(‘Type x1: ‘)) y1=int(input(‘Type y1: ‘)) x2=int(input(‘Type x2: ‘)) y2=int(input(‘Type y2: ‘)) print(‘The distance between those points is: ‘, distance(x1,y1,x2,y2)) return(0) main()… Continue Reading →

QUIZ7

P1.- #Jorge Fernando Saldaña Cabal #A01350730 import math def distance(x1,y1,x2,y2): z1=x1-x2 z1=z1**2 z2=y1-y2 z2=z2**2 res=math.sqrt(z1+z2) return(res) def main(): x1=int(input(‘Type x1: ‘)) y1=int(input(‘Type y1: ‘)) x2=int(input(‘Type x2: ‘)) y2=int(input(‘Type y2: ‘)) print(‘The distance between those points is: ‘, distance(x1,y1,x2,y2)) return(0) main()… Continue Reading →

Quiz07

This is my code!

Quiz 7

In this pages you can see the programs for quiz 7
https://github.com/dianagdv/TC101/blob/master/Quiz7_1
https://github.com/dianagdv/TC101/blob/master/Quiz7_2

Quiz07, Already finished!

Hi everybody! The following codes are for the Quiz07 of the course: Question 1 (fibonacci): https://github.com/hrglez/TC1017/blob/master/Fibonacci Question 2 (palindrome) : https://github.com/hrglez/TC1017/blob/master/Palindrome Any problems with the codes, let me know. See ya!

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