Intro To Python Flashcards

1
Q

What is an algorithm?

A

A step by step list of instructions that if followed exactly will solve the problem under consideration

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the goal in computer science?

A

Is to take a problem & develop an algorithm that can serve as a general solution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the most important skill for a computer scientist?

A

To be able to solve problems

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

True or false. High-level languages are easier to program in

A

True

They take less time to write

They are shorter and easier to read

They are more likely to be correct

They are portable = can run on all different kinds of computers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Source code is another name for what?

A

The instructions in a program, stored in a file

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

Python is a high-level language, but must be interpreted into machine code called “_______” before it can be executed

A

Binary

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

It is high-level if the program must be “__________” before it can run

It is low-level if the computer can execute it w/out “_________ __________”

A

Processed

Additional processing

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

What is the difference between compilers and interpreters?

A

Compilers:
- take the entire source code & produce object code
Ex. Translating an entire book

Interpreters:
- execute the code line by line
Ex. Translating a line at a time in a book

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

Computing science is the study of “__________”

A

Algorithms

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

What is a programming language?

A

Provide a set of instructions & syntax rules for writing code that can implement algorithms to perform specific tasks or problems

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

What is the role of the python interpreter?

Translation process?

Computer execution?

A

Source code —> python interpreter —> output/results

Translation process:
- transforms code into language the computer understands

Computer execution:
- translated code —> sent to computer for execution

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

What are “code blocks” in python?

A

Sections of code that tell the computer to do something specific

Can include loops, functions, and if statements etc…

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Need “____” to run python code

This is like a “_______” write down what is made & follow instructions step by step

A

IDE (integrated development environment)
**NOTE: in CMPUT 101 we use IDLE (integrated development and learning environment)

Recipe

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

Python code is executed from “_____” to “_______”

A

Top to bottom

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

“Hello world” is what?

A

A string

Can use single or double quotations

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

How do you concatenate (join) strings together in python?

A

Do this by using the “+” operator

Ex. “Hello” +” “ + “World”

17
Q

Who or what typically finds syntax errors?

A

The compiler / interpreter

18
Q

What is a syntax error?

Give an example…

A

Syntax refers to the structure of a program and the rules about that structure

Ex. Forgetting a colon at the end of a statement where one is required

19
Q

What is a runtime error?

A

Called this because the error does not appear until you run the program

Rare in the simple programs seen in the first few chapters

Ex. Attempting to divide by zero

20
Q

What typically finds runtime errors?

A

The interpreter

If an instruction is illegal to perform at that point in the execution

The interpreter will stop with a message describing the exception

21
Q

What is a semantic error?

Give an example

A

If there is one in your program it will run successfully in the sense that there is no error messages

HOWEVER the problem is that your program you wrote is not the program you wanted to write

The program or ‘sementics’ is wrong

Ex. Forgetting to divide by 100 when printing a percentage amount
- will give a wrong answer because the programmer implemented the solution incorrectly

22
Q

Who or what typically finds semantic errors?

A

The programmer

You must fully understand the problem so that you can tell if your program properly solves it

23
Q

What is the difference between programming and debugging?

A

Programming is the process of writing the source code

Debugging is the process of finding and correcting all the errors w/in the program until it is correct

24
Q

Programming languages are “______” languages that have been designed to express computations

25
Q

Why is indentation so important in python?

A

Relies on this to *group statements together”

Code bocks are defined by their level of indentation

Each indentation must be consistent throughout the code block

26
Q

What does the input() function do?

A

Prompts user to input something in the shell

27
Q

What are comments?

A

Lines that are ignored by the computer

Good for explaining and keeping track of different parts of code

28
Q

How do you assign variables in python?

A

With the operator “=“

Ex. course = 101

29
Q

True or false. You can have spaces in variable naming

A

False

Cannot have space, must be one unit

INSTEAD we can use __ (underscores)

Ex. “user_name”

30
Q

True or false. You can’t start a variable name with a number

A

True

You CAN use numbers, just cannot start it with one

Ex. “user_name1” = good

VS

Ex. “1user_name” = bad

31
Q

Strings and numbers CANNOT be directly mixed

What does this mean?

A

Ex.

Num = 5

Numstr = “5”

Num + numstr
Traceback error unsupported operand type for +: ‘isn’t’ and ‘str’

32
Q

The functions (int, float and str) are called “_____” conversion functions

33
Q

What value is printed when the following statement executes?

print( int(53.785) )

A

53

NOTE: this does not round to the closest integer

34
Q

What is printed when the following statement executes?

day = “Thursday”
day = 32.5
day = 19
print (day)

A

19

The variable day will contain the last value assigned to it when it is printed

35
Q

True or false. You cannot have an illegal character such as “&” or “+” or “$” when naming variable

A

True

Ex. more$ = 1000000

Incorrect ^^^ CANNOT have the “$” in there

36
Q

What is formatted output in python?

A

Allows you to create a custom string by combining texts and values

Given the variables:

num = 101
name = ‘Mark’

print(‘My number is: {}, and my name is {}’.format(num,name))
print(‘My number is: {one}, and my name is:{two}’.format(one=num,two=name)

37
Q

What are operators?

A

Special tokens that represent computations like addition, multiplication and division

Ex. +, *, /

38
Q

What does the operator “//“ do?

A

Called integer division

It always truncates its result down to the NEXT smallest integer

Ex. print(18 // 4)

Gives the integer 4

NOT the floating point 4.5

39
Q

What is printed when the following statements execute?

n= input(“Please enter your age: “)
# user types in 18
print ( type (n) )

A

<class ‘str’>

Classified and read as a string

NOTE: all input from users is read in as a string