60 degrees
5.75 degrees.
Obtuse
straight angle
0' or 360'
90
60 degrees
5.75 degrees.
straight angle
Obtuse
0' or 360'
One minute is six degrees. Multiply however many minutes the hands are apart by six.
At 6:30, the hour hand is at 195 degrees, the minute hand is at 180 degrees, the second hand would be at 0 degrees. The hour and minute hands would also be 15 degrees apart.
It is 15 degrees.
At 6.30 minute hand will be at 6 and hour hand will be at center of 6 and 7. Thus angle will be 360/(12*2) = 150
Lets start by thinking of a clock as a circle, with directly up being 0 degrees. At 12:00, both hands are at 0 pointing straight up. Every 60 minutes, the minute hand will make a complete revolution, so at any given time its angle is: minute_deg = minute * 360 / 60 = minute * 6; The hour hand will make a complete revolution every hour, so its formula is: hour_deg = hour * 360 / 12 = hour * 30; A function to find the angle would be: int angleBetweenHands(int hour, int minute) { if(hour > 12) // In case of 24 hour clock hour -= 12; int angle = hour * 30 - minute * 6; if(angle > 180) angle = 360 - angle; return(angle); }
When it is 7:00, the hour hand and minute hand of a 12-hour clock form a 150° angle.