Answer: y=3x+500 and y=2x+400
Step-by-step explanation:
you are going to get the weekly salary anyways, but the percentage of sales all depends on what you are doing to make sure you are selling things.
It's 100
Because You multiply the sample proportion to 2000
Answer:
Yes
Step-by-step explanation:
A for loop basically relies on repeating the same code for a pre-set number of times. During which you can make any code repeat inside of it, including indexing through a type of list. Many times a for-loop will use the indexes in a list to calculate the number of times that the loop has to repeat. This is usually done in order to search or apply changes in an array of other types of data structures that have countless values stored in it.
Step1: Define an odd integer.
Define the first odd integer as (2n + 1), for n = 0,1,2, ...,
Note that n is an integer that takes values 0,1,2, and so no.
Step 2: Create four consecutive odd integers.
Multiplying n by 2 guarantees that 2n will be zero or an even number.
Therefore (2n + 1) is guaranteed to be an odd number.
By adding 2 to the odd integer (2n+1), the next number (2n+3) will also be an odd integer.
Let the four consecutive odd integers be
2n+1, 2n +3, 2n +5, 2n +7
Step 3: require that the four consecutive integers sum to 160.
Because the sum of the four consecutive odd integers is 160, therefore
2n+1 + 2n+3 + 2n+5 + 2n +7 = 160
8n + 16 = 160
8n = 144
n = 18
Because 2n = 36, the four consecutive odd integers are 37, 39, 41, 43.
Answer: 37,39,41,43