answersLogoWhite

0

Asteroids, meteors, planetesimals (Like Pluto), natural satellites (moons), and dust are part of the Solar system that are not planets.

User Avatar

Wiki User

9y ago

What else can I help you with?

Continue Learning about Natural Sciences

How many planets are int the solar system?

9 planets are in the solar planet.


Which process actually produces the physical products that make up the lowest level system elements int he system hierarchy?

Implementation


Why do some planets not have moons?

There are two planets in our solar system that do not have moons: Mercury and Venus. They are the two planets closest to the sun and they are both terrestrial planets like Earth and Mars. Their proximity to the sun may be part of the answer; the sun's gravity may disrupt the orbits of would-be moons. This could especially be true of Mercury, which is the innermost and least massive of the planets. It is also possible that the planets simply never experienced events that would result in a moon with a stable orbit. Venus has the slowest rotation of all the planets and actually rotates "backwards." This slow retrograde rotation would tend to drag any orbiting moon in through tidal interactions, so it is possible than Venus once had a moon or moons that crashed int the planet long ago. We do not know how many planets outside the solar system have moons.


Name two things that would happen to the stars and planets if gravity did not exist?

idk i need someone smart to answer me in this question i really need help because i need good grades and im not smart with science crap :( help i need someone smart really i do im int the 5th grade and im 10 i freaking want good grades gosh... i really hate science....


What is the prototype of printf function?

in stdio.h:extern int printf (const char *fmt, ...);

Related Questions

How many planets are int the solar system?

9 planets are in the solar planet.


Is mars one of the largest planets?

No. Mars is the second smallest planet int he solar system. Only Mercury is smaller.


What did Kepler and Copernicus not find out?

Why the planets stayed int their orbit.


How is typedef different from int in c language?

They are entirely different things; int is a type, typedef is a way to define types.


What does the perephrial nervous system do?

It is more of a "supplementary" nervous system. It can perform many jobs that keep your body in tune. Veins and nerves are often part of this system.


What does the digestive system do to the food you eat?

Breaks it down int your stomach


What is Variable declaration and variable initialization?

...are important things in programming. Example: extern int variable; /* declaration */ int variable= 8; /* definition with initialization */


30 examples of variables?

int n1; int n2; int n3; int n4; int n5; int n6; int n7; int n8; int n9; int n10; int n11; int n12; int n13; int n14; int n15; int n16; int n17; int n18; int n19; int n20; int n21; int n22; int n23; int n24; int n25; int n26; int n27; int n28; int n29; int n30;


Write a program to calculate highest number using pointer?

#include<iostream> #include<cmath> #include<conio.h> #define SIZE 5 using namespace std; void Ascending(int *, int); void Descending(int *, int); void Highest(int *,int *); void sum(int *,int *); void difference(int *,int *); void Searching(int *,int *,int *); int main() { int A,B=0,C=0,D=0,E,F,b=0; int a[SIZE]; string x; char n,r,e; system("color 17"); cout<<"Enter 5 Numbers: \n"; for(A=1;A<SIZE+1;A++){ cin>>a[A]; } system("cls"); do{ cout<<"\n\t Data Inputed=\t"; for(A=1;A<SIZE+1;A++) cout<<a[A]<<" "; cout<<"\n\n\t A. Ascending "; cout<<"\n\t B. Descending "; cout<<"\n\t C. Highest Value "; cout<<"\n\t D. Sum & Average "; cout<<"\n\t E. Difference of Highest Value "; cout<<"\n\t F. Searching "; cout<<"\n\t G. EXIT "; cout<<"\n\n\t Select a letter from the menu: "; cin>>n; system("cls"); do{ switch(n){ case'a': case'A': Ascending(a,SIZE); cout<<"\n\tData in Ascending Order \n\n"; for(A=1;A<SIZE+1;A++) cout<<"\t"<<a[A]<<" "; cout<<"\n\n\tPlease enter letter [r/R] to return to the menu: "; cin>>r; system("cls"); break; case'b': case'B': Descending(a,SIZE); cout<<"\n\tData in Descending Order \n\n"; for(A=1;A<SIZE+1;A++) cout<<"\t"<<a[A]<<" "; cout<<"\n\n\tPlease enter letter [r/R] to return to the menu: "; cin>>r; system("cls"); break; case'c': case'C': for(A=1;A<6;A++){ Highest(&a[A],&b); } cout<<"\n\tThe Highest Value is: "<<b; cout<<"\n\n\tPlease enter letter [r/R] to return to the menu: "; cin>>r; system("cls"); break; case'd': case'D': void ave(int *D); for(A=1;A<SIZE+1;A++){ sum(&a[A],&D); } cout<<"\n\tThe sum of all number is =\t"<<D; ave(&D); cout<<"\n\n\tAverage of all number is =\t"<<D; cout<<"\n\n\tPlease enter letter [r/R] to return to the menu: "; cin>>r; system("cls"); break; case'e': case'E': void difference(int *a,int *b,int *c); for(A=1;A<SIZE+1;A++){ Highest(&a[A],&B); } cout<<"\n\tThe highest value is: "<<B<<endl; for(A=1;A<SIZE+1;A++){ difference(&a[A],&B,&C); } cout<<"\n\n\tPlease enter letter [r/R] to return to the menu: "; cin>>r; system("cls"); break; case'f': case'F': cout<<"\n\tSelect number to be search? : "; cin>>E; for(A=1;A<=5;A++){ Searching(&a[A],&E,&A); } cout<<"\n\n\tPlease enter letter [r/R] to return to the menu: "; cin>>r; system("cls"); break; case'g': case'G': system ("color 17"); cout<<"\n\tPlease enter key [r/R] to confirm: "; cin>>r; system ("color 16"); system("cls"); break; } } while((r!='r')&&(r!='R')); } while((n!='g')&&(n!='G')); cout<<endl; system("pause"); } void Ascending(int *array, int size) { void swap(int *,int *); int pass,j; for(pass =1; pass<size; pass++) for(j=1;j<size; j++) if(array[j]>array[j+1]) swap(&array[j],&array[j+1]); } void swap(int *Ptr1, int *Ptr2) { int hold= *Ptr1; *Ptr1=*Ptr2; *Ptr2=hold; } void Descending(int *array, int size) { void swap(int *,int *); int pass,j; for(pass =1; pass<size; pass++) for(j=1;j<size; j++) if(array[j]<array[j+1]) swap(&array[j],&array[j+1]); } void swap2(int *Ptr1, int *Ptr2) { int hold= *Ptr1; *Ptr1=*Ptr2; *Ptr2=hold; } void HGH(int *a,int *b) { if(*b<*a) *b=*a; } void sum(int *a,int *b) { *b=*a+*b; } void ave(int *c) { *c=*c/5; } void Highest(int *a,int *b) { if(*b<*a) *b=*a; } void difference(int *a,int *b,int *c) { *c=*b-*a; cout<<"\n\t"<<*b<<" - "<<*a<<" = "<<*c<<" is the difference between the highest value"<<endl; } void Searching(int *a,int *b,int *c){ if(*a==*b) cout<<"\n\tis found in location "<<*c<<"\n"; }


Which process actually produces the physical products that make up the lowest level system elements int he system hierarchy?

Implementation


How do declare function pointer having two integer parameters and returning integer pointers?

// declare a function int* function(int, int); or int* (function)(int, int); // declare a pointer to a function int* (*pointer_to_function)(int, int);


What planet is the biggest and massive of all planets?

Jupiter is the largest and most massive planet in our solar system. It is over 300 times more massive than Earth and is known for its colorful atmospheric bands and swirling storms, including the famous Great Red Spot.