answersLogoWhite

0


Best Answer

high temperature is always dangerous

User Avatar

Wiki User

14y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is considered High temp danger in 12 year old girl?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Is 100.4 too high of a temperature for adult?

it would be considered a "low grade" temp.


Is 37.1 consider a fever?

it can depend on your average temp, if you hav a very low average temp then yes this can be considered a fever, if not then you may just have a slightly high temp that may be cured by panadol something.


What is the temp for the danger zone for Taco Bell foods?

For all food the danger zone is 40F-140F


What is considered a high temp?

Well 37.5 is the "norm" so anything over 38 (especially in a child). If it ever hits 40 I'd get to the hospital. You can also have a temp if it drops under the norm too.


The three temperature ranges for refrigeration systems are?

low temp, medium temp, high temp


What is to high a temp?

383


What is considered fever if you take it axillary?

True fever is considered >100.3F. Axillary temps. are not very sensitive and should only be used as a starting point. If temp. seems high axillary most physicians will recommend that the temp. be rechecked rectally (if infant) or orally or tympanic if child/adult.


What is the normal phase of zinc?

it is room temp. if its temp is to high it will melt.


How high is the temp on Uranus?

at the highest temp. it is -205 degrees Celsius.


What is fantage's pet combination?

Hey Everyone! This is shygal123 from Fantage. I'll show you the pet combinations:Pebbles ~ Starter EggWeebo~warm temp+ low lightRumbo~medium temp+ high lightJimbo~medium temp+ medium lightMumbo~cool temp+ low lightTombo~cool temp+ high lightCosmos ~ Sunshine EggRocki~warm temp+ low lightPoofi~warm temp+ medium lightBeami~medium temp+ highest lightCharmi~cool temp+ low lightSparkli~medium temp+ medium lightFairies ~ Orange Star EggCeelo~cool temp+ medium lightMylo~warm temp+ low lightLolo~warm temp+ highest lightHalo~warm temp+ high lightShylo~cool temp+ highest lightDinos ~ Spotted EggTootsie~medium temp+ medium lightBubu~cool temp+ medium lightBello~warm temp+ lowest lightChloe~cool temp+ low lightBella~warm temp+ highest lightFirepuffs ~ Fiery Orange EggFluffie~medium temp+ lowest lightPunkie~medium temp+ highest lightScruffie~cool temp+ high lightAshie~warm temp+ low lightPixie~warm temp+ high lightCuddlies Olive EggElli~cold temp+ lowest lightLeefi~cool temp+ medium lightFeebi~medium temp+ high lightKiki~warm temp+ high lightZumi~warm temp+ lowest lightJellies ~ Cloudy Skies EggRazzle~warm temp+ high lightJigglie~medium temp+ highest lightPeachfuzz~warm temp+ low lightGoober~cold temp+ low lightBloopie~low temp+ medium lightAeropuffs ~ Purple Madness EggMonko~warm temp+ lowest lightNana~cool temp+ lowest lightFlora~medium temp+ medium lightTurnip~cold temp+ high lightSpinner~cool temp+ highest lightBarnacles ~ Red Ribbon EggZuzu~warm temp+ highest lightJombo~hot temp+ low lightKaru~hot temp+ highest lightChibu~cold temp+ highest lightMiku~cool temp+ lowest lightFeathers ~ Secret Lock EggSnowball~cool temp. high lightLovely~cold temp. low lightMinty~medium temp. lowest lightPuffy~hot temp. medium lightRakoon~warm temp. low lightFrosties ~ Frosty EggTwinkle~cool temp+ low lightGilbert~cold temp+ medium lightShivers~warm temp+ medium lightWally~hot temp+ highest lightBeeker~hot temp+ lowest lightRibbons ~ Pointy Ribbon EggPogo~medium temp+ low lightBobo~cold temp+ low lightYoyo~warm temp+ lowest lightRobo~cool temp+ medium lightJojo~hot temp+ low lightHoliday Pets ~ Holiday EggTom Tom~medium temp+ low lightBlizzy~cool temp+ medium lightSpringy~warm temp+ high lightCotton~warm temp+ low lightRosie~warm temp+ medium light


Do you have a fever if your temp is 94.4?

A low grade temp is considered 99.1 and goes up from there.


Find the highest and lowest element from a linked list?

To find the highest and lowest elements in a linked list, iterate the list and detect the highest and lowest elements. Details omitted ... list *head; /* pointer to first element */ list *temp; /* temp pointer list *high = null; /* pointer to high element */ list *low = null; /* pointer to low element */ for (temp=head; temp!=null; temp=temp->next) { /* iterate all elements */ if (temp == head ) { /* initial case */ high = low = temp; /* start accumulating results } else { /* otherwise */ if (higher(temp, high) high = temp; /* choose higher */ if (lower(temp, low) low = temp; /* choose lower */ } }