Tag Archives: Mastery

Mastery15

Use of the conditional “if”

15 1014

Mastery11 and 12

Calling and Creating Python functions

11 12 1014

Mastery02

Ability to create Python project in IDE and run inside the IDE

02 1014

Reading and writing of files in C++ #TC1017 #Mastery28

Reading and writing of files in C++ 1017 28

This is one way to do it. There is a library called fstream, which defines three new data types:

 

In this link I learn how to read and write files. 

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

http://www.tutorialspoint.com/cplusplus/cpp_files_streams.htm

 

HERE IS MY LINK 

https://www.dropbox.com/s/44s9q10pf79sc2r/Mastery28.mov?dl=0

Mastery01

Ability to create Python file and run from command line

01 1014

 

Mastery 04

This is the video for the mastery04, quite easy once you understand the page, I had some problems with it at the beginning but asked a friend for help.

Video: http://www.youtube.com/watch?v=eh0VCjJ1Hj8

1014 04

Creation and use of matrixes in C++ #Mastery26 #TC1017

Creation and use of matrixes in C++ 26 1017

Usually this is the way people represented

or in this way 

 

Matrices are used to represent complicated or time-consuming mathematical operations. A single matrix can hold an infinite number of calculations, which can then be applied to a number, vector, or another matrix. There are several operations that can be done on matrices, including addition, multiplication and inverse calculation; some of which will be discussed shortly.

 

Matriz are declaraed in this way 

 

[][]; 

 

For example if we want to declarate the matriz called matr  with a dimension  of   15×4 and you can store character data type we write

matr : matriz [15][4] character

Usefull links 🙂 

http://www.cpp-home.com/archives/185.html

http://dis.unal.edu.co/~programacion/book/modulo3.pdf

#TC1014 #Mastery15 #Mastery16

Mastery14

Creating and using a Python module

A module is a file containing Python definitions and statements. The file name is the module name with the suffix “.py”

Example:

  • Create “hello.py” then write the following function:
def helloworld():
   print "hello"

import hello
hello.helloworld()
>>>'hello'

AWESOME PAGE

14 1014

Mastery28

This is my video for Mastery28

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

28