Creational patterns deal with object creation mechanisms. Singleton ensures only one instance exists, Builder constructs complex objects step-by-step, and Factory Method defines an interface for creating objects but lets subclasses decide which class to instantiate. Options A and C are structural patterns, while D are behavioral patterns.