Convert Datetime to (MM/dd/yyyy) Date Format in Apex

Datetime dt = (Datetime)Account.Start_Date__c; 
Date d = dt.format('MM/dd/yyyy');