answersLogoWhite

0

The answer depends on the angle between WHAT and WHAT!

User Avatar

Wiki User

12y ago

What else can I help you with?

Related Questions

What is the measure of the angle formed by a clock when it is 7?

When it is 7:00, the hour hand and minute hand of a 12-hour clock form a 150° angle.


When the hour hand on the clock moves from the 12 to the 6, this is an example of a?

180 degree angle


What is the measure of the acute angle formed by the hands of a 12-hour clock that reads exactly 1 o' clock?

11


Size of an angle between o'clock at 1 o'clock?

The angle between the hour hand and 1 o'clock on a clock is 30 degrees. This is because the hour hand moves 30 degrees for each hour on the clock face, and at 1 o'clock, it points directly to the 1.


What is the difference in the 12 hour clock and the 24 hour clock?

The difference between 12 hour clock and a 24 hour clock is that when you say 1:00am for a 12 hour clock you would say 0100 hours


How many times in a day angle between the minute and hour hands of a clock equal to an angle theta where 0theta180 degree?

44. 22 in each 12 hour cyccle.


What type of angle is formed on a clock when it's 10 minutes after 12?

Assuming the hour hand moves steadily for the entirety of the hour, the angle formed by the hour and minute hand would be 55 degrees.


Is a analog clock is a 12 hour clock or a 24 hour clock?

12 hour clock but could say the time in a 24 hour clock Analogue describes construction, not hours. It can be either.


C program to find the angle between the needles of a clock?

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 clockhour -= 12;int angle = hour * 30 - minute * 6;if(angle > 180)angle = 360 - angle;return(angle);}Read more: C_code_to_find_angle_between_hour_hand_and_minute_hand


What angle is clock when it hits 1 o clock?

When the angle hits 1:00, the angle is 30 degrees. This is figured out by dividing 360 (a circle's measurement in angles) by 12 (the number of hours). Since there is only one hour, there are 360/12=30 degrees.


C code to find angle between hour hand and minute hand?

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); }


What angle is formed by the hand of the clock at 420?

10°, on a standard 12-hour clock. The minute hand is pointing at the 4, but the hour hand has advanced by 1/3 of an hour, which is 1/36 of a full circle, or 10°.