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

Tag Archives: Quiz06

#Quiz06

Quiz time! 1. Write a function called superpower that has two parameters of type long and returns a long which is first parameter raised to the power of the second, which is to say it returns ab So, superpower(3,4) would return 81. long superpower(long a, long b){ } GitHub Code link for answer 1 2. Write a function called … Continue reading #Quiz06

Quiz #6

I had no problem doing this quiz. 1. #include <iostream> #include <math.h> using namespace std; long superpower (long a, long b){ return pow(a,b); } int main (){ long a, b; cout << “Introduce un numero (base)n”; cin >>a; cout << “Introduce otro numero (potencia)n”; cin >> b; cout << “Tu resultado es = ” << […]

#Quiz06

Quiz time! 1. Write a function called superpower that has two parameters of type long and returns a long which is first parameter raised to the power of the second, which is to say it returns ab So, superpower(3,4) would return 81. long superpower(long a, long b){ } GitHub Code link for answer 1 2. Write a function called … Continue reading #Quiz06

#Quiz06 – TC1017 – A01631728

The first time I do the quiz I was so confuse because I didn’t remeber how to do something but after a friend of mine help me then I did undertand. Here you can find my codes: https://github.com/luisduartepalacios/Quiz06

Quiz #6

I had no problem doing this quiz. 1. #include <iostream> #include <math.h> using namespace std; long superpower (long a, long b){ return pow(a,b); } int main (){ long a, b; cout << “Introduce un numero (base)n”; cin >>a; cout << “Introduce otro numero (potencia)n”; cin >> b; cout << “Tu resultado es = ” << […]

#Quiz06

Here are my two Github links to quiz no. 06
Question 1: https://github.com/A01154027/TC101/blob/master/q1.cpp
Question 2: https://github.com/A01154027/TC101/blob/master/q2.cpp

#Quiz06

Here are my two Github links to quiz no. 06
Question 1: https://github.com/A01154027/TC101/blob/master/q1.cpp
Question 2: https://github.com/A01154027/TC101/blob/master/q2.cpp

Quiz #06

Here is my code of the quiz! Now I know how to do it 😀 Question 1: https://github.com/Andreandc/TC1017/blob/master/q1.cpp Question 2: https://github.com/Andreandc/TC1017/blob/master/q2.cpp

#Quiz06

Here are my two Github links to quiz no. 06
Question 1: https://github.com/A01154027/TC101/blob/master/q1.cpp
Question 2: https://github.com/A01154027/TC101/blob/master/q2.cpp

#Quiz06

#Quiz06https://github.com/ricardonewton/TC101/commit/c7ae8fe3482c3c48f8dad25958169b04a2149a7chttps://github.com/ricardonewton/TC101/blob/master/stars

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