share
User ExperienceShould I use Yes/No or Ok/Cancel on my message box?
[+346] [14] laurent
[2011-08-12 05:12:55]
[ forms buttons microcopy modal-dialog labels ]
[ https://ux.stackexchange.com/questions/9946/should-i-use-yes-no-or-ok-cancel-on-my-message-box ]

Semantically, the Yes/No buttons are roughly equivalent to the Ok/Cancel buttons, but in general what would you recommend to use? Should I always use Yes/No or always use Ok/Cancel? Or does it depend on the case?

(1) Another one : save/back - Kit Ho
(1) Just as long as you don't abuse modal dialogs - Lavinski
Not directly related, but here's the relevant windows edutainment on the matter youtube.com/watch?v=mKkLjJHwRec - JWL
(2) Never use «Cancel» because of a potential ambiguity on two levels of understanding: ux.stackexchange.com/a/35844/28034 (an answer of mine). - nalply
Are you sure that you want to cancel ? [ OK ] [ Cancel ] - TheMaskedCucumber
[+492] [2011-08-12 10:32:29] Nick [ACCEPTED]

Never use 'Yes' or 'OK' when you could use a verb instead.

And you can almost always use a verb instead of 'Yes' or 'OK'.

I agree with Lukas Mathis' postulation that nobody reads your dialog boxes [1]. Use a verb whenever possible instead of 'Yes' or 'OK' because your buttons will make sense out of context with the explanatory text or title. This is a view that's further reinforced in Microsoft's user interface guidelines [2]:

If you want to make sure that users read specific text related to an action, place it on an interactive control.

Acceptable:

In this example, there's a chance that users won't read the text that explains what they're confirming.

Better:

enter image description here

In this example, you can be sure that at least users understand that they are about to format a disk.

Apple's Human Interface Guidelines [3] expand on this even further, recommending multi-word verbs instead of "OK" or "Yes" buttons, and clearly defining the suggested regions for an alert box:

Apple's human interface guidelines on alert boxes

They advise to only use an alert box in the first place if the action is not undoable. On the subject of button labels, they offer this:

Ensure that the default button name corresponds to the action you describe. In particular, it’s a good idea to avoid using OK for the default button. The meaning of OK can be unclear even in alerts that ask if the user is sure they want to do something. For example, does OK mean “OK, I want to complete the action” or “OK, I now understand the negative results my action would have caused”?

Using a more focused button name, such as Erase, Convert, Clear, or Delete, helps make sure that users understand the action they’re taking.

In short, even if it might seem like the only or most logical options are to offer the user a "Yes" or "No" button (e.g. "Are you sure you wish to log out?"), you can almost always use a verb or phrase instead.

"Do you want to log out?"
[Log Out] -or- [Cancel]

In this way, a user need not read the title or explanatory text to understand how to proceed, and the meaning of clicking either button cannot be misinterpreted.

Also note that, given a choice between 'No' and 'Cancel', 'Cancel' is almost always better for exactly the same reasons as above: the meaning of 'Cancel' is clear even if the user hasn't read the rest of the dialog box. The meaning of 'No' is probably clear, but makes less sense when paired with a verb (e.g. 'Log Out' and 'Cancel' make more sense read alone than 'Log Out' and 'No').

[1] http://ignorethecode.net/blog/2008/10/31/nobody-reads/
[2] https://docs.microsoft.com/en-us/windows/win32/uxguide/ctrl-command-buttons#labels
[3] https://developer.apple.com/library/prerelease/content/documentation/UserExperience/Conceptual/OSXHIGuidelines/WindowDialogs.html#//apple_ref/doc/uid/20000957-CH43-SW1

(13) While the first dialog can look extremely weird, basic Windows dialogs can only choose from a limited number of button texts (ok, cancel, yes, no) and if you do not want to implement your own dialogs you're stuck with those. This is why you can see even weirder things such as "Hit OK to quit or Cancel to debug the application". (With reservation that this is probably fixed in newer versions of Windows) - MatsT
(41) As a side comment - for the formatting dialog, and other important non-undoable actions, I'd put the focus on the "Cancel" button. - krookedking
(6) @MatsT On the other hand, I would suggest it's worth the effort to roll your own dialog box in the name of easier-to-use software. - Phil
All I can say, is be careful with synonyms of cancel. The Ok/Cancel and Yes/No paradigm is often less confusing than some of the dialogs I've used on a few Linux apps.. who apparently agree with your assessment. My conclusion is that 'Yes/No' should be avoided less than 'Ok/Cancel' - user606723
For OK/Cancel you should think about what the question is. These days even Apple reverses the button order when the default answer should be cancel. - Michael Shopsin
I read the section of the article surrounding that post and it makes no mention of why they chose to have no title. Any ideas on that? Personally, I like the idea of a title, but that's just me. - corsiKa
(45) Kind of ironic that Apple's guideline example is ambiguous. Am I securing the empty trash, or am I securely emptying the trash? It should've been "Securely Empty Trash / Cancel" - mskfisher
(1) @mskfisher: it wasn't so bad this time around since the longer help text does explain which clearly, but yes, it certainly could be improved. - Lie Ryan
Phrasing the message to fit within the confines of windows messages works as well: "Are you sure you want to format your hard drive?" will fit grammatically with Yes and No option buttones. - music2myear
(1) @MatsT @Phil I decided to do this a while back, so I created a customizable WPF clone of the native .NET/Windows MessageBox. It's a plug-and-play replacement for the standard MessageBox, but offers methods to add custom strings to the Ok, Ok/Cancel, Yes/No, and Yes/No/Cancel buttons. You can check it out on Github: github.com/evanwon/WPFCustomMessageBox - Evan Wondrasek
@Michael — Apple reversing the button order ? Do you have an example ? - TheMaskedCucumber
Very good answer. - TheMaskedCucumber
@NicolasBarbulesco Erase in Disk Utilities has the button order as Cancel/Erase but sets the default to Cancel instead of Erase. In this dialog hitting return will not complete the action instead of completing it. The user in the Erase dialog will have to deliberately click the Erase button, not just mindlessly go OK. Also Quit in Disk Utilities brings up a Quit/Don't Quit with Don't Quit as the default, the order in other programs is Cancel/Quit with Quit as the default. - Michael Shopsin
@Michael — In your examples, Apple does not reverse the button order. The buttons are in the good order, with the action button being the last one. Regarding the button Cancel being the default button : yes this is unusual, but this is justified for an action bearing a huge risk such as formatting a volume. - TheMaskedCucumber
joelonsoftware.com/2000/04/26/… The earliest observation in print I know of the 'Users don't Read' problem. - PhillipW
1
[+86] [2011-08-12 09:59:02] Roger Attrill

The use of short words like Yes/No on buttons can be confusing if the user misreads the message on the dialogue, especially if the messages are written badly. (So keep messages succinct and unambiguous in the first place)

Having yes/no ok/cancel forces the user to have to read and understand the message before knowing what the options apply to. For users familiar with a product, they would rather scan the buttons themselves rather than read the message.

So the approach I prefer to take is to make the confirmation of the action a bit more verbose than OK (Eg. Save changes, Add user, Update password) so that it's very clear what you are about to do. And then keep the Cancel as is - a short and familiar escape route, especially as it should then be clear that it is the 'Don't do action' option.

Even a simple question such as are you sure you want to log out, (if actually required in the first place) should have the buttons Log out and Cancel rather than Yes/Cancel or Yes/No.

This way, the user can quickly scan the buttons and get the gist of what they need to click even without reading the message.


Edit: Concerning the above comments on @greengit's answer, here's an example from Skype, of what not to do:

enter image description here


(14) I like how the message box's title says "Cancelling" when it is actually about 'rejecting a file'. Microsoft eyesroll. - Michael
(15) In this case I would press the cross on the upper right corner to cancel the action. - Memet Olsen
(3) That reminds me of a dialog I once got on an editor in the German version of OS/2 Warp 3, when exiting with unsaved files. It warned about losing unsaved changes, and then offered two buttons: "Beenden" (Quit) and "Abbrechen" (Cancel). The problem being that both are semantically so close to each other (not being a native English speaker, I'm not sure the same it true of the English words) that, when I first encountered it, I actually worried a bit before clicking "Abbrechen" ... in that specific case, a "Yes"/"No" would actually have been more clear. - celtschk
(10) The Skype dialog really makes knots to the brain. It is a very good example of what not to do. - TheMaskedCucumber
(3) @Memet — To cancel which action ? ;-) They could have made it worse. Some dialogs do not have the close cross. On Mac, this is even usual, most dialogs do not have the close (red) light. - TheMaskedCucumber
2
[+49] [2011-08-12 05:34:59] treecoder

A confirmation dialogue (one that asks a question and involves no input) should have yes/no.

For example:

  • Do you want to cancel your account? yes no

  • Do you want to sign out? yes no

On the other hand, a dialogue that represents an "action" and expects a user input, should have ok/cancel or <action>/cancel.

For example:

  • Set event date and time? ok cancel

  • Add a new contact? add cancel

  • Update your password? update cancel

  • Change your timezone? done cancel


(86) Can you imagine the confusion if you had a cancel button to the question 'do you want to cancel your account'! - Roger Attrill
(28) @Roger Attrill - I wish I had to imagine. - sje397
(9) @greengit Even alerts that ask a yes/no question should use a verb or phrase instead of "Yes". In your first two examples above, it would be better to use "Cancel My Account" and "Sign Out" instead of "Yes". People don't always read dialog boxes, but they almost always read buttons. - Nick
(3) @Roger the site I'm working on has something almost exactly like this. There is a "Sign and Submit" page for submitting changes to ones account, and a button to cancel the changes. If you didn't really want to cancel the changes, you can click "Cancel Cancel Sign and Submit". - RoundTower
@Roger: In that case, you should use a word besides "cancel," such as "delete your account" or "remove your account" or "disable your account" - BlueRaja - Danny Pflughoeft
(1) @RoundTower that is just plain evil. I love it! - JohnL
(2) @Roger Attrill In fact, one of the budget airlines in my area automatically assign you a few paid service, and when I want to cancel those, it shows me a "Do you want to cancel this" with an OK and a cancel. And the cancel one cancels the paid service! - Fitri
(4) @Roger Attrill: I imagine having that dialog in <action>/cancel format: Cancel your account... Cancel Cancel - 3Doubloons
@RogerAttrill That's what I thought the moment I read the answer. :) - Mateen Ulhaq
(1) Using a verb makes the outcome much more clear than Yes/No, OK/Cancel. - Jon Hess
(1) We've come full circle. The question regarding the top comment has been posted here, which linked me to this question. - xdumaine
@treecoder: Good demonstration. :) - hungndv
I disagree with this answer. Yes/no should be avoided whenever possible. Labelled buttons would be much better, in order: 1. | Cancel Account | No | , 2. | Sign out | Cancel | 3. | Set event date | Cancel | - Flimm
3
[+23] [2011-08-12 07:32:04] Jerry Coffin

Some UI guidelines recommend always using Ok/Cancel dialogs rather than Yes/No.

I, however, believe this is a huge mistake. Just for example, I recently saw a dialog with a question like "Do you really want to cancel your account?" and buttons labelled "Ok" and "Cancel". In this case, "Ok" meant "Cancel", and "Cancel" meant "don't cancel".

At least in my opinion, this is pretty close to completely insane. Of course, it would be possible to rephrase the question as something like "Close your account". Even so, some people are likely to think of it as cancelling the account, even if you don't use/suggest that word. Under the circumstances, a button labeled "cancel" is a lousy idea. Some people are inevitably going to think of it as cancelling the action of closing the account, but others as cancelling the account itself.

I will have to admit that the bias against "Yes"/"No" has some merit as well though. In this case, I think it would be better to avoid "stock" labels, and use something like "close the account", and "keep the account open".


(4) Not Ok but rather OK. - Mike L.
"Some UI guidelines recommend always using Ok/Cancel dialogs" -- which guidelines recommend this? - Brandin
(1) @Brandin: The prime example would be Apple's UI guideline (with the caveat that I haven't reread it recently, so it may or may not anymore, but definitely did at one time). - Jerry Coffin
4
[+22] [2011-08-12 10:17:32] Lie Ryan

Ok/Cancel and Yes/No button is only acceptable when you're too lazy to think up of a better label for the action.

An example of a good confirmation dialogs:

  1. This is LibreOffice/OpenOffice when you tried to close an unsaved document:

enter image description here

the button's label should reflect what action that will be done.

Also, never call any actions, such as "unregistering"/"closing" an account, as "canceling" to avoid ambiguity with cancel button. That is, the cancel button is a safe harbor for which the user can click on reflex without anything bad happening, don't make the user fear to click on a "Cancel" button.

Taking greengit's examples, this is what I would suggest for each of them:

Do you want to delete your account -- "Delete account" "Cancel"

Do you want to sign out -- don't even ask this since signing out 
                           is a non-destructive action, if the user 
                           has an unsaved work and signing out could 
                           lead to loss of unsaved work, then you have 
                           two options: ask whether they want to discard 
                           the unsaved work, or automatically save the 
                           work as a draft.

Set event date and time -- "Set time" "Cancel". Although since this is a 
                           non-destructive action, you should probably not 
                           need to ask confirmation and just apply the 
                           action immediately with a "Revert" button.

Add a new contact -- Don't ask for confirmation to "Add", when the user 
                     entered the "Add contact" form and doesn't quit 
                     immediately, they already confirmed that they wanted 
                     to add a contact; automatically save the contact's 
                     information when the user finish entering the 
                     contact's information. Also you might want to have a 
                     "Revert" or "Discard" button.

Update your password -- "Update Password" "Cancel"

Change your timezone -- "Set Timezone" "Cancel". The same with setting 
                        time, if this is non-destructive then don't ask for 
                        confirmation.

5
[+14] [2011-08-12 07:22:07] Rahul

Neither are very good solutions if you're looking to ask your users a question and give them options with which to respond. Yes/No works if you're in a survey, but it's very minimal for a modal dialog. OK/Cancel is like a holdover of the old days when screens had low resolutions and buttons had to be terse in order to fit.

The point is that button labels qualify as microcopy and as such should be given the attention other elements of the user interface are given. What am I agreeing or disagreeing to? What am I OKing or canceling? Why is that information not on the button?

So go back and think about how you could change the label to be clearer. "Delete this row? Yes/No" would be much easier to scan (especially as it's a destructive action) if the buttons just said "Delete this row"/"Don't delete anything". Styling the action you want the user to perform as a bigger call to action and making the cancel button smaller (and perhaps not even a button) can help a lot as well.

Sometimes OK/Cancel introduces two buttons because there's a modal dialog involved. Ask yourself if you neeed a modal dialog or if you could take it out and simplify the experience. For instance, if you have a user's sign out dialog, don't ask them "Would you like to sign out? OK/Cancel" in a modal dialog, but just have a button saying "Sign out" and the user can decide to click on it or not.

Relevant questions that will help you out with your decision:

[1] https://ux.stackexchange.com/questions/1072/ok-cancel-on-left-right
[2] https://ux.stackexchange.com/questions/37/should-the-ok-cancel-buttons-be-aligned-right-or-centered
[3] https://ux.stackexchange.com/questions/1042/is-a-cancel-button-necessary-in-a-web-form

(1) +1 Like the general concept of reduction from "Would you like to sign out? OK/Cancel" to "Sign out" click or not. - Roger Attrill
(3) But isn't "Delete this row"/"Don't delete anything" unnecessary verbose? I would understand to use this kind of wording for something really important ("Delete your account", etc.) or ambiguous like your example. But when there's no ambiguity, a simple ok/cancel or yes/no seems enough. Thanks for the links, I'm going to check that. - laurent
(1) @Laurent: using Yes/No or Ok/Cancel made me think which button belong to which action; don't make me think. - Lie Ryan
(3) I think verbosity on both buttons is unnecessary. Personally I tend to make the Do Action a bit more verbose than OK (Eg. Save changes, Add user, Update password) so that it's clear what you are about to do, and then keep the Cancel as is - a short and familiar escape route, as it should be clear that it is the 'Don't do action' option. [Hmmm - should I make this an answer]. And I mean - what does a button that says Don't delete anything actually DO? - Roger Attrill
(1) @Laurent "Unnecessarily verbose" - define unnecessary. Unnecessary because you think it's too long? Because the goal on buttons like this is complete clarity. Verbosity doesn't factor unless it's making buttons so long they don't work well as buttons anymore. - Rahul
@Rahul, by verbose I meant that the buttons seem to repeat the alert's message. The total text is: "Delete this row?" / "Delete this row" / "Don't delete anything". In that particular case, I think that "Delete this row?" / "Yes" / "No" would be faster to scan and would be clear enough. Also if I click delete on something and there's an alert with Yes/No, no matter the message, I except that Yes = Delete, No = Don't delete. I'm mostly talking about the "delete row" example here, but in the general case I think I agree with you. - laurent
@Rahul - "Complete clarity" is a rather slippery goal, though. Remember users read as few words as possible. If a dialog appears with two buttons each of which has 5 or 6 words, that'll cause a lot more user stress than if the buttons are more simply worded. (Though I think "OK"/"Cancel" is going too far the other way.) - AlexC
6
[+6] [2011-08-19 05:46:26] Kamil Tomšík

In general, I agree with @Nick but there is one other thing worth of mentioning:

Avoid dialogs if you can - dialogs are just annoying most of time - you're asking user if he's sure. I don't know how about you but I really dislike this kind of protesting - computer is here to serve me not other way around!

So - what about delete button? It makes sense to ask before this kind of action, right? Well, it certainly does but there's also much better solution - provide undo functionality

Recycle bin, undo link in tray notifications, "rescue email" sent after cancelling account, multiple versions of the same document, etc. Don't be lazy - invest some time in simplifying your UI, making it more straight. Users deserve ability to operate fast and if they make mistake then you should just provide safety rope - that's it. Don't bother them unless it is totally necessary.

Also, placing delete separated from other buttons and making it little tinier could help to minimize these mistakes. iPhone apps usually do have save/cancel (both of them potentially dangerous) on top of screen - because it's harder to tap there.

EDIT: There is also article on "undos over confirmations" from Aza Raskin [1]

[1] http://www.alistapart.com/articles/neveruseawarning

7
[+5] [2011-08-12 15:06:18] Vishnu Haridas

Most users look for these 3 options.

  • One positive - Yes , OK , Add , Retry , Wait ..etc.

  • One negative - No , Abort , Quit , Exit

and the third one is:

  • "Escape from this Message Box" - Cancel

So, using Yes, NO, and Cancel makes three different types of thoughts.

That means, their usage depends on the case.


"Most users look for only 3 m." What does that mean? Three minutes? Three meters? - Flimm
Updated after 10 years. Thanks for pointing that out! - Vishnu Haridas
8
[+4] [2011-08-12 05:24:32] AProgrammer

It depends on the formulation. I wouldn't want anything other than Yes/No for a question expecting a Yes/No answer. I wouldn't want Yes/No for something which isn't a question (or a question formulated in such a way that yes/no isn't a valid answer).


9
[+1] [2011-08-12 11:11:01] Beachwalker

I would use Yes/No in the Dialog if the workflow needs a descission which way to go on. OK/Cancel should be used in the meaning of "Go on?" with the processing/workflow because normally Cancel implies something is stopped or interrupted if I press cancel. I would not use an OK/Cancel dialog in combination with a question like "Should we stop here?"... this is a Yes/No descission (see workflow and descission). So the right choice always depends on the question, too. Well, it is possible to construct questions that irretates the user... but why should you do this?


10
[+1] [2013-01-07 14:16:27] ivanhoe

I don't have any statistics to prove the following claim, but for me personally having a custom text on buttons is not always better.

Ok/Cancel/Yes/No are so common that our brains are already trained to recognize and act on them in a split of a second, while custom labels require from a user to stop and actively process the information, which can be annoying if used on common actions.

As long as the expected action started by the user and the dialog follow the same logic, simple Yes/No is great. I already know what I'm doing, I just need to confirm it. Any extra explanations are just sort of noise.

One example is Empty Trash action. I want to be prompted each time to avoid accidental clicks, but when I click it on purpose I want to be over with it as fast as possible. Just click - click, I don't want to read the dialog's text, I already expect what it wil ask and I expect to answer Yes or No (or Ok/Cancel), cause that's the usual set of answers.

One good solution to this IMHO is to use the button labels in the form "Yes, do something". This way it's still easy to just scan the text and figura out the meaning, but if you are confused about the dialog you can read everything and be sure what the button does.


You say that our brains are already trained to click on "OK/Cancel/Yes/No" in a split of a second without reading. To me, this just proves that "Save/Don't save" buttons are superior to "OK/Cancel/Yes/No", as users clicking on buttons automatically without reading the question asked is not good. How do users distinguish between different "yes/no" dialogs if they are not reading the question? Users are much more likely to spot that "Save/Don't save" dialog is different from "Delete file/Cancel" dialog, for example. - Flimm
@Filmm As I said, IMHO as long as it's the common action and it has been initiated by me, I don't need to read the message - there's no 10 different possible dialogs, only one (hopefully) and I already know it - I just need to confirm my action (to avoid catching accidental clicks like my cat stepping on the mouse or something). Frankly, it doesn't actually matter what you write there because after 5-6 times ppl will stop reading it anyway, and just click through. - ivanhoe
@Filmm Actually what I like to do this days is to let my toddler who can't read yet try to click her way through the UI. I think that's the closest to the user not paying attention we can get in focus group testing. If a kid who can't read any labels can figure out her way out the dialogs poping up, that means that your visual language is clear, primary buttons match the proper actions. BTW, some famous design systems like material design fail horribly on this test, IME little kids get completely lost on android phones when ad or something pops up. - ivanhoe
11
[+1] [2014-05-03 20:29:34] Fluke

The days of Yes/No and Ok/Cancel button labels are gone. It's time to use action-specific button labels on your dialogue boxes like this article suggests.

Why the 'Ok' Button is No Longer Okay [1]

It will help power users who don't read the dialogue box text from clicking the wrong button. They tend to move fast through the interface so by labeling your buttons with an action-specific word, all they have to do is read the button labels to know which one to click. 'Ok' is vague and doesn't describe what action or task the user is doing.

[1] http://uxmovement.com/buttons/why-the-ok-button-is-no-longer-okay/

12
[+1] [2018-12-05 21:00:13] sonnyb

I agree with most of the other answers that it's almost always better to show specific responses rather than Yes / No buttons.

However, the Microsoft Design Guidelines (dated May 2018) [1] on Dialog boxes mentions some cases where Yes/No may be appropriate:

  1. To make confirmations require thought
  2. To avoid long or awkward phrasing

(I'm not sure if I agree, but I found it interesting that using "Yes/No" was in these examples was an intentional design decision.)


  1. Make confirmations require thought

The section on Confirmations in the Microsoft Design Guidelines [2] argues that using Yes/No can be appropriate in confirmations with significant consequences.

Don't use confirmations just because there is the possibility of users making a mistake. Rather, confirmations are most effective when used to confirm actions that have significant or unintended consequences. [...]

For a confirmation to have value, users need to understand the reason not to proceed. Sometimes the reason is obvious, as when users are closing a document with changes that haven't been saved:

confirmation-obvious

In this example, the reason for the confirmation is obvious.

In other situations, the reason might not be so obvious.

When choosing commit button labels for dialog boxes, the general guidelines is to choose labels that are specific responses to the main instruction. This leads to efficient decision making because users have to read a minimum amount of text to proceed. However, this efficiency goal can be counterproductive for confirmations. Consider this example:

Incorrect:

confirmation-incorrect

In this example, the correct response requires thought.

If you present this confirmation immediately after the user gave the Uninstall command, the user's response is likely to be "Of course I want to uninstall!" The user will click Uninstall without giving it a second thought.

For confirmations, we don't want users making hasty, emotional decisions. To encourage users to think about their response, we need to provide a small decision-making speed bump. When practical, it's usually better to do this by carefully phrasing commit buttons. For example, we can use additional language to indicate that there is a reason not to continue.

Better:

confirmation-better

In this example, "anyway" is added to the commit button label to indicate that the confirmation gives a reason not to continue.

If that approach isn't practical, we can use Yes/No commit buttons.

Also better:

confirmation-also-better

In this example, using Yes/No commit buttons forces users to at least read the main instruction.


  1. To avoid long or awkward phrasing

Consider phrasing the main instruction as a yes or no question if commit buttons with specific phrasing turn out to be long or awkward. Alternatively, you can use command links for longer responses (five words or more) to the main instruction.

Incorrect:

long-phrasing-incorrect

Correct:

avoid-long-phrasing-correct

The specific phrasing in the incorrect example is too long, so the correct example uses Yes and No.

[1] https://docs.microsoft.com/en-us/windows/desktop/uxguide/win-dialog-box
[2] https://docs.microsoft.com/en-us/windows/desktop/uxguide/mess-confirm

13
[0] [2011-08-12 19:04:59] DevC

I prefer to use Verb and cancel, as described by @Nick, it make more sense and user friendly. For Example if you are closing a Window and if you ask user " Would you like to close Window?" There are two type of option you can have "Yes/No" and "Close/Stay".. "Ok/Cancel" make no sense.

So first preference goes to verb then yes/no.


14