Concatenation, but you really need to rename your fields as you currently have them as Access RESERVED words and that will only bite you.
Once you've changed it, you can build a field in a query by using:
MyDate: MyMonthField & "/" & MyDayField & "/" & MyYearField
But, you should be storing it all together as you can easily pull parts if you need them.