Answer:
Hi there!
The correct answer will be: C. Pluto’s orbit crossed over the orbit of another planet.
Explanation:
When determining whether a planet is planet the IAU stated the planet must (a) is in orbit around the Sun, (b) has sufficient mass for its self-gravity to overcome rigid body forces so that it assumes a hydro-static equilibrium (nearly round) shape, and (c) has cleared the neighborhood around its orbit. For poor Pluto's case he did not clear part (c).
Answer:
#include <iostream>
using namespace std;
int main () {
// for loop execution
int semester_fees=8000;
int b=1;
cout<<"there are 5 years or 10 semester fees breakdown is given below"<<endl;
for( int a = 1; a <=5; a++ ) {
semester_fees = semester_fees*1.03;
cout<<"Semester fees for each of semester"<<b++<<"and"<<b++<<"is:$"<<semester_fees<<endl;
}
return 0;
}
Explanation:
code is in c++ language
Fees is incremented yearly and i have considered only two semester per year
Answer:
The function definition to this question can be described as follows:
long oddevenfact(int y) //defining a method oddevenfact
{
//defining conditional statement
if (y>2) //check value is greater then 2
{
return( oddevenfact(y-2) * (long) y); //return value
}
else //else
{
return((long) y); //return its value
}
}
Explanation:
The description of the above method definition can be described as follows:
- In the above method definition a long method "oddevenfact" is declared, which accepts an integer variable "y" as its arguments, and return value as long.
- Inside the method, a conditional statement is used, in if the block, it checks a value, that is value is greater then 2, and inside the block, a recursive function is used, that calculates its factor, and returns its value in long type.
- If the condition is not true, it will go to else block and return in long type value.