adjective

37 of 67
Bad / Stupid

preposterous - Contrary to reason or common sense; utterly absurd or ridiculous.

When Sandy's stock broker called and suggested that he sell half his stocks because he felt the market was overvalued, Sandy thought the idea was preposterous - but it turned out that his stock broker was right.

// Auto-focus search input when modal opens var searchModal = document.getElementById('searchModal'); if (searchModal) { searchModal.addEventListener('shown.bs.modal', function () { var inp = searchModal.querySelector('input[name=search]'); if (inp) inp.focus(); }); }