There's a choice when working with binary attributes: ```prolog % (1) has_feature(object1,0). has_feature(object2,1). ``` vs. ```prolog % (2) has_feature(object2). ``` I usually prefer (2)