Python stuff Unit 1 idk
Who invented Python?
Guido van Rossum
What are the parameters of Rect()?
(X, Y, width, height)
How do we call the Star() function?
(centerX, centerY, radius, points)
What are the parameters of the Oval() function?
(centerX, centerY, width, height)
What are the parameters of Circle() function?
(centerX,centerY,Radius)
what is rgb()?
(red, green, blue). Used to declare a color.
Parameters for Label()?
(value, centerX, centerY)
parameters for Line()?
(x1,x2,x2,y2)
How do we call the function Polygon()?
(x1,y1,x2,y2,....)
what is a code segment?
A collection of program statements that is part of a program.
what is a program?
AKA Software, program statements that do something when ran
X value increases as you head ______
Right
who said "We've all taken classes where maybe we zone out for a class period, maybe we zone out for a week, and then we think in the back of our mind: I'll catch up on it next week. Or when it gets to the test ill study a little harder. That mindset does not work with programming!!! It just doesn't."
Sun tzu
Compiling language
When the program checks all the syntax before actually running the code (Takes a long time). The system Java follows
Comments
a form of program documentation written into the program to be read by people and do not affect how a program runs
program documentation
a written description of the function of a code segment, event, procedure, or program and how it was developed.
Program Output
any data sent from a program to device (audio, text, etc)
Iterative
design process where you refine from feedbacks, testing, or reflection
Incremental
development process that breaks problem into smaller piece, test each one, and add it to the whole.
Y value increases as you head _____
down
Syntax error
when rules of programming is not followed
interpretation language
when the program runs the code and only stop when met with a syntax