answersLogoWhite

0


Best Answer

Month and year

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does mm yy mean for expirtion date?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What does mm yy mean on a debit card?

When you see this, it's simply asking for the expiration date. mm would be the month and yy would be the year. This date is on the front of your card. :)


What does ddmmccyy mean?

dd = date mm = month cc = century yy = year eg in the above format todays date is 27122010


C coding for converting date format from dd mm yy to mm dd yy?

Don't change your date presentation format using C. Use Control Panel, Regional and Language Options, pick your primary country or customize date as needed.


How do you read 5 number expiration date codes?

It is usually mm/dd/yy


Is there any date such as 11-9-99?

It should be 11 September 1999 as used in most parts of the world (dd-mm-yy) or in American format (why? I ask myself), November 9, 1999 (mm-dd-yy).


The number on call of duty black ops poster?

11.09.10 - the date the game is released? (9th November - American date style [MM/DD/YY]).


Whats the difference between the dd mm yy and mm dd yy format and which is more common?

People from the US tend to use the mm dd yy format, while those from other countries commonly put the day first.


How are dates recorded in various countries?

Most countries use DD/MM/YY or DD/MM/YYYY formats.The US chooses to use MM/DD/YY or MM/DD/YYYY.


How many cars in the US as at 30.5.09?

in the US we use the MM/DD/YY format for the date. there are more cars than drivers


How do you display the date and time of execution using turbo c plus plus?

Please use this Sample Code given below : Source Code: #include<iostream.h> #include<conio.h> #include<dos.h> void main() { clrscr(); struct date d; int dd,mm,yy; getdate(&d); dd=d.da_day; mm=d.da_mon; yy=d.da_year; cout<<"\n\n\n\t\t\tDATE : "<<dd<<"/"<<mm<<"/"<<yy; getch(); } Any queries can checked using the help index in c/c++.


How do you find out the age of a harmonica?

the date is on the side of the harmonica example: mine says: Hohner Inc. made in Shanghai,china produced 09/10 (mm/yy) lot:#H0010802 date


How do you retrieve data in between two dates from sqlserver?

I'm not familiar with MS SQL Server in particular, but all the SQL databases I've worked with are something like this: SELECT * FROM table WHERE date > '2006-12-01' AND date < '2006-12-31'; Double-check the date format - most are set to use a Year-Month-Day format, but some are different. Yes The above query will work.. Select * from <table> where date>='mm\dd\yy' and date<='mm\dd\yy'