answersLogoWhite

0

The Big Dipper doesn't rotate. The Earth, however, does rotate. The period of rotation is called a day and the Big Dipper will appear to make a full circle every 24 hours.

User Avatar

Wiki User

17y ago

What else can I help you with?

Related Questions

Is there a bigger dippers?

There is a Big Dipper (not dippers)


What is the length of Saturn's rotation on its axis?

The length of Saturn's rotation on its axis is about ten and a half hours.


What is the length of rotation of the earth's moon?

the length of the moon's rotation is 27.3 days (about 1 month)


Jill and her father observed the Big and Little Dippers at the same time each?

Yes, it is possible.


Calculate specific rotation?

by this law specific rotation =degree of rotation /concentration of a substance *length of sample tube


What is the length of the big dipper?

The Big Dipper doesn't rotate. The Earth, however, does rotate. The period of rotation is called a day and the Big Dipper will appear to make a full circle every 24 hours.


What is the process to calculate the specific rotation of a compound?

To calculate the specific rotation of a compound, you need to measure the observed rotation of a solution of the compound in a polarimeter, and then use the formula: specific rotation observed rotation / (concentration x path length). The observed rotation is the angle of rotation measured in degrees, the concentration is the concentration of the compound in the solution in g/mL, and the path length is the length of the polarimeter tube in decimeters.


Moon in rotation?

the length of the moon's rotation is 27.3 days (about 1 month)


What controls the length of a day?

The length of a day is primarily controlled by the rotation of the Earth on its axis. The Earth takes approximately 24 hours to complete one full rotation, which determines the length of a day. Variations in the Earth's rotation speed can result in minor changes in the length of a day.


How do you calculate the specific rotation of a compound?

The specific rotation of a compound is calculated using the formula: Specific Rotation Observed Rotation / (Concentration x Path Length) Where: Observed Rotation is the angle of rotation measured in degrees Concentration is the concentration of the compound in grams per milliliter Path Length is the length of the tube or cell through which the light passes in decimeters By plugging in these values into the formula, you can calculate the specific rotation of a compound.


How many calories in 2 chicken dippers?

210 calories for 5 dippers, therefore 42 calories per dipper and 84 for two dippers


Write a program that give all the rotations of a string?

#include<stdio.h> #include<string.h> int main() { char a[80]; int rotated_element_number[80]; int rotation; int i; int length; printf("enter the word: \n"); gets(a); length = strlen(a); printf("the reversed string is:\n"); for( rotation=0; rotation<length; rotation++) { for( i=0; i<length; i++) { rotated_element_number[i] = i + rotation; while(rotated_element_number[i] > (length-1)) rotated_element_number[i] -= length; printf("%c", a[rotated_element_number[i]]); } printf("\t"); } getchar(); return 0; }