answersLogoWhite

0

In terms of angle measurement, one minute is equal to 1/60th of a degree. Therefore, 5 minutes is equal to 5/60, or 1/12th of a degree. This is often used in navigation and astronomy for precise measurements.

User Avatar

AnswerBot

3mo ago

What else can I help you with?

Related Questions

what angle does the minute hand of the clock from 5 to 8?

Infinit


What angle do the hands make at 5 o'clock?

150°, each 5 minute section of the clock is 30°, the minute hand will be at 12, and the hour hand on 5, 5x30=150.


What does Minute of angle mean?

A minute of angle is one sixtyeth of an angle. If you had a circle and took one degrees out from it. Then you split that into 60 parts. 1 part would be a minute of angle.


How many seconds are in a minute of angle?

Each angle minute is divided into 60 seconds.


What is a Universal bevel protractor?

universal bevel protactor is an angle measuring instrument which measures acute angle ,obtuse angle as well as it is used to layout an angle. its least count is 5 minute.


What size is the reflex angle on the clockface at 5'o clock?

At 5 o'clock, the minute hand points at the 12, while the hour hand points at the 5. Each hour mark on a clock represents 30 degrees (360 degrees divided by 12 hours). The angle between the hour and minute hands is 150 degrees (5 hours × 30 degrees). The reflex angle, which is the angle greater than 180 degrees, is 360 degrees minus 150 degrees, resulting in a reflex angle of 210 degrees.


What is the angular speed of a mint-hand after 5 mint?

Angular speed is angle covered by time taken ... in 60 min the angle covered by minute hand is 360. in 5 min it will be 360/60x 5 it will be 30 degrees or pie/6 time taken is 5 minutes Angular velocity --- pie/6x5 pie/30


What is an astronomical angle called?

minute


How much is 1 minute of angle 700 meters?

1 minute of an angle is 1/60 of a degree. Minutes have no relationship with meters.


What is the angle for 1 minute?

1 minute is equal to one sixtieth (or 1/60) of a degree.


What angle is gained by minute hand over the hour hand in one minute?

5.75 degrees.


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