In a native app you can access the Cordova/PhoneGap notification api or you can use the standard javascript confirm(“do you like me”)
In the following screenshot I used this snippet from a Run Javascript action attached to a button.
navigator.notification.confirm(
"is it good",
function() {},
'survey',
['yes','not really']);
At this time you can only test/evaluate this snippet in a native ios or android app. The Simulator does not emulate the Cordova notification apis yet.