Home
>>    




Submitted assignment and technology questions for 05/14/2014

CS 121B (CS1), Spring 2014

sid q1 categ annot
10751 Can we go over 6b? The wording in the state variables and constructor are confusing to me. pf  
10778 Could you go over the WMR question? pf  

(2 rows)

sid otherqs categ annot
10751 For 6a, creating the setName method, I did:
def setName(self, newName):
self.name = newName
return self.name

Would this code still be correct? You had:
def setName(self, newname):
prev = self.name
self.name = newname
return prev
   

(1 row)