Whenever you create a new slide, it appears below the selected slide.
If you have 2 slides and want one in between the two select the first slide and then select new slide.
Answer:
D
Explanation:
Konrad Zuse was a German civil engineer, inventor and computer pioneer. His greatest achievement was the world's first programmable computer; the functional program-controlled Turing-complete Z3 became operational in May 1941.
Answer:
87 66 55
Explanation:
Array is used o store the multiple values with same data type.
the array show a decimal value .66, i assume this is enter by mistake because option has no decimal value.
The index of the array is start from zero, it means the first element store in the array at position zero.
In the for loop the variable 'i' start from 1 not zero and it goes to i<4 means i=3.
So, it access the element from 2 to 4 because the index is position of element less than 1.
Therefore, 87 66 55 print.
Answer:
There are many factors that cause aggregate demand to shift from AD to AD1. The unemployment rate will fall and inflation will increase.
<u>Explanation:</u>
A Shift in aggregate demand from AD to AD1 means there has been a fall in demand. Various factors that cause demand to decrease are:
- Increase in price of a good itself
- Increase in the price of complimentary goods-This will lead to a fall in demand. Like ink and pen are complementary goods. if the Price of ink increases then demand for pen will decrease.
- A Decrease in the price of substitute goods-Like tea and coffee.
- Expectation regarding future fall in price
So due to the decrease in demand finally the unemployment will increase and with that, the inflation rate will increase making things dearer.
Answer:
data = [0,1,2,3,4]
for i in range(4):
print(data[i])
i+=1
Explanation:
Loops can be utilized in a listing process by looping back to a list with a variable while the loop increases that variable to give a different response from the list.