In addition to proposing that planetary orbits are elliptical, what other modification did Kepler make to Copernicus’s model? Planets closer to the Sun move faster. Planets spin in an epicycle while orbiting Earth. Venus has phases due to its orbiting of the Sun. Earth’s rotation causes the rising and setting of the Sun.

Answers

Answer 1

Answer:

A. planets closer to the sun move faster

Explanation:

Think about it the farther the planets are the more time it takes to orbit around the sun

Answer 2

Answer:

Planets closer to the Sun move faster.

Explanation:

edge2021


Related Questions

Write a program that prompts the user to input five decimal numbers. The program should then add the five decimal numbers, convert the sum to the nearest integer, and print the result.Use the static_caststatement with an appropriate equation to convert the sum to an integer. Compile and run your program with the following test data:Case 1: Input: 5.1, 5.1, 5.1, 5.1, 5.1. Expected Output: 26.Case 2: Input: 5.0, 5.0, 5.0, 5.0, 5.0. Expected Output: 25

Answers

Answer:

#include <iostream>

#include <cmath>

using namespace std;

int main()

{

   double num1, num2, num3, num4, num5, sum = 0;

   cout << "Input: ";

   cin >> num1 >> num2 >> num3 >> num4 >> num5;

   

   sum = num1 + num2 + num3 + num4 + num5;

   cout << "Output: " << static_cast<int>(round(sum)) << endl;

   return 0;

}

Explanation:

Include cmath to use the round function

Declare the variables

Get the five numbers from the user

Sum them and assign the result to the sum

Round the sum using the round function, and convert the sum to an integer using static_cast statement

Print the sum

write a program that takes in a positive integer as input, and output a string of 1's and 0's representing the integer in binary. for an integer x; the algothm is as long as x is greater than 0 output x % (remainder is either 0 or 1 . x=x/2 in coral language

Answers

Answer: Provided in the explanation section

Explanation:

The full questions says:

write a program that takes in a positive integer as input, and output a string of 1's and 0's representing the integer in binary. for an integer x; the algothm is as long as x is greater than 0 output x % (remainder is either 0 or 1 . x=x/2 in coral language. Note: The above algorithm outputs the 0's and 1's in reverse order.

Ex: If the input is:

6

the output is:

011

CODE:

#include <stdio.h>

int main() {

   int n;

   scanf("%d", &n);

   while (n > 0) {

       printf("%d", n % 2);

       n /= 2;

   }

   printf("\n");

   return 0;

}

2

#include <stdio.h>

int main() {

   int n;

   scanf("%d", &n);

   while (n > 0) {

       printf("%d", n % 2);

       n /= 2;

   }

   return 0;

}

cheers i hope this helped !!

In a system using the relocatable dynamic partitions scheme, given the following situation (and using decimal form): Job Q is loaded into memory starting at memory location 42K. a. Calculate the exact starting address for Job Q in bytes. b. If the memory block has 3K in fragmentation, calculate the size of the memory block. c. Is the resulting fragmentation internal or external

Answers

Answer:

a) The exact starting address for Job Q is 43008 bytes

b) The size of the memory block is 46080 bytes

c) Resulting fragmentation is external

Explanation:

a) Job Q starting address

   42 k ⇒ 42 × 1024 = 43008.

b) memory block has 3 k in fragmentation ∴ the size of the memory block is calculated as 3 k ⇒ 3 × 1024 = 3072.

The fact that it is a block means that we have end address = 3072 + 43008 = 46080.

c) External Fragmentation: It will come in a system that uses the relocatable dynamic partitions scheme.

Write a script called checkLetter.sh Review Greeting.sh for an example. Use a read statement and ask user to "Enter A, B, or C: "

If user types A, echo "You entered A"
If user types B, echo " You entered B"
If user types C, echo " You entered C"
Use the case structure to test the user’s string.
If user types any letter from lower case ‘a through z’ or upper case ‘D through Z’, echo "You did not enter A, B, or C".

Answers

Answer:

The code is given as below: The input and output is as given for one case.

Explanation:

echo -e "Enter A, B or C : \c" #Printing the line on the screen

read -rN 1 test #read the character in the variable test

echo

case $test in #Setting up the case structure for variable test

[[:lower:]] ) #checking all lower case letters

echo You did not enter A, B or C;;

[D-Z] ) #checking upper case letters from D to Z

echo You did not enter A, B or C;;

A ) #Condition to check A

echo You entered A;;

B ) #Condition to check B

echo You entered B;;

C ) #Condition to check C

echo You entered C;;

esac #Exiting the case structure

Using the chores.csv file fat the very bottom; write an awk script to return the average number of minutes required to complete a chore. Your solution must handle an undefined number of chores. zero points will be given to solutions that use a static number in their calculation.
Format floating point numbers to 2 decimal places.
Example output;
Average: 28.12
chores.csv
Chore Name,Assigned to,estimate,done?
Laundry,Chelsey,45,N
Wash Windows,Sam,60,Y
Mop kitchen,Sam,20,N
Clean cookware,Chelsey,30,N
Unload dishwasher,Chelsey,10,N
Dust living room,Chelsey,20,N
Wash the dog,Sam,40,N

Answers

Answer: Provided in the explanation section

Explanation:

According to the question:

Using the chores.csv file fat the very bottom; write an awk script to return the average number of minutes required to complete a chore. Your solution must handle an undefined number of chores. zero points will be given to solutions that use a static number in their calculation.

Format floating point numbers to 2 decimal places.

Example output;

Average: 28.12

chores.csv

Chore Name,Assigned to,estimate,done?

Laundry,Chelsey,45,N

Wash Windows,Sam,60,Y

Mop kitchen,Sam,20,N

Clean cookware,Chelsey,30,N

Unload dishwasher,Chelsey,10,N

Dust living room,Chelsey,20,N

Wash the dog,Sam,40,N

ANSWER:

BEGIN{

FS=","

}

{

if(NR!=1)

sum += $3

}

END{

avg=sum/NR

printf("Average: %.2f ", avg)

}' ./chores.csv

cheers i hope this helped !!

Other Questions
what major reason do you think for the extinction of the flok song in Nepal write in one sentence Water is flowing into and out of two vats, Vat A and Vat B. The amount of water, in gallons, in Vat A at time t hours is given by a function A(t) and the amount in Vat B is given by B(t). The two vats contain the same amount of water at t=0. You have a formula for the rate of flow for Vat A and the amount in Vat B: Vat A rate of flow: A(t)-3t2+24t-21 Vat B amount: B(t)-2t2+16t+40 (a) Find all times at which the graph of A(t) has a horizontal tangent and determine whether each gives a local maximum or a local minimum of A(t) smaller t= 1 gives a local minimum larger t= 7 l maximum (b) Let D(t)-B(t)-A(t). Determine all times at which D(t) has a horizontal tangent and determine whether each gives a local maximum or a local minimum. (Round your times to two digits after the decimal.) xgives a Select x gives a Select smaller t- larger t= (c) Use the fact trruntain the same amount of water at ta0 to find the formula for A(), the amount in Vat A at time t Enter a number (d) At what time is the water level in Vat A rising most rapidly? t- hours (e) what is the highest water level in Vat A during the interval from t=0 to t=10 hours? gallons (f) What is the highest rate at which water flows into Vat B during the interval from t-0 to t-10 hours? gallons per hour (g) How much water flows into VatA during the interval from t=1 to t-8 hours? gallons How does the #Infinitelnclusion movement build on the goals of Infinite Flow? A. The movement empowers people with disabilities to protest for change. B. The movement works to make activities open to people of all abilities. C. The movement celebrates people of different abilities at parties. D. The movement teaches people how to lead discussions on disabilities. Simon gets some money for his birthday.Simon spends / of his money on a bike.He then gets 20 more from his gran for his birthday.He spends / of what he has left on a new game.He has 57 left.How much does Simon get for his birthday altogether? Which particle has no charge How many federal agencies are responsible for managing land resources in the United States?204610 A volume of 105 mL of H2O is initially at room temperature (22.00 C). A chilled steel rod at 2.00 C is placed in the water. If the final temperature of the system is 21.50 C , what is the mass of the steel bar? Use the following values: specific heat of water = 4.18 J/(gC) specific heat of steel = 0.452 J/(gC) Express your answer to three significant figures and include the appropriate units. Which expressions are equivalent to -3(2w+6)-4 How did Islam influence Europe beginning around the 15th century?A. Invasions by the Islamic Ottoman Empire destroyed the ByzantineEmpire.B. Muslim merchants restored Silk Road routes between Europe andAsia.C. The Catholic and Eastern Orthodox Churches joined together tobattle Islamic influence.D. Islamic ideas influenced Martin Luther to launch the ProtestantReformation Match each action to the corresponding motivationEstella hugs a friend.wants to help others fit inAmit invites a new student to sit withhimwants to be strongerKeshawn hides behind her parentswants to make others feel betterChad lifts weights at the gym.wants to avoid being noticed Suppose for every dollar change in household wealth, consumption expenditures change by $0.05. If real household wealth declines by $45 billion, potential GDP is $120 billion, and the multiplier effect for the second year after an expenditure shock is 1.1, what is the total change in output relative to the potential for the second year? It is better to use cotton fabrics for making specimen because it isa. Dirt resistantb. DurableC. Easy to handled. Beautiful How do you tie a slip knot? Which of the following plant parts does the fruit develop from? 1) stigma 2 ) pistil 3 ) ovary 4)none of the above what is the maximum number of electrons in p&q shell In a weak acid solution, _____.A.) all ions in the acid compound form waterB.) many ions in the acid compound form a baseC.) no ions separate from the acid compoundD.) few ions separate from the acid compound What is the square root of -1?N-1 6z+10=-2pls answer' i willmarke brainlest Which of these go into each civilization? can someone please write an explanation of the following skills and how to preform them in soccer:-passing -dribbling -shooting