8 Programming Flashcards
What is the name for the UI of a program language
Integrated Developement Eviroment - IDE
What is the acronym for Python Integrated Developement Enviroment
IDLE
What is the name of the Window in which Python will show a result after running a program
Python Shell
Why do programers use algorithms?
Programers use algorithms to plan the program
Algorythm types adn their advantages and disadvantages
Flowchart - easier to be understood by a non profesional person. Disadvantage you need to use a graphical program
Pseudocode - easier to write pseduocode and easier transform into code. You don’t need a graphic program
What types of functions do you know
Predefined functions
User defined functions
How do you print a blank line in Python
print(“\n”)
What is a sequence
is the order in which the program lines are executed
How do you call a variable that stores a number with decimals?
A real or float number.
Which data type is not supported by python?
Char - it stores one character only.
What type of data inputs the “input” command? Does it need any modifications for calculations if yes how?
Data type is string and needs to be transformed with int() or float() to do calculations.
What is the code in pseudo-code for inputing, assigning a value and for output?
READ
Flowchart boxes for:
- start/end
- input
- Assign or calculate value
- Decision
- start/end: Rounded rectangle
- input: parallelogram
- Assign or calculate value: rectangle
- Rombus
Logical test operator for not equal and equal.(FLOWCHART)
<>
=
If operator for equal and not equal.
==
!=