Multiple choice technology programming languages 3.) How can I sleep for less than a second? a) sleep(1/10) b) Not possible c) usleep() d) ssleep() Reveal answer Fill a bubble to check yourself C Correct answer Explanation usleep() accepts microseconds, enabling sub-second sleep intervals. Standard sleep() only accepts whole seconds. Options like sleep(1/10) would evaluate to sleep(0) in integer arithmetic.