|
|
|
|
|
|
|
|
|
|
|
d = c
Text is what type of data?
String
What is this? (item, item, item)
A tuple
A user story follows what pattern?
As a ____, I want to ___, so that ____
Which user interface item is used for inputting text?
TextBox
is “bon” in “Hello, Mr. Trombone!”
True
Integers represent what (be specific)
Whole numbers
raw_input must have what in the ()s?
Nothing, it isn't required
Sprint Back log
Decrementing name by 1
If x is equal to five or if x is greater than 22, set the label1 text to say "hello".
What would the conditional look like?
This data storage type is mutable and has an indexing system.
List (Array)
12 % 3 returns what?
0
When creating software, who should determine the features?
We should work together with the owner to choose features
Evaluate:
(Slide 2)
Label1 is “Basketball”
x = 5, y = 11, the conditional ( if x≠7 or y≠ 11 ) will evaluate to what?
True
How do I set up a dictionary?
variable = {"key":value}
names = [“Bob”, “Joe”, “Carl and Sue”]
what prints from names[3]?
Error, index out of bounds
Why is it important to design incrementally?
So that we can test often and early, avoid giant fail at the end
Why is (get edge) ok in EdgeReached, but not in Button1.click?
(Slide 3)
Edge is a local variable created inside of .EdgeReached method.
Mary's mom has four children. The first child is called April. The second May. The third June. What is the name of the fourth child?
Mary
What does "15"*4 become?
"15151515"
x = “Hello”
print(x[:3]) #prints what?
"Hel"