Answer:
a.$750
Explanation:
LIFO inventory system means LAST IN FIRST OUT, so leté see what happens during september:
- Sep 1 st=> Stock is 20 units at 20$ => 400$
- Sep 4 th => Inventory decreases in the 10 units sold. Final inventory is (20-10) =10 units at 20$= 10*20= 200$
- Sep 10th => inventory increases in 30 units at 25$ => final inventory is 30u*25$/u+10u*20$/u=950$
- Sep 17th =>with the sale of 20 units the inventory decreases, and since we are using a LIFO system, the 20 units sold are the last purchased , so we sold 20 units with a cost of $25. Final inventory: 10units at $20+ 10 units at $25 = 450$
- Sep 30Th with the purchase of 10 additional units at $30, we have a final inventory of 30 units: 10 units at $20+ 10 units at $25 + 10 units at $30= TOTAL FINAL INVENTORY= $200+$250+$300 => $750
Explanation:
The Internet started in the 1960s as a way for government researchers to share information. ... This eventually led to the formation of the ARPANET (Advanced Research Projects Agency Network), the network that ultimately evolved into what we now know as the Internet.
Answer:
#include <iostream>
using namespace std;
int main() {
int age,time;
float price;
cout<<"Enter age:";
cin>>age;
cout<<"Enter time(in 24 hour clock for noon 1200):";
cin>>time;
if(age>13){
if(time<1700){
price=5;
}else{
price=8;
}
}else{
if(time<1700){
price=2;
}else{
price=4;
}
}
cout<<"Price: $"<<price<<endl;
}
Explanation:
Okay, here are the steps to be taken in order to be able to Write a program that determines the price of a movie ticket as given in details in the question above. Therefore, checked the steps below;
==> Input the age and the time.
==> If the age is not greater than 13, input the time(that is <1700) and follow it by imputing the price.
And if the age is greater than 13, you will also need to input the price. Just as below;
#include <iostream>
using namespace std;
int main() {
int age,time;
float price;
cout<<"Enter age:";
cin>>age;
cout<<"Enter time(in 24 hour clock for noon 1200):";
cin>>time;
if(age>13){
if(time<1700){
price=5;
}else{
price=8;
}
}else{
if(time<1700){
price=2;
}else{
price=4;
}
}
cout<<"Price: $"<<price<<endl;
}
Answer:
D. Azure Log Analytics
Explanation:
The Azure service we can use when you have to correlate events from more than 1 sources into a repository which is centralized you have to use Azure Log Analytics.
it is a special surrounding for Azure monitor log data.Each workspace has their own repository and configuration.
Hence we conclude that the answer to this question is option D Azure Log Analytics.