Introduction My hand notes + Book (continuacion) Flashcards
who was Guido Van Rossum?
A dutch programmer and creator of Python
Python Disadvantages
It’s not very fast (but often better than PERL)
* Relatively inefficient for number crunching
* Can have high memory overhead
Python is CASE SENSITIVE
Compilation Process
The code a programmer creates is called the source code
Written in Python
– Saved as a .py file
– Must have the same name as the class
what is an IDE?
An IDE is an Integrated Development Environment
While not strictly required IDEs ease and facilitate
the creation and management of larger programs.
IDLE is the built-in IDE
What is Programming?
Program
–Sequence of basic operations executed in succession
Anatomy of a Computer
What is a computer and their tasks?
A computer is a machine that can perform certain tasks:
–Stores data
–Interacts with devices
–Executes programs
What is a CPU and what is it made of?
Central Processing Unit (CPU) - Heart of the computer
–Made of a chip (AMD, Intel, etc), millions of transistors
–Executes instructions given by a program
What is the anatomy of a computer and their explain their 3 types
Storage – where data is kept
–3 types – primary, secondary, removable
Anatomy of a computer
Computers communicate through a network
•Peripheral devices allow interaction with humans
–Speakers, screen, printer, scanner
•RAM, Disks, peripherals connected to CPU via the bus
Where is a program stored when it is not currently running?
Hard drive
Which part of the computer carries out arithmetic operations, such as addition and multiplication?
CPU
What is machine code?
The most basic level of instructions
–Everything is represented with numbers (read in binary)
This is the only language the CPU knows
What’s the problem w/ CPU
CPUs perform very primitive operations only Add, subtract, load from memory
–Leads to coding of several hundred lines to perform one simple operation
Each CPU uses a different set of instructions
–Each CPU translates different digits to mean different things
What is ASSEMBLY?
Assembly language code needs to be translated to machine language before the computer processes it.
A slight step up from machine
•Uses words and numbers
–ADD 1001010, 1011010
What is a high level languages?
High-level languages represent a giant leap towards easier programming.
•The syntax of HL languages is similar to English.
•The conversion is done by the compiler
What is a procedural language? And an example
Procedural languages are characterized by sequential sets of linear commands. The focus of such languages is on structure.
Examples: C, COBOL, Fortran, LISP, Perl, HTML, VBScript
What is an objected oriented language? Give an example
Most object-oriented languages are high-level languages.
•The focus of OOP languages is not on structure, but on modeling data.
•Programmers code using “blueprints” of data models called classes.
Example: Examples of OOP languages include C++, Visual Basic.NET and Java.
What’s the difference between Procedural vs. Object-Oriented Programming?
The unit in procedural programming is function, and unit in object-oriented programming is class
•Procedural programming concentrates on creating functions, while object-oriented programming starts from isolating the classes, and then look for the methods inside them.
•Procedural programming separates the data of the program from the operations that manipulate the data, while object-oriented programming focus on both of them
Remember this
Python is case sensitive
Print is not the same as print
•It is NOT free form – the amount of white space is relevant!
What’s is the primary and secondary storage use for?
Primary is for RAM
Secondary hard drive