Warning: The magic method Slickr_Flickr_Plugin::__wakeup() must have public visibility in /home/kenbauer/public_kenscourses/tc101winter2015/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/tc101winter2015/wp-content/plugins/slickr-flickr/classes/class-plugin.php:152) in /home/kenbauer/public_kenscourses/tc101winter2015/wp-includes/feed-rss2.php on line 8
Luis Vargas’s Articles at Courses by Ken https://kenscourses.com/tc101winter2015 Facilitator of Learning Experiences Thu, 07 May 2015 00:32:40 +0000 en hourly 1 https://creativecommons.org/licenses/by/4.0/ #Mastery22 https://kenscourses.com/tc101winter2015/2015/mastery22-5/ Thu, 07 May 2015 00:32:40 +0000 https://venkonprogram.withknown.com/2015/mastery22 Continue reading ]]>

https://www.youtube.com/watch?v=IcOQKX08hNM

]]>
https://creativecommons.org/licenses/by/4.0/
#Mastery21 https://kenscourses.com/tc101winter2015/2015/mastery21-8/ Thu, 07 May 2015 00:31:32 +0000 https://venkonprogram.withknown.com/2015/mastery21 Continue reading ]]>

https://www.youtube.com/watch?v=IcOQKX08hNM

]]>
https://creativecommons.org/licenses/by/4.0/
#Mastery20 https://kenscourses.com/tc101winter2015/2015/mastery20-14/ Thu, 07 May 2015 00:29:53 +0000 https://venkonprogram.withknown.com/2015/mastery20 Continue reading ]]>

https://www.youtube.com/watch?v=IcOQKX08hNM

]]>
https://creativecommons.org/licenses/by/4.0/
#Mastery19 https://kenscourses.com/tc101winter2015/2015/mastery19-13/ Thu, 07 May 2015 00:29:08 +0000 https://venkonprogram.withknown.com/2015/mastery19 Continue reading ]]>

https://www.youtube.com/watch?v=IcOQKX08hNM

]]>
https://creativecommons.org/licenses/by/4.0/
#WSQ16 https://kenscourses.com/tc101winter2015/2015/wsq16-7/ Wed, 06 May 2015 16:45:17 +0000 https://venkonprogram.withknown.com/2015/wsq16

Cars

Write a program that opens and reads the file 93cars.dat.txt and produces the following data:

  • average gas mileage in city (City MPG)
  • average gas mileage on highway (Highway MPG)
  • average midrange price of the vehicles in the set

https://github.com/VenkonProgram/wsq16/blob/master/cars.py

 

Continue reading ]]>

Cars

Write a program that opens and reads the file 93cars.dat.txt and produces the following data:

  • average gas mileage in city (City MPG)
  • average gas mileage on highway (Highway MPG)
  • average midrange price of the vehicles in the set

https://github.com/VenkonProgram/wsq16/blob/master/cars.py

 

]]>
https://creativecommons.org/licenses/by/4.0/
#WSQ15 https://kenscourses.com/tc101winter2015/2015/wsq15-9/ Wed, 06 May 2015 16:03:53 +0000 https://venkonprogram.withknown.com/2015/wsq15 Continue reading ]]>

Final Dash

I have 32 Points in Masterys and I need 40, so I am going to work in these 8 points that I need, I might do 4 videos or 8 writes I’m thinking through it, also I am going to do the WSQ, I miss 16 and 17.

It was a great semester.

]]>
https://creativecommons.org/licenses/by/4.0/
#WSQ14 https://kenscourses.com/tc101winter2015/2015/wsq14-18/ Wed, 06 May 2015 15:47:56 +0000 https://venkonprogram.withknown.com/2015/wsq14 Continue reading ]]>

Estimating e

In this assignment you will estimate the mathematical constant e. You should create a function called calculuate_e which receives one parameter called precision that should specify the number of decimal points of accuracy.

https://github.com/VenkonProgram/wsq14/blob/master/estimatinge.py

]]>
https://creativecommons.org/licenses/by/4.0/
#QUIZ11 #TC1014 https://kenscourses.com/tc101winter2015/2015/quiz11-tc1014-3/ Wed, 29 Apr 2015 04:27:52 +0000 https://venkonprogram.withknown.com/2015/quiz11-tc1014 Continue reading ]]>

https://github.com/VenkonProgram/quiz11q1

https://github.com/VenkonProgram/quiz11q2

]]>
https://creativecommons.org/licenses/by/4.0/
#QUIZ10 #TC1014 https://kenscourses.com/tc101winter2015/2015/quiz10-tc1014/ Fri, 24 Apr 2015 18:28:44 +0000 https://venkonprogram.withknown.com/2015/quiz10-tc1014 Continue reading ]]>

Question 1:

def findthrees(list):
    sum=0
    for x in range(0,len(list)):
        if(list[x]%3==0):
            sum+=list[x]
    return(sum)

list=[0,4,2,6,9,8,3,12]

print(“The list is: “,list)

print(“The sum of the numbers of the list divisible by three is: “,findthrees(list))

Question 2:

def dotproduct(x,y):
    ab=[]
    for i in range(0,len(x)):
        ab.append(x[i]*y[i])
    return sum(ab)

v1=[2,4,5,6]
v2=[1,2,3,4]

total=dotproduct(v1,v2)

print (“The dot product of this two vector is: “,total)

]]>
https://creativecommons.org/licenses/by/4.0/
#ECOS #TC1014 https://kenscourses.com/tc101winter2015/2015/ecos-tc1014/ Thu, 23 Apr 2015 15:49:20 +0000 https://venkonprogram.withknown.com/2015/ecos-tc1014 Continue reading ]]>

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