Quantitative Aptitude ยท Reasoning

Time and Clocks

562 Questions

Time and clocks problems evaluate quantitative aptitude by testing concepts on clock gains, losses, and relative speeds of hands. Questions also cover global time zones and standard time calculations. These logical reasoning topics frequently appear in SSC and banking exams.

Clock gain or lossTime zonesAngle between handsStandard time calculationPrecise time measurement

Time and Clocks Questions

Multiple choice technology web technology
  1. TIME

  2. NOW

  3. DATE

  4. None of the Above

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The TIME function returns a serial number representing a specific time when given hour, minute, and second arguments. Excel stores times as fractional parts of a day. NOW returns both date and time, DATE only handles dates.

Multiple choice technology
  1. milliseconds

  2. seconds

  3. minutes

  4. Day Time

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The getTimer() function in ActionScript returns the number of milliseconds that have elapsed since the SWF (Shockwave Flash) file started playing. This is commonly used for animation timing, performance measurement, and creating time-based behaviors. The return value is in milliseconds, not seconds or minutes.

Multiple choice technology
  1. 30

  2. 32

  3. 40

  4. 57

Reveal answer Fill a bubble to check yourself
D Correct answer
Explanation

TTL (Time To Live) of 57 in a ping response indicates the network distance. Default TTL is often 64 for Windows systems. A value of 57 means the packet has passed through 7 network hops (64 - 57 = 7) to reach the destination. This is a normal network response.

Multiple choice technology databases
  1. Returns current system date and time.

  2. Returns only current time

  3. Returns only current date.

  4. There is no function like now();

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The NOW() function in SQL returns the current system date and time together. It does not return date or time separately - those would be CURDATE() and CURTIME() respectively. The function exists in all major SQL databases.